Report generated on 19-Jul-2023 at 09:10:22 by pytest-html v3.2.0
279 tests ran in 64985.27 seconds.
(Un)check the boxes to filter the results.
259 passed, 23 skipped, 18 failed, 0 errors, 2 expected failures, 0 unexpected passes| Result | Test | Duration | Links |
|---|---|---|---|
| No results found. Try to check the filters | |||
| Failed | functional/ifupdown2/test_ifupdown2.py::test_ifupdown2_lacp | 5.23 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> modify_ifupdown_conf = <function _apply_config at 0x7f49adff6cb0> @pytest.mark.usefixtures('cleanup_bridges', 'cleanup_bonds') async def test_ifupdown2_lacp(testbed, modify_ifupdown_conf): """ Test Name: test_ifupdown2_lacp Test Suite: suite_functional_ifupdown2 Test Overview: Test ifupdown2 with Lag devices Test Procedure: 1. Prepare ifupdown2 environment config 2. Prepare ifupdown2 config: Add 2 lags with 3 loopbacks, Add 2 bridges with 1 bond and 1 port connected to Ixia 3. Verify no errors in ifupdown2 config, apply config, compare running ifupdown2 config vs default config 4. Verify lags, bridges created and members_devices present 5. Init interfaces and connect devices 6. Setup bidirectional streams, Transmit streams for a certain duration of time 7. Verify all traffic is forwarded to each host without packet loss 8. Reboot Dut 9. Compare running ifupdown2 config vs default config 10. Verify lags, bridges created and members_devices present 11. Transmit streams for a certain duration of time 12. Verify all traffic is forwarded to each host without packet loss """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 2) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name dent_dev = dent_devices[0] tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] traffic_duration = randint(10, 30) full_config = '' bond1, bond2 = 'bond1', 'bond2' bridge1, bridge2 = 'br1', 'br2' # 1.Prepare ifupdown2 environment config config = {'template_lookuppath': '/etc/network/ifupdown2/templates', 'addon_syntax_check': 1, 'default_interfaces_configfile': INTERFACES_FILE } rc = await modify_ifupdown_conf(dent_dev, config) assert not rc, 'Failed to prepare ifupdown2 enviroment config' # 2.Prepare ifupdown2 config: Add 2 lags with 3 loopbacks, Add 2 bridges with 1 bond and 1 port connected to Ixia full_config += LACP_TEMPLATE.format(bond=bond1, member_ports=' '.join(dent_dev.links_dict[dev_name][0])) full_config += LACP_TEMPLATE.format(bond=bond2, member_ports=' '.join(dent_dev.links_dict[dev_name][1])) full_config += config_bridge_temp(bridge1, [dut_ports[0], bond1]) full_config += config_bridge_temp(bridge2, [dut_ports[1], bond2]) # 3.Verify no errors in ifupdown2 config, apply config, compare running ifupdown2 config vs default config await write_reload_check_ifupdown_config(dent_dev, full_config, config['default_interfaces_configfile']) # 4.Verify lags, bridges created and members_devices present device_members = {bond1: dent_dev.links_dict[dev_name][0], bond2: dent_dev.links_dict[dev_name][1], bridge1: [dut_ports[0], bond1], bridge2: [dut_ports[1], bond2] } > await check_member_devices(dev_name, device_members) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py:405: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ dev_name = 'infra1' device_members = {'bond1': ['swp5', 'swp7', 'swp9'], 'bond2': ['swp6', 'swp8', 'swp10'], 'br1': ['swp33', 'bond1'], 'br2': ['swp34', 'bond2']} status = 'UP' async def check_member_devices(dev_name, device_members, status='UP'): """ Check device and members status Args: dev_name (str): Dut name device_members (dict): Dict with mapping of device and its members to check status (str): Expected status to check """ out = await IpLink.show(input_data=[{dev_name: [{'cmd_options': '-j'}]}], parse_output=True) assert not out[0][dev_name]['rc'], 'Failed to get port info' parsed = out[0][dev_name]['parsed_output'] for dev, members in device_members.items(): out = await IpLink.show(input_data=[{dev_name: [{'device': dev, 'cmd_options': '-j'}]}], parse_output=True) assert not out[0][dev_name]['rc'], 'Failed to get port info' parsed = out[0][dev_name]['parsed_output'] > assert parsed[0]['ifname'] == dev and parsed[0]['operstate'] == status, f'Unexpected status for device {dev}' E AssertionError: Unexpected status for device bond1 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/ifupdown2_utils.py:381: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6378' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_lacp">Starting testcase:test_ifupdown2_lacp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=107, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=108] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=108] Local address: 172.17.0.4, port 50114 INFO asyncssh:logging.py:92 [conn=108] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=108] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=108] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:47:50 UTC 2087 INFO asyncssh:logging.py:92 [conn=108, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=108, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=2] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=108, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=2] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=108, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=108, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=4] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=108, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=108, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=6] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=108, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=108, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:47:50 UTC 2087 INFO asyncssh:logging.py:92 [conn=108, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=9] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=108, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=10] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=108, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto bond1 iface bond1 inet static bond-slaves swp5 swp7 swp9 bond-mode 802.3ad auto bond2 iface bond2 inet static bond-slaves swp6 swp8 swp10 bond-mode 802.3ad auto br1 iface br1 inet static bridge-ports swp33 bond1 auto br2 iface br2 inet static bridge-ports swp34 bond2 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=108, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=12] Command: echo -e ' auto bond1 iface bond1 inet static bond-slaves swp5 swp7 swp9 bond-mode 802.3ad auto bond2 iface bond2 inet static bond-slaves swp6 swp8 swp10 bond-mode 802.3ad auto br1 iface br1 inet static bridge-ports swp33 bond1 auto br2 iface br2 inet static bridge-ports swp34 bond2 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=108, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=13] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=108, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=14] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=108, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=14] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback address 20.20.0.1/32 auto ma1 iface ma1 inet dhcp auto bond1 iface bond1 inet static bond-slaves swp5 swp7 swp9 bond-mode 802.3ad auto bond2 iface bond2 inet static bond-slaves swp6 swp8 swp10 bond-mode 802.3ad auto br1 iface br1 inet static bridge-ports swp33 bond1 auto br2 iface br2 inet static bridge-ports swp34 bond2 INFO asyncssh:logging.py:92 [conn=108, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=15] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=108, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=16] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=108, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=16] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'bond1', 'bond2', 'br1', 'br2'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp10: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp10/input' info: executing /sbin/sysctl net.mpls.conf.swp10.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp8: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp8/input' info: executing /sbin/sysctl net.mpls.conf.swp8.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp6: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp6/input' info: executing /sbin/sysctl net.mpls.conf.swp6.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: bond2: running ops ... info: bond2: set bond-mode 802.3ad info: bond2: netlink: ip link add bond2 type bond with attributes info: swp10: netlink: ip link set dev swp10 master bond2 info: swp10: netlink: ip link set dev swp10 up info: swp8: netlink: ip link set dev swp8 master bond2 info: swp8: netlink: ip link set dev swp8 up info: swp6: netlink: ip link set dev swp6 master bond2 info: swp6: netlink: ip link set dev swp6 up info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/bond2/input' info: executing /sbin/sysctl net.mpls.conf.bond2.input=0 info: executing /bin/ip -force -batch - [link set dev bond2 mtu 1500 ] info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: br2: running ops ... info: br2: netlink: ip link add br2 type bridge info: br2: apply bridge settings info: br2: set bridge-mcsnoop yes info: reading '/sys/class/net/br2/bridge/stp_state' info: br2: netlink: ip link set br2 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/bond2/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp34 master br2 addr flush dev swp34 link set dev bond2 master br2 addr flush dev bond2 ] info: br2: applying bridge port configuration: ['bond2', 'swp34'] info: br2: applying bridge configuration specific to ports info: br2: processing bridge config for port bond2 info: br2: processing bridge config for port swp34 info: bond2: netlink: ip link set dev bond2 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br2: netlink: ip link set dev br2 up info: reading '/proc/sys/net/mpls/conf/br2/input' info: executing /sbin/sysctl net.mpls.conf.br2.input=0 info: reading '/proc/sys/net/ipv4/conf/br2/forwarding' info: reading '/proc/sys/net/ipv6/conf/br2/forwarding' info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp9: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp9/input' info: executing /sbin/sysctl net.mpls.conf.swp9.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp7: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp7/input' info: executing /sbin/sysctl net.mpls.conf.swp7.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp5: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp5/input' info: executing /sbin/sysctl net.mpls.conf.swp5.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: bond1: running ops ... info: bond1: set bond-mode 802.3ad info: bond1: netlink: ip link add bond1 type bond with attributes info: swp9: netlink: ip link set dev swp9 master bond1 info: swp9: netlink: ip link set dev swp9 up info: swp7: netlink: ip link set dev swp7 master bond1 info: swp7: netlink: ip link set dev swp7 up info: swp5: netlink: ip link set dev swp5 master bond1 info: swp5: netlink: ip link set dev swp5 up info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/bond1/input' info: executing /sbin/sysctl net.mpls.conf.bond1.input=0 info: executing /bin/ip -force -batch - [link set dev bond1 mtu 1500 ] info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: br1: running ops ... info: br1: netlink: ip link add br1 type bridge info: br1: apply bridge settings info: br1: set bridge-mcsnoop yes info: reading '/sys/class/net/br1/bridge/stp_state' info: br1: netlink: ip link set br1 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/bond1/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp33 master br1 addr flush dev swp33 link set dev bond1 master br1 addr flush dev bond1 ] info: br1: applying bridge port configuration: ['swp33', 'bond1'] info: br1: applying bridge configuration specific to ports info: br1: processing bridge config for port swp33 info: br1: processing bridge config for port bond1 info: swp33: netlink: ip link set dev swp33 up info: bond1: netlink: ip link set dev bond1 up info: executing /etc/network/if-pre-up.d/hostapd info: br1: netlink: ip link set dev br1 up info: reading '/proc/sys/net/mpls/conf/br1/input' info: executing /sbin/sysctl net.mpls.conf.br1.input=0 info: reading '/proc/sys/net/ipv4/conf/br1/forwarding' info: reading '/proc/sys/net/ipv6/conf/br1/forwarding' info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO asyncssh:logging.py:92 [conn=108, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=17] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=108, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=18] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=108, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=18] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto bond1 iface bond1 inet static [pass] bond-slaves swp5 swp7 swp9 [pass] bond-mode 802.3ad [pass] auto bond2 iface bond2 inet static [pass] bond-slaves swp6 swp8 swp10 [pass] bond-mode 802.3ad [pass] auto br1 iface br1 inet static [pass] bridge-ports swp33 bond1 [pass] auto br2 iface br2 inet static [pass] bridge-ports swp34 bond2 [pass] INFO asyncssh:logging.py:92 [conn=108, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=108, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=108, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"12:a4:36:17:87:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f2:64:98:89:dd:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3b"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3c"},{"ifindex":12,"ifname":"swp7","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3d"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3e"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":59,"ifname":"bond2","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":60,"ifname":"br2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":61,"ifname":"bond1","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","master":"br1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":62,"ifname":"br1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=108, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show bond1 INFO asyncssh:logging.py:92 [conn=108, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=22] Command: ip -j link show bond1 INFO asyncssh:logging.py:92 [conn=108, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":61,"ifname":"bond1","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","master":"br1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_lacp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py INFO asyncssh:logging.py:92 [conn=108, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=23] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=108, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=24] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=108, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=25] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=108, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=26] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=108, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=26] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['bond2', 'br2', 'bond1', 'br1'] info: br2: running ops ... info: br2: netlink: ip link set dev br2 down info: netlink: ip link show info: executing /sbin/brctl show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/bond2/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: br2: netlink: ip link del br2 info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: br1: running ops ... info: br1: netlink: ip link set dev br1 down info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/bond1/disable_ipv6 info: br1: netlink: ip link del br1 info: executing /etc/network/if-post-down.d/hostapd info: swp33: running ops ... info: swp33: netlink: ip link set dev swp33 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: bond2: running ops ... info: bond2: netlink: ip link set dev bond2 down info: executing /etc/network/if-down.d/resolvconf info: bond2: netlink: ip link del bond2 info: executing /etc/network/if-post-down.d/hostapd info: swp10: running ops ... info: swp10: netlink: ip link set dev swp10 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp8: running ops ... info: swp8: netlink: ip link set dev swp8 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp6: running ops ... info: swp6: netlink: ip link set dev swp6 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: bond1: running ops ... info: bond1: netlink: ip link set dev bond1 down info: executing /etc/network/if-down.d/resolvconf info: bond1: netlink: ip link del bond1 info: executing /etc/network/if-post-down.d/hostapd info: swp9: running ops ... info: swp9: netlink: ip link set dev swp9 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp7: running ops ... info: swp7: netlink: ip link set dev swp7 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp5: running ops ... info: swp5: netlink: ip link set dev swp5 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=108, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:47:56 UTC 2087 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=108, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=108, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=30] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=108, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"12:a4:36:17:87:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-rr","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f2:64:98:89:dd:10","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=108, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond0 INFO asyncssh:logging.py:92 [conn=108, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=32] Command: ip link delete bond0 INFO asyncssh:logging.py:92 [conn=108, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:47:56 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=108, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=108, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=108, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=36] Channel closed DEBUG infra1:Logger.py:156 [] | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[2-2] | 198.42 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> igmp_ver = 2, igmp_msg_ver = 2 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 59, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ff0b:8573', 'index': 59, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 59, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 110.78'}, {'index': 59, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ff0b:8573', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 110.78'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[2-2]">Starting testcase:test_igmp_snooping_mixed_ver[2-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6986' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=127] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=127] Local address: 172.17.0.4, port 47674 INFO asyncssh:logging.py:92 [conn=127] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=127] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=127] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:25:35 UTC 2087 INFO asyncssh:logging.py:92 [conn=127, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=127, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=127, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=127, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=127, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=127, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=127, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=127, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=127, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=127, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=10] Command: bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=127, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=127, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=127, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=127, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":59,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 110.78"},{"index":59,"dev":"br0","port":"br0","grp":"ff02::1:ff0b:8573","state":"temp","flags":[],"vid":1,"timer":" 110.78"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[2-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=127, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:28:53 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=127, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=127, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=127, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=127, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=127, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=127, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-3] | 200.00 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> igmp_ver = 3, igmp_msg_ver = 3 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 60, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ffaa:33dd', 'index': 60, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 60, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 109.62'}, {'index': 60, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ffaa:33dd', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 109.62'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-3]">Starting testcase:test_igmp_snooping_mixed_ver[3-3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-7012' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=128] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=128] Local address: 172.17.0.4, port 41024 INFO asyncssh:logging.py:92 [conn=128] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=128] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=128] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:28:54 UTC 2087 INFO asyncssh:logging.py:92 [conn=128, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=128, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=128, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=128, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=128, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=128, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=128, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=128, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=128, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=128, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=10] Command: bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=128, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=128, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=128, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=128, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":60,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 109.62"},{"index":60,"dev":"br0","port":"br0","grp":"ff02::1:ffaa:33dd","state":"temp","flags":[],"vid":1,"timer":" 109.62"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=128, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:32:13 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=128, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=128, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=128, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":60,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=128, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=128, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=128, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[2-1] | 200.96 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> igmp_ver = 2, igmp_msg_ver = 1 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 61, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ffa1:9ce9', 'index': 61, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 61, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 107.06'}, {'index': 61, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ffa1:9ce9', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 107.06'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[2-1]">Starting testcase:test_igmp_snooping_mixed_ver[2-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-7038' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=129] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=129] Local address: 172.17.0.4, port 47120 INFO asyncssh:logging.py:92 [conn=129] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=129] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=129] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:32:14 UTC 2087 INFO asyncssh:logging.py:92 [conn=129, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=129, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=129, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=129, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=129, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=129, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=129, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=129, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=129, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=129, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=10] Command: bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=129, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=129, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=129, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=129, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":61,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 107.06"},{"index":61,"dev":"br0","port":"br0","grp":"ff02::1:ffa1:9ce9","state":"temp","flags":[],"vid":1,"timer":" 107.06"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[2-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=129, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:35:34 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=129, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=129, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=129, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":61,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=129, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=129, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=129, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-1] | 199.22 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> igmp_ver = 3, igmp_msg_ver = 1 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 62, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ffeb:4839', 'index': 62, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 62, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 108.63'}, {'index': 62, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ffeb:4839', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 108.63'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-1]">Starting testcase:test_igmp_snooping_mixed_ver[3-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-7064' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=130] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=130] Local address: 172.17.0.4, port 45168 INFO asyncssh:logging.py:92 [conn=130] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=130] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=130] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:35:35 UTC 2087 INFO asyncssh:logging.py:92 [conn=130, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=130, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=130, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=130, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=130, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=130, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=130, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=130, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=130, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=130, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=10] Command: bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=130, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=130, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=130, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=130, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":62,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 108.63"},{"index":62,"dev":"br0","port":"br0","grp":"ff02::1:ffeb:4839","state":"temp","flags":[],"vid":1,"timer":" 108.63"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=130, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:38:54 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=130, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=130, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=130, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":62,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=130, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=130, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=130, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-2] | 204.33 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> igmp_ver = 3, igmp_msg_ver = 2 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 63, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ffda:853f', 'index': 63, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 63, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 106.31'}, {'index': 63, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ffda:853f', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 106.31'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-2]">Starting testcase:test_igmp_snooping_mixed_ver[3-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-7090' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=131] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=131] Local address: 172.17.0.4, port 55796 INFO asyncssh:logging.py:92 [conn=131] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=131] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=131] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:38:54 UTC 2087 INFO asyncssh:logging.py:92 [conn=131, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=131, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=131, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=131, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=131, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=131, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=131, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=131, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=131, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=131, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=10] Command: bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=131, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=131, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=131, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=131, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":63,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 106.31"},{"index":63,"dev":"br0","port":"br0","grp":"ff02::1:ffda:853f","state":"temp","flags":[],"vid":1,"timer":" 106.31"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=131, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:42:18 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=131, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=131, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=131, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":63,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=131, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=131, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=131, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_diff_source_addrs | 215.08 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> async def test_igmp_snooping_diff_source_addrs(testbed): """ Test Name: test_igmp_snooping_diff_sources Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping with different source addrs Test Procedure: 1. Create a bridge and enable IGMP Snooping v3, Enslave all TG ports to bridge interface and set all interfaces to up state 2. Init interfaces, create 4 multicast streams and 1 general query 3. Generate 3 Membership reports from the clients, 1 with invalid Checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients and router 6. Verify the multicast traffic is flooded to the client #1 and #2 only 7. Statically un-subscribe client #1 from multicast group 227.1.1.1 8. Verify the Mdb entry for client #1 is deleted 9. Verify the traffic is not forwarded to client #1 and still is to client #2 """ bridge = 'br0' mcast_group1 = '226.1.1.1' mcast_group2 = '238.2.2.2' sleep_value = 5 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] mrouter_1 = '80.1.1.5' mrouter_2 = '70.1.1.5' # 1.Create a bridge and enable IGMP Snooping v3, # Enslave all TG ports to bridge interface and set all interfaces to up state await common_bridge_and_igmp_setup(dev_name, bridge, 3, dut_ports) # 2.Init interfaces, create 4 multicast streams and 1 general query dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 20, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2, mcast_group1, mcast_group2])} streams.update({'igmp_query': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[2], 'frameSize': '82', 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(GENERAL_QUERY_IP), 'srcIp': dev_groups[tg_ports[0]][0]['ip'], 'dstIp': GENERAL_QUERY_IP, 'ipproto': 'igmpv3MembershipQuery', 'totalLength': '32', 'igmpType': '11', 'igmpGroupAddr': '0.0.0.0', 'maxResponseCode': '99', 'numberOfSources': '0', 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 }}) # 3.Generate 3 Membership reports from the clients, 1 with invalid checksum streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': 'igmpv3MembershipReport', 'totalLength': '40', 'igmpType': '22', 'igmpGroupAddr': grp_addr, 'igmpRecordType': '5', 'igmpSourceAddr': router, 'numberOfSources': '1', 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac, router) in enumerate(zip(mcast_group_addr, macs[1:], [mrouter_1, mrouter_2, mrouter_2])) }) streams['member_report3']['igmpChecksum'] = '0' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from router port and from clients await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(8) # 5.Verify Mdb entries were created from clients and router mdb_entires, router_entires = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1], exp=4) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:456: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 64, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:fffa:58e7', 'index': 64, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['226.1.1.1', '238.2.2.2'], exp = 4 def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 64, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 91.04'}, {'index': 64, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:fffa:58e7', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 91.04'}] E assert 0 == 4 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_diff_source_addrs">Starting testcase:test_igmp_snooping_diff_source_addrs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-7116' coro=<test_igmp_snooping_diff_source_addrs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:363> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=132] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=132] Local address: 172.17.0.4, port 37742 INFO asyncssh:logging.py:92 [conn=132] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=132] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=132] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:42:18 UTC 2087 INFO asyncssh:logging.py:92 [conn=132, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=132, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=132, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=132, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=132, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=132, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=132, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=132, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=132, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=132, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=132, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=10] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=132, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":64,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 91.04"},{"index":64,"dev":"br0","port":"br0","grp":"ff02::1:fffa:58e7","state":"temp","flags":[],"vid":1,"timer":" 91.04"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_diff_source_addrs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=132, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:45:53 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=132, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=132, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=132, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":64,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=132, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=132, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=132, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=16] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_modified_query | 214.31 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> async def test_igmp_snooping_modified_query(testbed): """ Test Name: test_igmp_querier Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping with modified querier interval Test Procedure: 1. Create a bridge and enable IGMP Snooping, enable querrier and change query interval Enslave all TG ports to bridge interface and config fastleave on 1st rx_port 2. Init interfaces and create 2 multicast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created for clients and router 6. Verify the multicast traffic is flooded to all bridge ports except last client 7. Create and send leave stream from 1st client 8. Verify MDB entry is deleted 9. Verify no traffic is received on the port that left the group """ bridge = 'br0' querrier_interval = 10 sleep_value = 5 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] # 1.Create a bridge and enable IGMP Snooping, enable querrier and change query interval # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, 2, dut_ports, querier_interval=querrier_interval) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 multicast Streams # 3.Create 3 membership report streams, 1 with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(mcast_group), 'srcIp': '0.0.0.0', 'dstIp': mcast_group, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, mcast_group in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': combined[1], 'dstMac': mcast_ip_to_mac(combined[0]), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': combined[0], 'ipproto': 'igmpv2', 'totalLength': '28', 'igmpType': '22', 'igmpGroupAddr': combined[0], 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1, } for idx, combined in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from router port and from clients await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(querrier_interval + 5) # 5.Verify Mdb entries were created for clients and router mdb_entires, router_entires = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:588: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 65, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ff18:9bb3', 'index': 65, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 65, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 204.78'}, {'index': 65, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ff18:9bb3', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 206.45'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_modified_query">Starting testcase:test_igmp_snooping_modified_query from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-7140' coro=<test_igmp_snooping_modified_query() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:513> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=133] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=133] Local address: 172.17.0.4, port 40640 INFO asyncssh:logging.py:92 [conn=133] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=133] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=133] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:45:54 UTC 2087 INFO asyncssh:logging.py:92 [conn=133, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=133, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=133, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=133, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=133, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=133, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=133, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_querier 1 mcast_querier_interval 1000 INFO asyncssh:logging.py:92 [conn=133, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=8] Command: ip link set dev br0 type bridge mcast_querier 1 mcast_querier_interval 1000 INFO asyncssh:logging.py:92 [conn=133, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=133, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=133, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=133, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=12] Command: bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=133, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=133, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=133, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=133, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":65,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 204.78"},{"index":65,"dev":"br0","port":"br0","grp":"ff02::1:ff18:9bb3","state":"temp","flags":[],"vid":1,"timer":" 206.45"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_modified_query from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=133, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:49:27 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=133, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=133, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=133, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":65,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=133, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=133, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=133, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/ipv6/test_ipv6_route.py::test_ipv6_icmp | 123.78 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> async def test_ipv6_icmp(testbed): """ Test Name: test_ipv6_icmp Test Suite: suite_functional_ipv6 Test Overview: Verify ICMPv6 message types Test Procedure: 1. Add IP addresses - Verify IP addresses added, routes created 2. Send ICMP echo request from TG - Verify ICMP echo reply is sent from DUT 3. Send ICMP echo request from TG with DIP of random IP address in same subnet - Verify ICMP 'host unreachable' message is sent 4. Send ICMP echo request from TG with TTL (hop limit) equal to 1 - Verify ICMP 'time exceeded' message is sent 5. Delete IP from DUT, add a different IP address 6. Send ICMP echo request from TG - Verify ICMP message redirect is sent """ num_of_ports = 2 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_of_ports) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_dev = dent_devices[0] dent = dent_dev.host_name tg_ports = tgen_dev.links_dict[dent][0][:num_of_ports] ports = tgen_dev.links_dict[dent][1][:num_of_ports] addr_info = namedtuple('addr_info', ['swp', 'tg', 'swp_ip', 'tg_ip', 'plen']) traffic_duration = 10 timeout = 20 address_map = ( addr_info(ports[0], tg_ports[0], '2001:1111::1', '2001:1111::2', 64), addr_info(ports[1], tg_ports[1], '2001:2222::1', '2001:2222::2', 64), ) out = await IpLink.show(input_data=[{dent: [ {'cmd_options': '-j'} ]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get port info' dut_mac = {link['ifname']: link['address'] for link in out[0][dent]['parsed_output'] if link['ifname'] in ports} # Configure ports up out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port in ports ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 1. Add IP addresses out = await IpAddress.add(input_data=[{dent: [ {'dev': info.swp, 'prefix': f'{info.swp_ip}/{info.plen}'} for info in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': info.tg, 'ip': info.tg_ip, 'gw': info.swp_ip, 'plen': info.plen, 'version': 'ipv6'} for info in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # Verify IP addresses added expected_addrs = [ {'ifname': info.swp, 'should_exist': True, 'addr_info': { 'family': 'inet6', 'local': info.swp_ip, 'prefixlen': info.plen}} for info in address_map ] await verify_dut_addrs(dent, expected_addrs) # Verify routes created expected_routes = [ {'dev': info.swp, 'dst': info.swp_ip[:-1] + f'/{info.plen}', 'should_exist': True, 'flags': ['rt_trap']} for info in address_map ] await verify_dut_routes(dent, expected_routes) # 2. Send ICMP echo request from TG streams = { f'icmpv6 {tg_ports[0]} -> {ports[0]}': { 'type': 'raw', 'protocol': 'ipv6', 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name'], 'srcMac': '02:00:00:00:00:01', 'dstMac': dut_mac[ports[0]], 'srcIp': dev_groups[tg_ports[0]][0]['ip'], 'dstIp': address_map[0].swp_ip, 'ipproto': 'icmpv6', 'icmpType': '128', 'icmpCode': '0', 'rate': 3, # pps }, f'icmpv6 {tg_ports[1]} -> {ports[1]}': { 'type': 'raw', 'protocol': 'ipv6', 'ip_source': dev_groups[tg_ports[1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': '02:00:00:00:00:02', 'dstMac': dut_mac[ports[1]], 'srcIp': dev_groups[tg_ports[1]][0]['ip'], 'dstIp': address_map[1].swp_ip, 'ipproto': 'icmpv6', 'icmpType': '128', 'icmpCode': '0', 'rate': 3, # pps }, } await tgen_utils_setup_streams(tgen_dev, None, streams) tcpdump = [asyncio.create_task(tb_device_tcpdump(dent_dev, info.swp, '-n -c 10 "icmp6 && ip6[40] == 129"', count_only=True, timeout=timeout)) for info in address_map] await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) await tgen_utils_stop_traffic(tgen_dev) # Verify ICMP echo reply is sent from DUT captured = await asyncio.gather(*tcpdump) > assert all(pkts > 0 for pkts in captured), 'Expected DUT to send ICMPv6 reply' E AssertionError: Expected DUT to send ICMPv6 reply E assert False E + where False = all(<generator object test_ipv6_icmp.<locals>.<genexpr> at 0x7f49acd63920>) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py:820: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9484' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_icmp">Starting testcase:test_ipv6_icmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=178] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=178] Local address: 172.17.0.4, port 46720 INFO asyncssh:logging.py:92 [conn=178] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=178] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=178] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:39:57 UTC 2087 INFO asyncssh:logging.py:92 [conn=178, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=178, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=178, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=178, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=178, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=178, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:39:57 UTC 2087 INFO asyncssh:logging.py:92 [conn=178, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=178, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=178, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=178, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=178, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=178, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=178, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=178, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=178, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=178, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=14] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=178, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=178, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=178, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=178, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=178, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=178, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=178, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 10.36.118.199:2:1 -> swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 10.36.118.199:2:2 -> swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 129" on infra1... INFO asyncssh:logging.py:92 [conn=178, chan=19] Requesting new SSH session INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 20 tcpdump -i swp34 -n -c 10 "icmp6 && ip6[40] == 129" on infra1... INFO asyncssh:logging.py:92 [conn=178, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=178, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=20] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=178, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=20] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp34 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=178, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=21] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=178, chan=22] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp34 -n -c 10 "icmp6 && ip6[40] == 129" INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=178, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=21] Channel closed DEBUG infra1:Logger.py:156 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 0 packets captured 0 packets received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=178, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=22] Channel closed DEBUG infra1:Logger.py:156 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp34, link-type EN10MB (Ethernet), capture size 262144 bytes 0 packets captured 0 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_icmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=178, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=178, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=24] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=178, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:42:00 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=178, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=178, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=178, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=178, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=178, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=178, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=178, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=178, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=32] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/stp/test_stp_loopback.py::test_stp_loopback_detection[stp] | 3735.50 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> version = 'stp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_stp_loopback_detection(testbed, version): """ Test Name: STP/RSTP loopback detection Test Suite: suite_functional_stp Test Overview: Test stp/rstp loopback detection Test Procedure: 1. Create bridge and set link up on them 2. Enslave ports ot bridge 4. Set link up on all participant ports, bridges 5. Wait until topology converges 6. Send broadcast traffic 7. Verify device remain stable afterwards (during storming). Verify there is a storming 8. Set bridge stp_state to 1 9. Verify that afterwards all ports with the lowest number within a loopback connection are blocked. 10. Verify that the rate on tgen ports is 0 (storming has stopped) """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] dut_ixia_ports = tgen_dev.links_dict[dent][1] bridge = 'bridge_1' wait_time = 40 if version == 'stp' else 20 loopback_ports = {} for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]): loopback_ports[f'loopback_{idx+1}'] = port # 1. Create bridge entity out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'stp_state': 0}]}]) # stp not enabled assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2. Enslave ports according to the test's setup topology out = await IpLink.set(input_data=[ {dent: [{'device': port, 'operstate': 'down'} for port in dut_ixia_ports] + [{'device': port, 'operstate': 'down'} for port in loopback_ports.values()] + [{'device': bridge, 'operstate': 'down'}] }]) assert out[0][dent]['rc'] == 0, 'Failed changing state of the interfaces to down' out = await IpLink.set(input_data=[ {dent: [{'device': port, 'master': bridge} for port in dut_ixia_ports] + [{'device': port, 'master': bridge} for port in loopback_ports.values()] }]) assert out[0][dent]['rc'] == 0, 'Failed to enslave ports' # 4. Set link up on all participant ports, bridges out = await IpLink.set(input_data=[ {dent: [{'device': port, 'operstate': 'up'} for port in dut_ixia_ports] + [{'device': port, 'operstate': 'up'} for port in loopback_ports.values()] + [{'device': bridge, 'operstate': 'up'}] }]) assert out[0][dent]['rc'] == 0, 'Failed changing state of the interfaces' # 5. Wait until topology converges await asyncio.sleep(wait_time) # 6. Send broadcast traffic dev_groups = tgen_utils_dev_groups_from_config(( {'ixp': tg_ports[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24}, )) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ixia_ports, dev_groups) tx_ports = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = { f'{rx_ports} -> Broadcast': { 'type': 'raw', 'ip_source': tx_ports, 'ip_destination': rx_ports, 'srcMac': 'aa:bb:cc:dd:ee:ff', 'dstMac': 'ff:ff:ff:ff:ff:ff', 'frame_rate_type': 'line_rate', 'rate': 5 } } > await tgen_utils_setup_streams(tgen_dev, None, streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_loopback.py:108: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {"['10.36.118.199:2:2_1.1.1.3/24', '10.36.118.199:2:3_1.1.1.4/24', '10.36.118.199:2:4_1.1.1.5/24'] -> Broadcast": {'ds...4', '10.36.118.199:2:3_1.1.1.4/24', '10.36.118.199:2:4_1.1.1.5/24'], 'ip_source': '10.36.118.199:2:1_1.1.1.2/24', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0, out[0][device.host_name]['result'] E AssertionError: Following error(s) occurred: Remote call exceeds timeout: 3600000 ms /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:427: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14422' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_loopback_detection[stp]">Starting testcase:test_stp_loopback_detection[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_loopback.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=254, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=255] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=255] Local address: 172.17.0.4, port 42532 INFO asyncssh:logging.py:92 [conn=255] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=255] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=255] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 00:00:03 UTC 2087 INFO asyncssh:logging.py:92 [conn=255, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=255, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=255, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=255, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=255, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=255, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 00:00:03 UTC 2087 INFO asyncssh:logging.py:92 [conn=255, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=255, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=8] Command: ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=255, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev bridge_1 down INFO asyncssh:logging.py:92 [conn=255, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=10] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev bridge_1 down INFO asyncssh:logging.py:92 [conn=255, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_1 && ip link set dev swp35 master bridge_1 && ip link set dev swp36 master bridge_1 && ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 && ip link set dev swp9 master bridge_1 && ip link set dev swp6 master bridge_1 && ip link set dev swp8 master bridge_1 && ip link set dev swp10 master bridge_1 INFO asyncssh:logging.py:92 [conn=255, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=12] Command: ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_1 && ip link set dev swp35 master bridge_1 && ip link set dev swp36 master bridge_1 && ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 && ip link set dev swp9 master bridge_1 && ip link set dev swp6 master bridge_1 && ip link set dev swp8 master bridge_1 && ip link set dev swp10 master bridge_1 INFO asyncssh:logging.py:92 [conn=255, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=255, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=14] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=255, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ['10.36.118.199:2:2_1.1.1.3/24', '10.36.118.199:2:3_1.1.1.4/24', '10.36.118.199:2:4_1.1.1.5/24'] -> Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' Following error(s) occurred: Remote call exceeds timeout: 3600000 ms\n\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_loopback_detection[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_loopback.py INFO asyncssh:logging.py:92 [conn=255, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=15] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=255, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=16] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=255, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=18] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:02:18 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=255, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=255, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=255, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":153,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=255, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=255, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=22] Command: ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=255, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=255, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=24] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:02:19 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' Following error(s) occurred: Remote call exceeds timeout: 3600000 ms\n\n'}}] | |||
| Failed | functional/stp/test_stp_loopback.py::test_stp_loopback_detection[rstp] | 646.45 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> version = 'rstp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_stp_loopback_detection(testbed, version): """ Test Name: STP/RSTP loopback detection Test Suite: suite_functional_stp Test Overview: Test stp/rstp loopback detection Test Procedure: 1. Create bridge and set link up on them 2. Enslave ports ot bridge 4. Set link up on all participant ports, bridges 5. Wait until topology converges 6. Send broadcast traffic 7. Verify device remain stable afterwards (during storming). Verify there is a storming 8. Set bridge stp_state to 1 9. Verify that afterwards all ports with the lowest number within a loopback connection are blocked. 10. Verify that the rate on tgen ports is 0 (storming has stopped) """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] dut_ixia_ports = tgen_dev.links_dict[dent][1] bridge = 'bridge_1' wait_time = 40 if version == 'stp' else 20 loopback_ports = {} for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]): loopback_ports[f'loopback_{idx+1}'] = port # 1. Create bridge entity out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'stp_state': 0}]}]) # stp not enabled assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2. Enslave ports according to the test's setup topology out = await IpLink.set(input_data=[ {dent: [{'device': port, 'operstate': 'down'} for port in dut_ixia_ports] + [{'device': port, 'operstate': 'down'} for port in loopback_ports.values()] + [{'device': bridge, 'operstate': 'down'}] }]) assert out[0][dent]['rc'] == 0, 'Failed changing state of the interfaces to down' out = await IpLink.set(input_data=[ {dent: [{'device': port, 'master': bridge} for port in dut_ixia_ports] + [{'device': port, 'master': bridge} for port in loopback_ports.values()] }]) assert out[0][dent]['rc'] == 0, 'Failed to enslave ports' # 4. Set link up on all participant ports, bridges out = await IpLink.set(input_data=[ {dent: [{'device': port, 'operstate': 'up'} for port in dut_ixia_ports] + [{'device': port, 'operstate': 'up'} for port in loopback_ports.values()] + [{'device': bridge, 'operstate': 'up'}] }]) assert out[0][dent]['rc'] == 0, 'Failed changing state of the interfaces' # 5. Wait until topology converges await asyncio.sleep(wait_time) # 6. Send broadcast traffic dev_groups = tgen_utils_dev_groups_from_config(( {'ixp': tg_ports[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24}, )) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ixia_ports, dev_groups) tx_ports = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = { f'{rx_ports} -> Broadcast': { 'type': 'raw', 'ip_source': tx_ports, 'ip_destination': rx_ports, 'srcMac': 'aa:bb:cc:dd:ee:ff', 'dstMac': 'ff:ff:ff:ff:ff:ff', 'frame_rate_type': 'line_rate', 'rate': 5 } } > await tgen_utils_setup_streams(tgen_dev, None, streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_loopback.py:108: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {"['10.36.118.199:2:2_1.1.1.3/24', '10.36.118.199:2:3_1.1.1.4/24', '10.36.118.199:2:4_1.1.1.5/24'] -> Broadcast": {'ds...4', '10.36.118.199:2:3_1.1.1.4/24', '10.36.118.199:2:4_1.1.1.5/24'], 'ip_source': '10.36.118.199:2:1_1.1.1.2/24', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0, out[0][device.host_name]['result'] E AssertionError: Port is not connected after 600 seconds. E 10.36.118.199:2:1 is connecting /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:427: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14461' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_loopback_detection[rstp]">Starting testcase:test_stp_loopback_detection[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_loopback.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=255, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=256] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=256] Local address: 172.17.0.4, port 57834 INFO asyncssh:logging.py:92 [conn=256] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=256] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=256] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:02:19 UTC 2087 INFO asyncssh:logging.py:92 [conn=256, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=256, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=256, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=256, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=256, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=256, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:02:19 UTC 2087 INFO asyncssh:logging.py:92 [conn=256, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=256, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=8] Command: ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=256, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev bridge_1 down INFO asyncssh:logging.py:92 [conn=256, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=10] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev bridge_1 down INFO asyncssh:logging.py:92 [conn=256, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_1 && ip link set dev swp35 master bridge_1 && ip link set dev swp36 master bridge_1 && ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 && ip link set dev swp9 master bridge_1 && ip link set dev swp6 master bridge_1 && ip link set dev swp8 master bridge_1 && ip link set dev swp10 master bridge_1 INFO asyncssh:logging.py:92 [conn=256, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=12] Command: ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_1 && ip link set dev swp35 master bridge_1 && ip link set dev swp36 master bridge_1 && ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 && ip link set dev swp9 master bridge_1 && ip link set dev swp6 master bridge_1 && ip link set dev swp8 master bridge_1 && ip link set dev swp10 master bridge_1 INFO asyncssh:logging.py:92 [conn=256, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=256, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=14] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=256, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port is not connected after 600 seconds. 10.36.118.199:2:1 is connecting INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ['10.36.118.199:2:2_1.1.1.3/24', '10.36.118.199:2:3_1.1.1.4/24', '10.36.118.199:2:4_1.1.1.5/24'] -> Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' Port is not connected after 600 seconds.\n10.36.118.199:2:1 is connecting'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_loopback_detection[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_loopback.py INFO asyncssh:logging.py:92 [conn=256, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=15] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=256, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=16] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=256, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=18] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:13:04 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=256, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=256, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=256, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":154,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=256, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=256, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=22] Command: ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=256, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=256, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=24] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:13:05 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Failed | functional/stp/test_stp_ports.py::test_stp_blocked_ports[stp] | 613.86 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> version = 'stp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_stp_blocked_ports(testbed, version): """ Test Name: test_stp_blocked_ports Test Suite: suite_functional_stp Test Overview: Verify that data traffic is not forwarded to blocking port Test Procedure: 1. Create bridge entity with STP enabled 2. Enslave port to the bridge 3. Change the MAC addresses the bridge 4. Set link up on all participant ports, bridge 5. Create streams. Send traffic 6. Verify port 2 state is blocking 7. Verify traffic is forwarded to port 1 and that port 2 doesn't receive any traffic 8. Change the cost of the blocked port to a cost less of the default set 9. Transmit the traffic 10. Verify traffic is forwarded to port 2 and that port 1 doesn't receive any traffic """ num_ports = 4 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_ports) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_device = dent_devices[0] dent = dent_device.host_name tg_ports = tgen_dev.links_dict[dent][0][:num_ports] ports = tgen_dev.links_dict[dent][1][:num_ports] bridge = 'br0' root_mac = get_rand_mac('00:44:XX:XX:XX:XX') rand_mac = get_rand_mac('00:66:XX:XX:XX:XX') convergence_time_s = 40 if version == 'stp' else 20 rate_bps = 300_000_000 # 300Mbps traffic = 'data traffic' tolerance = 0.05 # 1. Create bridge entity with STP enabled out = await IpLink.add(input_data=[{dent: [ {'device': bridge, 'type': 'bridge', 'stp_state': 1} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2. Enslave port to the bridge out = await IpLink.set(input_data=[{dent: [ {'device': port, 'master': bridge} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Change the MAC addresses the bridge out = await IpLink.set(input_data=[{dent: [ {'device': bridge, 'address': '22:BB:4D:85:E7:098'}]}]) assert out[0][dent]['rc'] == 0, 'Failed to change MAC address' out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await Mstpctl.set(input_data=[{dent: [ {'parameter': 'forcevers', 'bridge': bridge, 'version': version} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to enable stp/rstp' # 4. Set link up on all participant ports, bridge out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' out = await IpLink.set(input_data=[{dent: [ {'device': bridge, 'operstate': 'up'}]}]) assert out[0][dent]['rc'] == 0, 'Failed to set bridge to state UP' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': f'1.1.1.{idx}', 'gw': '1.1.1.5', 'plen': 24} for idx, port in enumerate(tg_ports, start=1) ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # 5. Setup streams stp = { 'rootIdentifier': f'8000{root_mac.replace(":", "")}', 'bridgeIdentifier': f'8000{root_mac.replace(":", "")}', 'portIdentifier': '8002', 'messageAge': 1 << 8, 'frameSize': 100, } rstp = { 'agreement': 1, 'forwarding': 1, 'learning': 1, 'portRole': PortRole.DESIGNATED.value, 'proposal': 1, 'protocol': '0027', } if version == 'rstp' else {} streams = { f'{ports[0]} {version}': { 'type': 'bpdu', 'version': version, 'ep_source': ports[0], 'ep_destination': ports[0], 'rate': 1, # pps 'allowSelfDestined': True, 'srcMac': root_mac, **stp, **rstp, }, f'{ports[1]} {version}': { 'type': 'bpdu', 'version': version, 'ep_source': ports[1], 'ep_destination': ports[1], 'rate': 1, # pps 'allowSelfDestined': True, 'srcMac': rand_mac, **stp, **rstp, 'bridgeIdentifier': f'8000{rand_mac.replace(":", "")}', }, traffic: { 'type': 'ethernet', 'ep_source': ports[2], 'frame_rate_type': 'bps_rate', 'srcMac': get_rand_mac('00:11:XX:XX:XX:XX'), 'rate': rate_bps, }, } > await tgen_utils_setup_streams(tgen_dev, None, streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_ports.py:153: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'data traffic': {'ep_source': 'swp35', 'frame_rate_type': 'bps_rate', 'rate': 300000000, 'srcMac': '00:11:ad:fa:9b:07...llowSelfDestined': True, 'bridgeIdentifier': '8000006690b05015', 'ep_destination': 'swp34', 'ep_source': 'swp34', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0, out[0][device.host_name]['result'] E AssertionError: Port is not connected after 600 seconds. E 10.36.118.199:2:1 is connecting /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:427: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14500' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_blocked_ports[stp]">Starting testcase:test_stp_blocked_ports[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=256, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=257] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=257] Local address: 172.17.0.4, port 41182 INFO asyncssh:logging.py:92 [conn=257] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=257] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=257] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:13:05 UTC 2087 INFO asyncssh:logging.py:92 [conn=257, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=257, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=257, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=257, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=257, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=257, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:13:05 UTC 2087 INFO asyncssh:logging.py:92 [conn=257, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=257, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=257, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=257, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=257, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=257, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=12] Command: ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=257, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=257, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=257, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=257, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=16] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=257, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=257, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=257, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=257, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=257, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port is not connected after 600 seconds. 10.36.118.199:2:1 is connecting INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' Port is not connected after 600 seconds.\n10.36.118.199:2:1 is connecting'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_blocked_ports[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_ports.py INFO asyncssh:logging.py:92 [conn=257, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=21] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=257, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=22] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=257, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=257, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=24] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:23:18 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=257, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=26] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:23:19 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=257, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=257, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=257, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":155,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:bb:4d:85:e7:98","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=257, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=257, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=257, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/stp/test_stp_ports.py::test_stp_blocked_ports[rstp] | 613.39 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> version = 'rstp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_stp_blocked_ports(testbed, version): """ Test Name: test_stp_blocked_ports Test Suite: suite_functional_stp Test Overview: Verify that data traffic is not forwarded to blocking port Test Procedure: 1. Create bridge entity with STP enabled 2. Enslave port to the bridge 3. Change the MAC addresses the bridge 4. Set link up on all participant ports, bridge 5. Create streams. Send traffic 6. Verify port 2 state is blocking 7. Verify traffic is forwarded to port 1 and that port 2 doesn't receive any traffic 8. Change the cost of the blocked port to a cost less of the default set 9. Transmit the traffic 10. Verify traffic is forwarded to port 2 and that port 1 doesn't receive any traffic """ num_ports = 4 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_ports) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_device = dent_devices[0] dent = dent_device.host_name tg_ports = tgen_dev.links_dict[dent][0][:num_ports] ports = tgen_dev.links_dict[dent][1][:num_ports] bridge = 'br0' root_mac = get_rand_mac('00:44:XX:XX:XX:XX') rand_mac = get_rand_mac('00:66:XX:XX:XX:XX') convergence_time_s = 40 if version == 'stp' else 20 rate_bps = 300_000_000 # 300Mbps traffic = 'data traffic' tolerance = 0.05 # 1. Create bridge entity with STP enabled out = await IpLink.add(input_data=[{dent: [ {'device': bridge, 'type': 'bridge', 'stp_state': 1} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2. Enslave port to the bridge out = await IpLink.set(input_data=[{dent: [ {'device': port, 'master': bridge} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Change the MAC addresses the bridge out = await IpLink.set(input_data=[{dent: [ {'device': bridge, 'address': '22:BB:4D:85:E7:098'}]}]) assert out[0][dent]['rc'] == 0, 'Failed to change MAC address' out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await Mstpctl.set(input_data=[{dent: [ {'parameter': 'forcevers', 'bridge': bridge, 'version': version} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to enable stp/rstp' # 4. Set link up on all participant ports, bridge out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' out = await IpLink.set(input_data=[{dent: [ {'device': bridge, 'operstate': 'up'}]}]) assert out[0][dent]['rc'] == 0, 'Failed to set bridge to state UP' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': f'1.1.1.{idx}', 'gw': '1.1.1.5', 'plen': 24} for idx, port in enumerate(tg_ports, start=1) ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # 5. Setup streams stp = { 'rootIdentifier': f'8000{root_mac.replace(":", "")}', 'bridgeIdentifier': f'8000{root_mac.replace(":", "")}', 'portIdentifier': '8002', 'messageAge': 1 << 8, 'frameSize': 100, } rstp = { 'agreement': 1, 'forwarding': 1, 'learning': 1, 'portRole': PortRole.DESIGNATED.value, 'proposal': 1, 'protocol': '0027', } if version == 'rstp' else {} streams = { f'{ports[0]} {version}': { 'type': 'bpdu', 'version': version, 'ep_source': ports[0], 'ep_destination': ports[0], 'rate': 1, # pps 'allowSelfDestined': True, 'srcMac': root_mac, **stp, **rstp, }, f'{ports[1]} {version}': { 'type': 'bpdu', 'version': version, 'ep_source': ports[1], 'ep_destination': ports[1], 'rate': 1, # pps 'allowSelfDestined': True, 'srcMac': rand_mac, **stp, **rstp, 'bridgeIdentifier': f'8000{rand_mac.replace(":", "")}', }, traffic: { 'type': 'ethernet', 'ep_source': ports[2], 'frame_rate_type': 'bps_rate', 'srcMac': get_rand_mac('00:11:XX:XX:XX:XX'), 'rate': rate_bps, }, } > await tgen_utils_setup_streams(tgen_dev, None, streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_ports.py:153: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'data traffic': {'ep_source': 'swp35', 'frame_rate_type': 'bps_rate', 'rate': 300000000, 'srcMac': '00:11:0b:e0:3c:a5...': {'agreement': 1, 'allowSelfDestined': True, 'bridgeIdentifier': '800000661e24a99e', 'ep_destination': 'swp34', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0, out[0][device.host_name]['result'] E AssertionError: Port is not connected after 600 seconds. E 10.36.118.199:2:1 is connecting /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:427: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14545' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_blocked_ports[rstp]">Starting testcase:test_stp_blocked_ports[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=257, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=258] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=258] Local address: 172.17.0.4, port 52150 INFO asyncssh:logging.py:92 [conn=258] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=258] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=258] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:23:19 UTC 2087 INFO asyncssh:logging.py:92 [conn=258, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=258, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=258, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=258, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=258, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=258, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:23:19 UTC 2087 INFO asyncssh:logging.py:92 [conn=258, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=258, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=258, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=258, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=258, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=258, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=12] Command: ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=258, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=258, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=258, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=258, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=16] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=258, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=258, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=258, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=258, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=258, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port is not connected after 600 seconds. 10.36.118.199:2:1 is connecting INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' Port is not connected after 600 seconds.\n10.36.118.199:2:1 is connecting'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_blocked_ports[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_ports.py INFO asyncssh:logging.py:92 [conn=258, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=21] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=258, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=22] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=258, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=258, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=24] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:33:32 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=258, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=26] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:33:32 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=258, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=258, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=258, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":156,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:bb:4d:85:e7:98","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=258, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=258, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=258, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/stp/test_stp_rstp_config.py::test_stp_bpdu_filter[stp] | 613.85 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> version = 'stp' async def test_stp_bpdu_filter(testbed, version): """ Test Name: test_stp_bpdu_filter Test Suite: suite_functional_stp Test Overview: Verify BDPU filter basic functionality works as expected Test Procedure: 1. Add bridge 2. Enslave ports 3. Enable STP/RSTP 4. Setup streams: - BPDU stream with higher prio than bridge from port#0 - BPDU stream with higher prio than bridge from port#1 - data traffic from port#2 to ports #0 and #1 5. Send traffic 6. Disable/Enable BPDU filter 7. Verify port#1 is ALTERNATE/DESIGNATED 8. Verify traffic is discarded/forwarded through port#1 """ num_ports = 3 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_ports) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_device = dent_devices[0] dent = dent_device.host_name tg_ports = tgen_dev.links_dict[dent][0][:num_ports] ports = tgen_dev.links_dict[dent][1][:num_ports] bridge = 'br0' bridge_mac = get_rand_mac('02:55:XX:XX:XX:XX') root_mac = get_rand_mac('02:10:XX:XX:XX:XX') rand_mac = get_rand_mac('02:AA:XX:XX:XX:XX') convergence_time_s = 40 if version == 'stp' else 20 rate_bps = 300_000_000 # 300Mbps traffic = 'data traffic' tolerance = 0.05 # 1. Add bridge out = await IpLink.add(input_data=[{dent: [ {'device': bridge, 'type': 'bridge', 'stp_state': 1} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2. Enslave ports out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up', 'master': bridge} for port in ports ] + [ {'device': bridge, 'operstate': 'up', 'address': bridge_mac} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Enable STP/RSTP out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await Mstpctl.set(input_data=[{dent: [ {'parameter': 'forcevers', 'bridge': bridge, 'version': version} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to enable stp/rstp' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': f'1.1.1.{idx}', 'gw': '1.1.1.5', 'plen': 24} for idx, port in enumerate(tg_ports, start=1) ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # 4. Setup streams stp = { 'rootIdentifier': f'8000{root_mac.replace(":", "")}', 'bridgeIdentifier': f'8000{root_mac.replace(":", "")}', 'portIdentifier': '8002', 'messageAge': 1 << 8, 'frameSize': 100, } rstp = { 'agreement': 1, 'forwarding': 1, 'learning': 1, 'portRole': PortRole.DESIGNATED.value, 'proposal': 1, 'protocol': '0027', } if version == 'rstp' else {} streams = { # BPDU stream with higher prio than bridge from port#0 f'{ports[0]} {version}': { 'type': 'bpdu', 'version': version, 'ep_source': ports[0], 'ep_destination': ports[0], 'rate': 1, # pps 'allowSelfDestined': True, 'srcMac': root_mac, **stp, **rstp, }, # BPDU stream with higher prio than bridge from port#1 f'{ports[1]} {version}': { 'type': 'bpdu', 'version': version, 'ep_source': ports[1], 'ep_destination': ports[1], 'rate': 1, # pps 'allowSelfDestined': True, 'srcMac': rand_mac, **stp, **rstp, 'bridgeIdentifier': f'8000{rand_mac.replace(":", "")}', }, # data traffic from port#2 to ports #0 and #1 traffic: { 'type': 'ethernet', 'ep_source': ports[2], 'frame_rate_type': 'bps_rate', 'rate': rate_bps, }, } > await tgen_utils_setup_streams(tgen_dev, None, streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py:156: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'data traffic': {'ep_source': 'swp35', 'frame_rate_type': 'bps_rate', 'rate': 300000000, 'type': 'ethernet'}, 'swp33 ...llowSelfDestined': True, 'bridgeIdentifier': '800002aa28a0203b', 'ep_destination': 'swp34', 'ep_source': 'swp34', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0, out[0][device.host_name]['result'] E AssertionError: Port is not connected after 600 seconds. E 10.36.118.199:2:1 is connecting /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:427: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14590' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_bpdu_filter[stp]">Starting testcase:test_stp_bpdu_filter[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=258, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=259] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=259] Local address: 172.17.0.4, port 54962 INFO asyncssh:logging.py:92 [conn=259] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=259] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=259] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:33:33 UTC 2087 INFO asyncssh:logging.py:92 [conn=259, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=259, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=259, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=259, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=259, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=259, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:33:33 UTC 2087 INFO asyncssh:logging.py:92 [conn=259, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=259, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=259, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 02:55:40:59:f7:8d INFO asyncssh:logging.py:92 [conn=259, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 02:55:40:59:f7:8d INFO asyncssh:logging.py:92 [conn=259, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=259, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=259, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=259, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=14] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=259, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port is not connected after 600 seconds. 10.36.118.199:2:1 is connecting INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' Port is not connected after 600 seconds.\n10.36.118.199:2:1 is connecting'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_bpdu_filter[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py INFO asyncssh:logging.py:92 [conn=259, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=15] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=259, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=16] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=259, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=259, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=18] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:43:46 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=259, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=20] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:43:46 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=259, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=259, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=259, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":157,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"02:55:40:59:f7:8d","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=259, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=259, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=259, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=24] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/stp/test_stp_rstp_config.py::test_stp_bpdu_filter[rstp] | 613.75 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> version = 'rstp' async def test_stp_bpdu_filter(testbed, version): """ Test Name: test_stp_bpdu_filter Test Suite: suite_functional_stp Test Overview: Verify BDPU filter basic functionality works as expected Test Procedure: 1. Add bridge 2. Enslave ports 3. Enable STP/RSTP 4. Setup streams: - BPDU stream with higher prio than bridge from port#0 - BPDU stream with higher prio than bridge from port#1 - data traffic from port#2 to ports #0 and #1 5. Send traffic 6. Disable/Enable BPDU filter 7. Verify port#1 is ALTERNATE/DESIGNATED 8. Verify traffic is discarded/forwarded through port#1 """ num_ports = 3 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_ports) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_device = dent_devices[0] dent = dent_device.host_name tg_ports = tgen_dev.links_dict[dent][0][:num_ports] ports = tgen_dev.links_dict[dent][1][:num_ports] bridge = 'br0' bridge_mac = get_rand_mac('02:55:XX:XX:XX:XX') root_mac = get_rand_mac('02:10:XX:XX:XX:XX') rand_mac = get_rand_mac('02:AA:XX:XX:XX:XX') convergence_time_s = 40 if version == 'stp' else 20 rate_bps = 300_000_000 # 300Mbps traffic = 'data traffic' tolerance = 0.05 # 1. Add bridge out = await IpLink.add(input_data=[{dent: [ {'device': bridge, 'type': 'bridge', 'stp_state': 1} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2. Enslave ports out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up', 'master': bridge} for port in ports ] + [ {'device': bridge, 'operstate': 'up', 'address': bridge_mac} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Enable STP/RSTP out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await Mstpctl.set(input_data=[{dent: [ {'parameter': 'forcevers', 'bridge': bridge, 'version': version} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to enable stp/rstp' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': f'1.1.1.{idx}', 'gw': '1.1.1.5', 'plen': 24} for idx, port in enumerate(tg_ports, start=1) ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # 4. Setup streams stp = { 'rootIdentifier': f'8000{root_mac.replace(":", "")}', 'bridgeIdentifier': f'8000{root_mac.replace(":", "")}', 'portIdentifier': '8002', 'messageAge': 1 << 8, 'frameSize': 100, } rstp = { 'agreement': 1, 'forwarding': 1, 'learning': 1, 'portRole': PortRole.DESIGNATED.value, 'proposal': 1, 'protocol': '0027', } if version == 'rstp' else {} streams = { # BPDU stream with higher prio than bridge from port#0 f'{ports[0]} {version}': { 'type': 'bpdu', 'version': version, 'ep_source': ports[0], 'ep_destination': ports[0], 'rate': 1, # pps 'allowSelfDestined': True, 'srcMac': root_mac, **stp, **rstp, }, # BPDU stream with higher prio than bridge from port#1 f'{ports[1]} {version}': { 'type': 'bpdu', 'version': version, 'ep_source': ports[1], 'ep_destination': ports[1], 'rate': 1, # pps 'allowSelfDestined': True, 'srcMac': rand_mac, **stp, **rstp, 'bridgeIdentifier': f'8000{rand_mac.replace(":", "")}', }, # data traffic from port#2 to ports #0 and #1 traffic: { 'type': 'ethernet', 'ep_source': ports[2], 'frame_rate_type': 'bps_rate', 'rate': rate_bps, }, } > await tgen_utils_setup_streams(tgen_dev, None, streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py:156: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'data traffic': {'ep_source': 'swp35', 'frame_rate_type': 'bps_rate', 'rate': 300000000, 'type': 'ethernet'}, 'swp33 ...': {'agreement': 1, 'allowSelfDestined': True, 'bridgeIdentifier': '800002aa97b08f19', 'ep_destination': 'swp34', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0, out[0][device.host_name]['result'] E AssertionError: Port is not connected after 600 seconds. E 10.36.118.199:2:1 is connecting /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:427: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14629' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_bpdu_filter[rstp]">Starting testcase:test_stp_bpdu_filter[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=259, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=260] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=260] Local address: 172.17.0.4, port 48762 INFO asyncssh:logging.py:92 [conn=260] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=260] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=260] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:43:47 UTC 2087 INFO asyncssh:logging.py:92 [conn=260, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=260, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=260, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=260, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=260, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=260, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:43:47 UTC 2087 INFO asyncssh:logging.py:92 [conn=260, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=260, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=260, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 02:55:1b:8f:07:f6 INFO asyncssh:logging.py:92 [conn=260, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 02:55:1b:8f:07:f6 INFO asyncssh:logging.py:92 [conn=260, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=260, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=260, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=260, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=14] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=260, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port is not connected after 600 seconds. 10.36.118.199:2:1 is connecting INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' Port is not connected after 600 seconds.\n10.36.118.199:2:1 is connecting'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_bpdu_filter[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py INFO asyncssh:logging.py:92 [conn=260, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=15] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=260, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=16] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=260, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=260, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=18] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:54:00 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=260, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=20] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:54:00 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=260, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=260, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=260, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":158,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"02:55:1b:8f:07:f6","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=260, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=260, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=260, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=24] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/stp/test_stp_select_root.py::test_stp_root_bridge_based_on_mac[stp] | 613.30 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> version = 'stp' async def test_stp_root_bridge_based_on_mac(testbed, version): """ Test Name: test_stp_root_bridge Test Suite: suite_functional_stp Test Overview: Verify root bridge with lowest MAC Test Procedure: 1. Create bridge entity with STP enabled 2. Enslave port to the bridge 3. Change the MAC addresses the bridge as follows 66:XX:XX:XX:XX:XX 4. Set link up on all participant ports 5. Transmit BDPU with root-id=bridge-id=00:44:XX:XX:XX:XX" wait until topology fully converges 6. Verify the bridge is not a root bridge 7. Change the highest MAC bridge to a MAC with lower value then the root bridge. 8. Verify the bridge is a root bridge """ num_ports = 4 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_ports) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_device = dent_devices[0] dent = dent_device.host_name tg_ports = tgen_dev.links_dict[dent][0][:num_ports] ports = tgen_dev.links_dict[dent][1][:num_ports] bridge = 'br0' root_mac = get_rand_mac('00:44:XX:XX:XX:XX') # 1. Create bridge entity with STP enabled out = await IpLink.add(input_data=[{dent: [ {'device': bridge, 'type': 'bridge', 'stp_state': 1} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2.Enslave port to the bridge out = await IpLink.set(input_data=[{dent: [ {'device': port, 'master': bridge} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Change the MAC addresses for all bridges out = await IpLink.set(input_data=[{dent: [ {'device': bridge, 'address': '66:DA:78:12:DC:68'}]}]) assert out[0][dent]['rc'] == 0, 'Failed to change MAC address' out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await Mstpctl.set(input_data=[{dent: [ {'parameter': 'forcevers', 'bridge': bridge, 'version': version} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to enable stp/rstp' # 4. Set link up on all participant ports out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' out = await IpLink.set(input_data=[{dent: [ {'device': bridge, 'operstate': 'up'}]}]) assert out[0][dent]['rc'] == 0, 'Failed to set bridge to state UP' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': f'1.1.1.{idx}', 'gw': '1.1.1.5', 'plen': 24} for idx, port in enumerate(tg_ports, start=1) ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # 5. Transmit BDPU with root-id=bridge-id=00:44:XX:XX:XX:XX" wait ~40 seconds until topology fully converges stp = { 'rootIdentifier': f'8000{root_mac.replace(":", "")}', 'bridgeIdentifier': f'8000{root_mac.replace(":", "")}', 'portIdentifier': '8002', 'messageAge': 1 << 8, 'frameSize': 100, } rstp = { 'agreement': 1, 'forwarding': 1, 'learning': 1, 'portRole': PortRole.DESIGNATED.value, 'proposal': 1, 'protocol': '0027', } if version == 'rstp' else {} streams = { # BPDU stream with higher prio than bridge from port#0 f'{ports[0]} {version}': { 'type': 'bpdu', 'version': version, 'ep_source': ports[0], 'rate': 1, # pps 'allowSelfDestined': True, 'srcMac': root_mac, **stp, **rstp, } } > await tgen_utils_setup_streams(tgen_dev, None, streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py:438: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'swp33 stp': {'allowSelfDestined': True, 'bridgeIdentifier': '8000004449f31669', 'ep_source': 'swp33', 'frameSize': 100, ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0, out[0][device.host_name]['result'] E AssertionError: Port is not connected after 600 seconds. E 10.36.118.199:2:1 is connecting /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:427: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15042' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_root_bridge_based_on_mac[stp]">Starting testcase:test_stp_root_bridge_based_on_mac[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=266, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=267] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=267] Local address: 172.17.0.4, port 53616 INFO asyncssh:logging.py:92 [conn=267] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=267] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=267] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=267, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:02:12 UTC 2087 INFO asyncssh:logging.py:92 [conn=267, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=267, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=267, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=267, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=267, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=267, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=267, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:02:12 UTC 2087 INFO asyncssh:logging.py:92 [conn=267, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=267, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=267, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=267, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=267, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 66:DA:78:12:DC:68 INFO asyncssh:logging.py:92 [conn=267, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=12] Command: ip link set dev br0 address 66:DA:78:12:DC:68 INFO asyncssh:logging.py:92 [conn=267, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=267, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=267, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=267, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=16] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=267, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=267, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=267, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=267, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=267, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port is not connected after 600 seconds. 10.36.118.199:2:1 is connecting INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' Port is not connected after 600 seconds.\n10.36.118.199:2:1 is connecting'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_root_bridge_based_on_mac[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=267, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=21] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=267, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=22] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=267, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=267, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=267, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=24] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:12:24 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=267, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=267, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=26] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:12:24 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=267, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=267, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=267, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":171,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"66:da:78:12:dc:68","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=267, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=267, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=267, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/stp/test_stp_select_root.py::test_stp_root_bridge_based_on_mac[rstp] | 614.34 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> version = 'rstp' async def test_stp_root_bridge_based_on_mac(testbed, version): """ Test Name: test_stp_root_bridge Test Suite: suite_functional_stp Test Overview: Verify root bridge with lowest MAC Test Procedure: 1. Create bridge entity with STP enabled 2. Enslave port to the bridge 3. Change the MAC addresses the bridge as follows 66:XX:XX:XX:XX:XX 4. Set link up on all participant ports 5. Transmit BDPU with root-id=bridge-id=00:44:XX:XX:XX:XX" wait until topology fully converges 6. Verify the bridge is not a root bridge 7. Change the highest MAC bridge to a MAC with lower value then the root bridge. 8. Verify the bridge is a root bridge """ num_ports = 4 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_ports) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_device = dent_devices[0] dent = dent_device.host_name tg_ports = tgen_dev.links_dict[dent][0][:num_ports] ports = tgen_dev.links_dict[dent][1][:num_ports] bridge = 'br0' root_mac = get_rand_mac('00:44:XX:XX:XX:XX') # 1. Create bridge entity with STP enabled out = await IpLink.add(input_data=[{dent: [ {'device': bridge, 'type': 'bridge', 'stp_state': 1} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2.Enslave port to the bridge out = await IpLink.set(input_data=[{dent: [ {'device': port, 'master': bridge} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Change the MAC addresses for all bridges out = await IpLink.set(input_data=[{dent: [ {'device': bridge, 'address': '66:DA:78:12:DC:68'}]}]) assert out[0][dent]['rc'] == 0, 'Failed to change MAC address' out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await Mstpctl.set(input_data=[{dent: [ {'parameter': 'forcevers', 'bridge': bridge, 'version': version} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to enable stp/rstp' # 4. Set link up on all participant ports out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' out = await IpLink.set(input_data=[{dent: [ {'device': bridge, 'operstate': 'up'}]}]) assert out[0][dent]['rc'] == 0, 'Failed to set bridge to state UP' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': f'1.1.1.{idx}', 'gw': '1.1.1.5', 'plen': 24} for idx, port in enumerate(tg_ports, start=1) ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # 5. Transmit BDPU with root-id=bridge-id=00:44:XX:XX:XX:XX" wait ~40 seconds until topology fully converges stp = { 'rootIdentifier': f'8000{root_mac.replace(":", "")}', 'bridgeIdentifier': f'8000{root_mac.replace(":", "")}', 'portIdentifier': '8002', 'messageAge': 1 << 8, 'frameSize': 100, } rstp = { 'agreement': 1, 'forwarding': 1, 'learning': 1, 'portRole': PortRole.DESIGNATED.value, 'proposal': 1, 'protocol': '0027', } if version == 'rstp' else {} streams = { # BPDU stream with higher prio than bridge from port#0 f'{ports[0]} {version}': { 'type': 'bpdu', 'version': version, 'ep_source': ports[0], 'rate': 1, # pps 'allowSelfDestined': True, 'srcMac': root_mac, **stp, **rstp, } } > await tgen_utils_setup_streams(tgen_dev, None, streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py:438: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'swp33 rstp': {'agreement': 1, 'allowSelfDestined': True, 'bridgeIdentifier': '8000004455f4e88f', 'ep_source': 'swp33', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0, out[0][device.host_name]['result'] E AssertionError: Port is not connected after 600 seconds. E 10.36.118.199:2:1 is connecting /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:427: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15087' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_root_bridge_based_on_mac[rstp]">Starting testcase:test_stp_root_bridge_based_on_mac[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=267, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=268] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=268] Local address: 172.17.0.4, port 38814 INFO asyncssh:logging.py:92 [conn=268] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=268] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=268] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=268, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:12:25 UTC 2087 INFO asyncssh:logging.py:92 [conn=268, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=268, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=268, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=268, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=268, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=268, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=268, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:12:25 UTC 2087 INFO asyncssh:logging.py:92 [conn=268, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=268, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=268, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=268, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=268, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 66:DA:78:12:DC:68 INFO asyncssh:logging.py:92 [conn=268, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=12] Command: ip link set dev br0 address 66:DA:78:12:DC:68 INFO asyncssh:logging.py:92 [conn=268, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=268, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=268, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=268, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=16] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=268, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=268, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=268, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=268, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=268, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port is not connected after 600 seconds. 10.36.118.199:2:1 is connecting INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' Port is not connected after 600 seconds.\n10.36.118.199:2:1 is connecting'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_root_bridge_based_on_mac[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=268, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=21] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=268, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=22] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=268, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=268, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=268, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=24] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:22:39 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=268, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=268, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=26] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:22:39 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=268, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=268, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=268, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":172,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"66:da:78:12:dc:68","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=268, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=268, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=268, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Failed | functional/stp/test_stp_select_root.py::test_stp_select_root_port_on_cost[stp] | 32.80 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> version = 'stp' async def test_stp_select_root_port_on_cost(testbed, version): """ Test Name: test_stp_select_root_port_on_cost Test Suite: suite_functional_stp Test Overview: Verify root port slection based on port cost Test Procedure: 1. Create bridge entity with STP enabled 2. Enslave port to the bridge 3. Change the MAC addresses the bridge 4. Set link up on all participant ports, bridge 5. Create streams. Send traffic 6. Verify port 2 state is blocking 7. Verify traffic is forwarded to port 1 and that port 2 doesn't receive any traffic 8. Change the cost of the blocked port to a cost less of the default set 9. Transmit the traffic 10. Verify traffic is forwarded to port 2 and that port 1 doesn't receive any traffic """ num_ports = 4 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_ports) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_device = dent_devices[0] dent = dent_device.host_name tg_ports = tgen_dev.links_dict[dent][0][:num_ports] ports = tgen_dev.links_dict[dent][1][:num_ports] bridge = 'br0' root_mac = get_rand_mac('00:44:XX:XX:XX:XX') rand_mac = get_rand_mac('00:66:XX:XX:XX:XX') convergence_time_s = 40 if version == 'stp' else 20 rate_bps = 300_000_000 # 300Mbps traffic = 'data traffic' tolerance = 0.05 newCost = 1 if version == 'stp' else 16 # 1. Create bridge entity with STP enabled out = await IpLink.add(input_data=[{dent: [ {'device': bridge, 'type': 'bridge', 'stp_state': 1} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2. Enslave port to the bridge out = await IpLink.set(input_data=[{dent: [ {'device': port, 'master': bridge} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Change the MAC addresses the bridge out = await IpLink.set(input_data=[{dent: [ {'device': bridge, 'address': '22:BB:4D:85:E7:098'}]}]) assert out[0][dent]['rc'] == 0, 'Failed to change MAC address' out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await Mstpctl.set(input_data=[{dent: [ {'parameter': 'forcevers', 'bridge': bridge, 'version': version} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to enable stp/rstp' # 4. Set link up on all participant ports, bridge out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' out = await IpLink.set(input_data=[{dent: [ {'device': bridge, 'operstate': 'up'}]}]) assert out[0][dent]['rc'] == 0, 'Failed to set bridge to state UP' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': f'1.1.1.{idx}', 'gw': '1.1.1.5', 'plen': 24} for idx, port in enumerate(tg_ports, start=1) ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # 5. Setup streams stp = { 'rootIdentifier': f'8000{root_mac.replace(":", "")}', 'bridgeIdentifier': f'8000{root_mac.replace(":", "")}', 'portIdentifier': '8002', 'messageAge': 1 << 8, 'frameSize': 100, } rstp = { 'agreement': 1, 'forwarding': 1, 'learning': 1, 'portRole': PortRole.DESIGNATED.value, 'proposal': 1, 'protocol': '0027', } if version == 'rstp' else {} streams = { f'{ports[0]} {version}': { 'type': 'bpdu', 'version': version, 'ep_source': ports[0], 'ep_destination': ports[0], 'rate': 1, # pps 'allowSelfDestined': True, 'srcMac': root_mac, **stp, **rstp, }, f'{ports[1]} {version}': { 'type': 'bpdu', 'version': version, 'ep_source': ports[1], 'ep_destination': ports[1], 'rate': 1, # pps 'allowSelfDestined': True, 'srcMac': rand_mac, **stp, **rstp, 'bridgeIdentifier': f'8000{rand_mac.replace(":", "")}', }, traffic: { 'type': 'ethernet', 'ep_source': ports[2], 'frame_rate_type': 'bps_rate', 'srcMac': get_rand_mac('00:11:XX:XX:XX:XX'), 'rate': rate_bps, }, } > await tgen_utils_setup_streams(tgen_dev, None, streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py:591: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'data traffic': {'ep_source': 'swp35', 'frame_rate_type': 'bps_rate', 'rate': 300000000, 'srcMac': '00:11:20:72:a2:b4...llowSelfDestined': True, 'bridgeIdentifier': '80000066323473d0', 'ep_destination': 'swp34', 'ep_source': 'swp34', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0, out[0][device.host_name]['result'] E AssertionError: Expecting value: line 1 column 1 (char 0) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:427: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15132' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_port_on_cost[stp]">Starting testcase:test_stp_select_root_port_on_cost[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=268, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=269] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=269] Local address: 172.17.0.4, port 40284 INFO asyncssh:logging.py:92 [conn=269] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=269] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=269] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=269, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:22:39 UTC 2087 INFO asyncssh:logging.py:92 [conn=269, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=269, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=269, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=269, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=269, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=269, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=269, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:22:40 UTC 2087 INFO asyncssh:logging.py:92 [conn=269, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=269, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=269, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=269, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=269, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=269, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=12] Command: ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=269, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=269, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=269, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=269, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=16] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=269, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=269, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=269, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=269, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=269, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Expecting value: line 1 column 1 (char 0) INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': 'Expecting value: line 1 column 1 (char 0)'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_port_on_cost[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=269, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=21] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=269, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=22] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=269, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=269, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=269, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=24] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:23:12 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=269, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=269, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=26] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:23:12 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=269, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=269, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=269, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":173,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:bb:4d:85:e7:98","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=269, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=269, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=269, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| XFailed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_size | 128.74 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> @pytest.mark.xfail(reason='Device does not support fragmentation') async def test_ipv4_ping_size(testbed): """ Test Name: test_ipv4_ping_size Test Suite: suite_functional_ipv4 Test Overview: Test IPv4 ping size Test Procedure: 1. Init interfaces 2. Configure ports up 3. Configure IP addrs 4. Add dynamic arp entries 5. Generate ping with size smaller than mru and larger than mru and verify fragmentation on the larger ping """ # 1. Init interfaces tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_dev = dent_devices[0] dent = dent_dev.host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] address_map = ( # swp port, tg port, swp ip, tg ip, plen (ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24), (ports[1], tg_ports[1], '2.2.2.1', '2.2.2.2', 24), (ports[2], tg_ports[2], '3.3.3.1', '3.3.3.2', 24), (ports[3], tg_ports[3], '4.4.4.1', '4.4.4.2', 24), ) # 2. Configure ports up out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port, *_ in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Configure IP addrs out = await IpAddress.add(input_data=[{dent: [ {'dev': port, 'prefix': f'{ip}/{plen}'} for port, _, ip, _, plen in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen} for _, port, gw, ip, plen in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # 4. Add dynamic arp entries streams = { 'ipv4': {'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name']} } await tgen_utils_setup_streams(tgen_dev, None, streams) # will send arps to all ports # 5. Generate ping with size smaller than mru await asyncio.gather(*(do_ping(dent_dev, port, dst, size=100, timeout=15) for port, *_, dst, _ in address_map)) # Generate ping with size larger than mru and verify fragmentation > await asyncio.gather(*(do_ping(dent_dev, port, dst, size=1473, timeout=15) for port, *_, dst, _ in address_map)) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py:278: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ dev = [DENT infrastructure 1: 10.36.118.46], port = 'swp33', dst = '1.1.1.2' count = 1, interval = 0.1, size = 1473, timeout = 15 async def do_ping(dev, port, dst, count=1, interval=0.1, size=0, timeout=120): cmd = f'ping -I {port} -c {count} -i {interval} -s {size} -w {timeout} {dst}' cmd += ' | grep "ping statistics" -A 2' # filter ouptut rc, out = await dev.run_cmd(cmd) assert rc == 0, f'Failed to send ping from {port} to {dst}' > assert ' 0% ' in out, f'Some pings did not reach their destination\n{out}' E AssertionError: Some pings did not reach their destination E --- 1.1.1.2 ping statistics --- E 145 packets transmitted, 0 received, 100% packet loss, time 14977ms E E E assert ' 0% ' in '--- 1.1.1.2 ping statistics ---\n145 packets transmitted, 0 received, 100% packet loss, time 14977ms\n\n' /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py:35: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8083' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_size">Starting testcase:test_ipv4_ping_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=154] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=154] Local address: 172.17.0.4, port 43272 INFO asyncssh:logging.py:92 [conn=154] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=154] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=154] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:31:09 UTC 2087 INFO asyncssh:logging.py:92 [conn=154, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=154, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=154, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=154, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=154, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=154, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:31:09 UTC 2087 INFO asyncssh:logging.py:92 [conn=154, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=154, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=154, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=154, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=154, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=154, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=154, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=13] Received channel close DEBUG infra1:Logger.py:156 ping -I swp33 -c 1 -i 0.1 -s 100 -w 15 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=154, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=154, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=154, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=14] Received channel close DEBUG infra1:Logger.py:156 ping -I swp34 -c 1 -i 0.1 -s 100 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=154, chan=16] Requesting new SSH session DEBUG infra1:Logger.py:156 ping -I swp35 -c 1 -i 0.1 -s 100 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=154, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=154, chan=15] Command: ping -I swp33 -c 1 -i 0.1 -s 100 -w 15 1.1.1.2 | grep "ping statistics" -A 2 DEBUG infra1:Logger.py:156 ping -I swp36 -c 1 -i 0.1 -s 100 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=154, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=16] Command: ping -I swp34 -c 1 -i 0.1 -s 100 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=154, chan=17] Command: ping -I swp35 -c 1 -i 0.1 -s 100 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=154, chan=18] Command: ping -I swp36 -c 1 -i 0.1 -s 100 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=154, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=15] Channel closed DEBUG infra1:Logger.py:156 --- 1.1.1.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.304/0.304/0.304/0.000 ms INFO asyncssh:logging.py:92 [conn=154, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=154, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=18] Received channel close DEBUG infra1:Logger.py:156 --- 3.3.3.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.275/0.275/0.275/0.000 ms INFO asyncssh:logging.py:92 [conn=154, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=154, chan=18] Channel closed DEBUG infra1:Logger.py:156 --- 2.2.2.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.281/0.281/0.281/0.000 ms DEBUG infra1:Logger.py:156 --- 4.4.4.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.252/0.252/0.252/0.000 ms INFO asyncssh:logging.py:92 [conn=154, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=154, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=21] Received channel close DEBUG infra1:Logger.py:156 ping -I swp33 -c 1 -i 0.1 -s 1473 -w 15 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=154, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=154, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=154, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=22] Received channel close DEBUG infra1:Logger.py:156 ping -I swp34 -c 1 -i 0.1 -s 1473 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=154, chan=24] Requesting new SSH session DEBUG infra1:Logger.py:156 ping -I swp35 -c 1 -i 0.1 -s 1473 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=154, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=154, chan=23] Command: ping -I swp33 -c 1 -i 0.1 -s 1473 -w 15 1.1.1.2 | grep "ping statistics" -A 2 DEBUG infra1:Logger.py:156 ping -I swp36 -c 1 -i 0.1 -s 1473 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=154, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=24] Command: ping -I swp34 -c 1 -i 0.1 -s 1473 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=154, chan=25] Command: ping -I swp35 -c 1 -i 0.1 -s 1473 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=154, chan=26] Command: ping -I swp36 -c 1 -i 0.1 -s 1473 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=154, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=23] Channel closed DEBUG infra1:Logger.py:156 --- 1.1.1.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14977ms INFO asyncssh:logging.py:92 [conn=154, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=24] Channel closed -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py DEBUG infra1:Logger.py:156 --- 2.2.2.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14973ms INFO asyncssh:logging.py:92 [conn=154, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=154, chan=26] Channel closed DEBUG infra1:Logger.py:156 --- 3.3.3.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14981ms DEBUG infra1:Logger.py:156 --- 4.4.4.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14981ms INFO asyncssh:logging.py:92 [conn=154, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=154, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=154, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:33:17 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=32] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:33:18 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=154, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=154, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=154, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=154, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=154, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=154, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=154, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=154, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=38] Channel closed DEBUG infra1:Logger.py:156 | |||
| XFailed | functional/ipv4/test_ipv4_mtu.py::test_ipv4_fragmentation | 130.08 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f49af50b010> @pytest.mark.xfail(reason='Device does not support fragmentation') async def test_ipv4_fragmentation(testbed): """ Test Name: test_ipv4_fragmentation Test Suite: suite_functional_ipv4 Test Overview: Test IPv4 fragmentation Test Procedure: 1. Init interfaces 2. Configure ports up 3. Configure IP addrs 4. Generate Non-fragment/fragment traffic and verify reception """ # 1. Init interfaces tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] traffic_duration = 10 fragmented = 1522 non_fragmented = 1420 address_map = ( # swp port, tg port, swp ip, tg ip, plen (ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24), (ports[1], tg_ports[1], '2.2.2.1', '2.2.2.2', 24), (ports[2], tg_ports[2], '3.3.3.1', '3.3.3.2', 24), (ports[3], tg_ports[3], '4.4.4.1', '4.4.4.2', 24), ) # 2. Configure ports up out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port, *_ in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Configure IP addrs out = await IpAddress.add(input_data=[{dent: [ {'dev': port, 'prefix': f'{ip}/{plen}'} for port, _, ip, _, plen in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen} for _, port, gw, ip, plen in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) streams = { f'{tg1} <-> {tg2} | frame size {size}': { 'type': 'ipv4', 'ip_source': dev_groups[tg1][0]['name'], 'ip_destination': dev_groups[tg2][0]['name'], 'protocol': 'ip', 'rate': '1000', # pps 'frameSize': size, 'bi_directional': True, } for tg1, tg2, size in ((tg_ports[0], tg_ports[1], non_fragmented), (tg_ports[2], tg_ports[3], fragmented)) } # 4. Generate Non-fragment/fragment traffic and verify reception await tgen_utils_setup_streams(tgen_dev, None, streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) await tgen_utils_stop_traffic(tgen_dev) # Verify packet discarded/fwd stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Flow Statistics') for row in stats.Rows: loss = tgen_utils_get_loss(row) if str(non_fragmented) in row['Traffic Item']: assert loss == 0, f'Expected loss: 0%, actual: {loss}%' assert row['Tx Frames'] == row['Rx Frames'], \ f"Expected Tx Frames {row['Tx Frames']} to equal Rx Frames {row['Rx Frames']}" else: # fragmented traffic > assert int(row['Rx Frames']) == int(row['Tx Frames']) * 2, \ f"Expected Rx Frames {row['Rx Frames']} to equal 2 * Tx Frames {2 * int(row['Tx Frames'])}" E AssertionError: Expected Rx Frames 0 to equal 2 * Tx Frames 10238 E assert 0 == (5119 * 2) E + where 0 = int('0') E + and 5119 = int('5119') /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py:214: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8289' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_fragmentation">Starting testcase:test_ipv4_fragmentation from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=158] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=158] Local address: 172.17.0.4, port 43368 INFO asyncssh:logging.py:92 [conn=158] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=158] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=158] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:39:39 UTC 2087 INFO asyncssh:logging.py:92 [conn=158, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=158, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=158, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=158, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=158, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=158, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:39:39 UTC 2087 INFO asyncssh:logging.py:92 [conn=158, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=158, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=158, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=158, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=158, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 | frame size 1420 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 | frame size 1522 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6d2860>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 | frame size 1420 SIP-DIP 1.1.1.2-2.2.2.2 Tx 5119 Rx 5119 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 | frame size 1420 SIP-DIP 2.2.2.2-1.1.1.2 Tx 5119 Rx 5119 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 | frame size 1522 SIP-DIP 3.3.3.2-4.4.4.2 Tx 5119 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 | frame size 1522 SIP-DIP 4.4.4.2-3.3.3.2 Tx 5119 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_fragmentation from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py INFO asyncssh:logging.py:92 [conn=158, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=158, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=158, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:41:48 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:41:48 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=158, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=158, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=158, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=158, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=158, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=158, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=158, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=158, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10000-full] | 11.16 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Can not run test in device infra1 with the speed: 10000') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-972' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10000-full]">Starting testcase:test_l1_forced_speed_[10000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=18] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=18] Local address: 172.17.0.4, port 37950 INFO asyncssh:logging.py:92 [conn=18] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=18] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=18] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:13:37 UTC 2087 INFO asyncssh:logging.py:92 [conn=18, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=18, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=18, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=18, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=18, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=18, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=18, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=18, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=7] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=18, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=18, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=18, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=18, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=18, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=18, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=18, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:13:47 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=18, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=18, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=16] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=18, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:13:47 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=18, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:13:48 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=18, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=18, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=18, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_port_state.py::test_l1_link_up_state_software_power_cycle | 0.00 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py', 95, 'Skipped: https://github.com/dentproject/dentOS/issues/152') -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_link_up_state_software_power_cycle from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py | |||
| Skipped | functional/ecmp/test_ecmp.py::test_ecmp_distribution_lags | 91.96 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py', 520, 'Skipped: System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6018' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_distribution_lags">Starting testcase:test_ecmp_distribution_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=98] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=98] Local address: 172.17.0.4, port 56054 INFO asyncssh:logging.py:92 [conn=98] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=98] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=98] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:06:44 UTC 2087 INFO asyncssh:logging.py:92 [conn=98, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=98, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=98, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=98, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=98, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=98, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:06:44 UTC 2087 INFO asyncssh:logging.py:92 [conn=98, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add name bond1 type bond mode 802.3ad && ip link add name bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=98, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=8] Command: ip link add name bond1 type bond mode 802.3ad && ip link add name bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=98, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=98, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=10] Command: ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=98, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master bond1 && ip link set dev swp35 master bond2 && ip link set dev swp36 master bond2 INFO asyncssh:logging.py:92 [conn=98, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=12] Command: ip link set dev swp34 master bond1 && ip link set dev swp35 master bond2 && ip link set dev swp36 master bond2 INFO asyncssh:logging.py:92 [conn=98, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev bond1 up && ip link set dev bond2 up INFO asyncssh:logging.py:92 [conn=98, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=14] Command: ip link set dev swp33 up && ip link set dev bond1 up && ip link set dev bond2 up INFO asyncssh:logging.py:92 [conn=98, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev bond1 && ip address add 12.0.0.1/16 dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=16] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev bond1 && ip address add 12.0.0.1/16 dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag bond1 with ports ['/api/v1/sessions/60/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'bond1_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:2']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag bond2 with ports ['/api/v1/sessions/60/ixnetwork/vport/3', '/api/v1/sessions/60/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'bond2_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:3', '10.36.118.199:2:4']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=98, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev bond1 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev bond1 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=98, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=98, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=98, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=22] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=98, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=98, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=98, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=24] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=98, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_distribution_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=98, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=25] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=26] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=26] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:08:15 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:08:15 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=98, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=98, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=32] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=98, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=98, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=98, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":121,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":122,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=98, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=98, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=36] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=98, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=38] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:08:15 UTC 2087 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=98, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=98, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=40] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=98, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":4,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":4,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":4,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":121,"ifname":"bond1","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":122,"ifname":"bond2","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=98, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=98, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=42] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=98, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=98, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=44] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=98, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=44] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/lldp/test_lldp_tx_rx.py::test_lldp_lag | 90.01 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py', 331, 'Skipped: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10095' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_lag">Starting testcase:test_lldp_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=194, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=195] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=195] Local address: 172.17.0.4, port 33980 INFO asyncssh:logging.py:92 [conn=195] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=195] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=195] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:14:11 UTC 2087 INFO asyncssh:logging.py:92 [conn=195, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=195, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=195, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=195, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=195, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=195, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:14:11 UTC 2087 INFO asyncssh:logging.py:92 [conn=195, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=195, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=8] Command: ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=195, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=195, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=10] Command: ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=195, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=195, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=12] Command: ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=195, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=195, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=14] Command: ip link set dev swp33 up && ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=195, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag bond1 with ports ['/api/v1/sessions/60/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'bond1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:1']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=195, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=195, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=16] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=195, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure system bond-slave-src-mac-type real INFO asyncssh:logging.py:92 [conn=195, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=18] Command: lldpcli configure system bond-slave-src-mac-type real INFO asyncssh:logging.py:92 [conn=195, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=195, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=20] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=195, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "491" }, "rx": { "rx": "73" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "38" }, "delete_cnt": { "delete_cnt": "38" } } } } } INFO asyncssh:logging.py:92 [conn=195, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=195, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=22] Command: lldpcli configure ports swp33 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=195, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint bond1 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:15:40 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n'}}] INFO asyncssh:logging.py:92 [conn=195, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=25] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=195, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=26] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=195, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=27] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=195, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=28] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=195, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=28] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "real", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=195, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=29] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=195, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=30] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=195, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=31] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure system bond-slave-src-mac-type local INFO asyncssh:logging.py:92 [conn=195, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=32] Command: lldpcli configure system bond-slave-src-mac-type local INFO asyncssh:logging.py:92 [conn=195, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:15:41 UTC 2087 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=195, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=195, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=36] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=195, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-rr","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":78,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=195, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond0 INFO asyncssh:logging.py:92 [conn=195, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=38] Command: ip link delete bond0 INFO asyncssh:logging.py:92 [conn=195, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=195, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=40] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=195, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_advert.py::test_vrrp_advert_interval | 1.29 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16306' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_advert_interval">Starting testcase:test_vrrp_advert_interval from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_advert.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=298, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=299] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=299] Local address: 172.17.0.4, port 47620 INFO asyncssh:logging.py:92 [conn=299] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=299] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=299] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=299, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:25 UTC 2087 INFO asyncssh:logging.py:92 [conn=299, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=299, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=299, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=299, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=299, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=299, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=299, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=299, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:25 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_advert_interval from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_advert.py INFO asyncssh:logging.py:92 [conn=299, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=299, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:25 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=299, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=299, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=299, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=299, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=299, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=299, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=299, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=299, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:26 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=299, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=299, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=299, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=299, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=299, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=299, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=299, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=299, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=299, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=299, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=299, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=22] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:26 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=299, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=299, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=299, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=299, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=299, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=299, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=299, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=299, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=299, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=299, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=299, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=299, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=299, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=299, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=299, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=299, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=299, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=299, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=299, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=299, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=299, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=299, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=299, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=299, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=299, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=299, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=299, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=299, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=299, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=299, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=299, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=299, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=299, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=299, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=299, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=46] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=299, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=299, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=299, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=48] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=299, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=299, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=299, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=50] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=299, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=299, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=299, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=52] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=299, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=299, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=299, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=54] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=299, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=299, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=299, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=56] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=299, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=299, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=299, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=58] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=299, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=299, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=299, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=299, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=299, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=299, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=299, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=299, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=299, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=64] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=299, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=299, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Skipped | functional/vrrp/test_vrrp_advert.py::test_vrrp_advert_overflow | 1.08 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16387' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_advert_overflow">Starting testcase:test_vrrp_advert_overflow from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_advert.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=299, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=300] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=300] Local address: 172.17.0.4, port 47632 INFO asyncssh:logging.py:92 [conn=300] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=300] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=300] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=300, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:27 UTC 2087 INFO asyncssh:logging.py:92 [conn=300, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=300, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=300, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=300, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=300, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=300, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=300, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=300, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=300, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=300, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=300, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=300, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:27 UTC 2087 INFO asyncssh:logging.py:92 [conn=300, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=300, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=300, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=10] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=300, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=300, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=300, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=300, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=300, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:27 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_advert_overflow from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_advert.py INFO asyncssh:logging.py:92 [conn=300, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=300, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=16] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:27 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=300, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=300, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=300, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=18] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=300, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=300, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=300, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=300, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=300, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=22] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:27 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=300, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=300, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=24] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=300, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=300, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=300, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=26] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=300, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=300, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=300, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=28] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=300, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=300, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=29] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=300, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=30] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=300, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=300, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=300, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=32] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:27 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Skipped | functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_on[port] | 0.49 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16438' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_on[port]">Starting testcase:test_vrrp_basic_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=300, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=301] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=301] Local address: 172.17.0.4, port 47642 INFO asyncssh:logging.py:92 [conn=301] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=301] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=301] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=301, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:28 UTC 2087 INFO asyncssh:logging.py:92 [conn=301, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=301, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=301, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=301, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=301, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=301, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=301, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=301, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:28 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=301, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=301, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:28 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=301, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=301, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=301, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=301, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=301, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=301, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=301, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=301, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:28 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=301, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=301, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=301, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=301, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=301, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=301, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=301, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=301, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=301, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_on[bridge] | 0.56 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16473' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_on[bridge]">Starting testcase:test_vrrp_basic_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=301, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=302] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=302] Local address: 172.17.0.4, port 47650 INFO asyncssh:logging.py:92 [conn=302] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=302] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=302] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=302, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:28 UTC 2087 INFO asyncssh:logging.py:92 [conn=302, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=302, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=302, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=302, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=302, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=302, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=302, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=302, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:28 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=302, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=302, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:28 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=302, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=302, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=302, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=302, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=302, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=302, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=302, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=302, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:28 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=302, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=302, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=302, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=302, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=302, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=302, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=302, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=302, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=302, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_down_on[port] | 0.48 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16508' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_down_on[port]">Starting testcase:test_vrrp_basic_down_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=302, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=303] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=303] Local address: 172.17.0.4, port 46138 INFO asyncssh:logging.py:92 [conn=303] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=303] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=303] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=303, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:29 UTC 2087 INFO asyncssh:logging.py:92 [conn=303, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=303, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=303, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=303, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=303, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=303, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=303, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=303, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:29 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_down_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=303, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=303, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:29 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=303, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=303, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=303, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=303, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=303, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=303, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=303, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=303, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:29 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=303, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=303, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=303, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=303, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=303, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=303, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=303, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=303, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=303, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_down_on[bridge] | 0.49 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16543' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_down_on[bridge]">Starting testcase:test_vrrp_basic_down_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=303, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=304] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=304] Local address: 172.17.0.4, port 46148 INFO asyncssh:logging.py:92 [conn=304] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=304] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=304] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=304, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:29 UTC 2087 INFO asyncssh:logging.py:92 [conn=304, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=304, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=304, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=304, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=304, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=304, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=304, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=304, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:29 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_down_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=304, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=304, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:29 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=304, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=304, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=304, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=304, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=304, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=304, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=304, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=304, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:29 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=304, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=304, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=304, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=304, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=304, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=304, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=304, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=304, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=304, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_ifupdown.py::test_vrrp_ifupdown2 | 1.17 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_ifupdown.py', 85, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16578' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_ifupdown2">Starting testcase:test_vrrp_ifupdown2 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_ifupdown.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=304, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=305] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=305] Local address: 172.17.0.4, port 46164 INFO asyncssh:logging.py:92 [conn=305] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=305] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=305] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=305, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:30 UTC 2087 INFO asyncssh:logging.py:92 [conn=305, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=305, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=305, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=305, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=305, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=305, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=305, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=305, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:30 UTC 2087 INFO asyncssh:logging.py:92 [conn=305, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=7] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=305, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=8] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=305, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=8] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=305, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=9] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=305, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=10] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=305, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=305, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=305, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=12] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=305, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=12] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=305, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=305, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:30 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_ifupdown2 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_ifupdown.py INFO asyncssh:logging.py:92 [conn=305, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=15] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=305, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=16] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=305, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=305, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=17] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=305, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=18] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=305, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=18] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO asyncssh:logging.py:92 [conn=305, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=305, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=20] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:31 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=305, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=305, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=305, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=305, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=305, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=305, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=305, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=305, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=26] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:31 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=305, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=305, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=305, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=305, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=305, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=305, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=305, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=305, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=305, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=32] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_interact.py::test_vrrp_and_stp | 0.62 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_interact.py', 84, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16626' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_and_stp">Starting testcase:test_vrrp_and_stp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=305, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=306] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=306] Local address: 172.17.0.4, port 46178 INFO asyncssh:logging.py:92 [conn=306] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=306] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=306] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=306, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:31 UTC 2087 INFO asyncssh:logging.py:92 [conn=306, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=306, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=306, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=306, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=306, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=306, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=306, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=306, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:31 UTC 2087 INFO asyncssh:logging.py:92 [conn=306, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=306, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=306, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=8] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=306, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=306, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=306, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=306, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=306, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=12] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:31 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_and_stp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_interact.py INFO asyncssh:logging.py:92 [conn=306, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=306, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:31 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=306, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=306, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=306, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=306, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=17] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=306, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=18] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=306, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=18] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=306, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=306, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=20] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:31 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=306, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=306, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=22] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=306, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=306, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=306, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=24] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=306, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=306, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=306, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=26] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=306, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=306, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=27] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=306, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=28] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=306, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=28] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_interact.py::test_vrrp_and_acl | 1.45 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16677' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_and_acl">Starting testcase:test_vrrp_and_acl from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=306, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=307] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=307] Local address: 172.17.0.4, port 46186 INFO asyncssh:logging.py:92 [conn=307] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=307] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=307] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=307, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:32 UTC 2087 INFO asyncssh:logging.py:92 [conn=307, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=307, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=307, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=307, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=307, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=307, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=307, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=307, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:32 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_and_acl from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_interact.py INFO asyncssh:logging.py:92 [conn=307, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=307, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:32 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=307, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=307, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=307, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=307, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=307, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=307, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=307, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=307, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:32 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=307, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=307, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=307, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=307, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=307, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=307, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=307, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=307, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=307, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=307, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=307, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=22] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:32 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=307, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=307, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=307, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=307, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=307, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=307, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=307, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=307, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=307, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=307, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=307, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=307, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=307, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=307, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=307, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=307, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=307, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=307, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=307, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=307, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=307, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=307, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=307, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=307, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=307, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=307, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=307, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=307, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=307, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=307, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=307, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=307, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=307, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=307, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=307, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=46] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=307, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=307, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=307, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=48] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=307, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=307, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=307, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=50] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=307, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=307, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=307, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=52] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=307, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=307, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=307, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=54] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=307, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=307, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=307, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=56] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=307, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=307, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=307, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=58] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=307, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=307, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=307, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=307, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=307, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=307, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=307, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=307, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=307, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=64] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=307, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=307, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=307, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=65] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=307, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=66] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:33 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Skipped | functional/vrrp/test_vrrp_preempt.py::test_vrrp_preempt_on[port] | 0.48 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16761' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_preempt_on[port]">Starting testcase:test_vrrp_preempt_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_preempt.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=307, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=308] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=308] Local address: 172.17.0.4, port 46196 INFO asyncssh:logging.py:92 [conn=308] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=308] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=308] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=308, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:33 UTC 2087 INFO asyncssh:logging.py:92 [conn=308, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=308, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=308, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=308, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=308, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=308, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=308, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=308, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:33 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_preempt_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_preempt.py INFO asyncssh:logging.py:92 [conn=308, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=308, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:33 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=308, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=308, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=308, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=308, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=308, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=308, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=308, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=308, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:33 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=308, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=308, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=308, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=308, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=308, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=308, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=308, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=308, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=308, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_preempt.py::test_vrrp_preempt_on[bridge] | 0.47 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16796' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_preempt_on[bridge]">Starting testcase:test_vrrp_preempt_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_preempt.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=308, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=309] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=309] Local address: 172.17.0.4, port 46206 INFO asyncssh:logging.py:92 [conn=309] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=309] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=309] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=309, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:33 UTC 2087 INFO asyncssh:logging.py:92 [conn=309, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=309, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=309, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=309, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=309, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=309, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=309, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=309, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:34 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_preempt_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_preempt.py INFO asyncssh:logging.py:92 [conn=309, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=309, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:34 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=309, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=309, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=309, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=309, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=309, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=309, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=309, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=309, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:34 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=309, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=309, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=309, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=309, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=309, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=309, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=309, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=309, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=309, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_priority.py::test_vrrp_priority_on[port] | 0.48 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16831' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_priority_on[port]">Starting testcase:test_vrrp_priority_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=309, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=310] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=310] Local address: 172.17.0.4, port 46208 INFO asyncssh:logging.py:92 [conn=310] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=310] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=310] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=310, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:34 UTC 2087 INFO asyncssh:logging.py:92 [conn=310, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=310, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=310, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=310, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=310, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=310, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=310, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=310, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:34 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_priority_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py INFO asyncssh:logging.py:92 [conn=310, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=310, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:34 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=310, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=310, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=310, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=310, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=310, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=310, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=310, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=310, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:34 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=310, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=310, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=310, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=310, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=310, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=310, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=310, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=310, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=310, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_priority.py::test_vrrp_priority_on[bridge] | 0.48 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16866' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_priority_on[bridge]">Starting testcase:test_vrrp_priority_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=310, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=311] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=311] Local address: 172.17.0.4, port 46220 INFO asyncssh:logging.py:92 [conn=311] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=311] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=311] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=311, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:34 UTC 2087 INFO asyncssh:logging.py:92 [conn=311, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=311, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=311, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=311, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=311, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=311, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=311, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=311, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:35 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_priority_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py INFO asyncssh:logging.py:92 [conn=311, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=311, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:35 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=311, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=311, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=311, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=311, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=311, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=311, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=311, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=311, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:35 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=311, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=311, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=311, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=311, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=311, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=311, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=311, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=311, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=311, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_under_traffic.py::test_vrrp_under_traffic[bridge] | 0.78 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16901' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_under_traffic[bridge]">Starting testcase:test_vrrp_under_traffic[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_under_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=311, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=312] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=312] Local address: 172.17.0.4, port 46236 INFO asyncssh:logging.py:92 [conn=312] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=312] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=312] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=312, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:35 UTC 2087 INFO asyncssh:logging.py:92 [conn=312, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=312, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=312, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=312, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=312, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=312, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=312, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=312, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:35 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_under_traffic[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_under_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=312, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=312, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:35 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=312, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=312, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=10] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:35 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=312, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=312, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=312, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=12] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=312, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=312, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=14] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=312, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=312, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=312, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=16] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:35 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=312, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=312, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=312, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=312, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=312, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=312, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=312, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=312, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=312, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_under_traffic.py::test_vrrp_under_traffic[vlan] | 0.78 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16940' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_under_traffic[vlan]">Starting testcase:test_vrrp_under_traffic[vlan] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_under_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=312, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=313] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=313] Local address: 172.17.0.4, port 46238 INFO asyncssh:logging.py:92 [conn=313] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=313] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=313] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=313, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:36 UTC 2087 INFO asyncssh:logging.py:92 [conn=313, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=313, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=313, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=313, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=313, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=313, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=313, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=313, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:36 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_under_traffic[vlan] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_under_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=313, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=313, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:36 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=313, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=313, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=10] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:36 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=313, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=313, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=313, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=12] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=313, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=313, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=14] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=313, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=313, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=313, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=16] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:36 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=313, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=313, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=313, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=313, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=313, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=313, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=313, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=313, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=313, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_under_traffic.py::test_vrrp_under_traffic[port] | 0.79 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16979' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_under_traffic[port]">Starting testcase:test_vrrp_under_traffic[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_under_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=313, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=314] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=314] Local address: 172.17.0.4, port 46252 INFO asyncssh:logging.py:92 [conn=314] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=314] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=314] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=314, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:37 UTC 2087 INFO asyncssh:logging.py:92 [conn=314, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=314, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=314, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=314, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=314, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=314, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=314, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=314, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:37 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_under_traffic[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_under_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=314, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=314, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:37 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=314, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=314, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=10] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:37 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=314, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=314, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=314, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=12] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=314, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=314, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=14] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=314, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=314, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=314, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=16] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:37 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=314, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=314, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=314, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=314, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=314, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=314, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=314, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=314, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=314, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_vrouter.py::test_vrrp_master_and_backup | 0.50 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17018' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_master_and_backup">Starting testcase:test_vrrp_master_and_backup from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_vrouter.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=314, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=315] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=315] Local address: 172.17.0.4, port 46268 INFO asyncssh:logging.py:92 [conn=315] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=315] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=315] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=315, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:37 UTC 2087 INFO asyncssh:logging.py:92 [conn=315, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=315, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=315, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=315, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=315, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=315, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=315, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=315, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:37 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_master_and_backup from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_vrouter.py INFO asyncssh:logging.py:92 [conn=315, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=315, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:37 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=315, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=315, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=315, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=315, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=315, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=315, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=315, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=315, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:38 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=315, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=315, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=315, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=315, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=315, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=315, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=315, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=315, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=315, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_vrouter.py::test_vrrp_multiple_addr | 0.79 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17054' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_multiple_addr">Starting testcase:test_vrrp_multiple_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_vrouter.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=315, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=316] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=316] Local address: 172.17.0.4, port 46276 INFO asyncssh:logging.py:92 [conn=316] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=316] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=316] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=316, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:38 UTC 2087 INFO asyncssh:logging.py:92 [conn=316, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=316, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=316, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=316, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=316, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=316, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=316, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=316, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:38 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_multiple_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_vrouter.py INFO asyncssh:logging.py:92 [conn=316, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=316, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:38 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=316, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=316, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=316, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=316, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=316, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=316, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=316, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=316, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:38 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=316, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=316, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=316, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=316, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=316, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=316, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=316, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=316, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=316, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=316, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=316, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=22] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:38 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Skipped | functional/vrrp/test_vrrp_vrouter.py::test_vrrp_max_instances | 0.84 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17093' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_max_instances">Starting testcase:test_vrrp_max_instances from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_vrouter.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=316, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=317] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=317] Local address: 172.17.0.4, port 56986 INFO asyncssh:logging.py:92 [conn=317] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=317] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=317] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=317, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:39 UTC 2087 INFO asyncssh:logging.py:92 [conn=317, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=317, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=317, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=317, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=317, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=317, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=317, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=317, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:39 UTC 2087 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_max_instances from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_vrouter.py INFO asyncssh:logging.py:92 [conn=317, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=317, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:39 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=317, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=317, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=317, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=317, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=317, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=317, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=317, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=317, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:39 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=317, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=317, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=317, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=317, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=317, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=317, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=317, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=317, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=317, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=317, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=317, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=22] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:39 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[10-full] | 149.98 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[10-full]">Starting testcase:test_l1_autodetect[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=0, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=1] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=1] Local address: 172.17.0.4, port 50248 INFO asyncssh:logging.py:92 [conn=1] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=1] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=1] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:20:39 UTC 2087 INFO asyncssh:logging.py:92 [conn=1, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=1, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=1, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=1, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=1, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=1, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=1, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=1, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=1, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=1, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=1, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:20:50 UTC 2087 INFO asyncssh:logging.py:92 [conn=1, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=1, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=1, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=1, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=1, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=1, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=1, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=1, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=1, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=1, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 10 autoneg off duplex full && ethtool -s swp34 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=1, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=26] Command: ethtool -s swp33 speed 10 autoneg off duplex full && ethtool -s swp34 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=1, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=1, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad736350>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 4491 Rx 4486 Loss 0.111 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 4491 Rx 4491 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=1, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=1, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=1, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:23:09 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=1, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:23:09 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=1, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=1, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=1, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":58,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=1, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=1, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=1, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[10-half] | 248.75 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-72' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[10-half]">Starting testcase:test_l1_autodetect[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=2] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=2] Local address: 172.17.0.4, port 32774 INFO asyncssh:logging.py:92 [conn=2] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=2] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=2] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:23:09 UTC 2087 INFO asyncssh:logging.py:92 [conn=2, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=2, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=2, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=2, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=2, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=2, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=2, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=2, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=2, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=2, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=2, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=10] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:23:20 UTC 2087 INFO asyncssh:logging.py:92 [conn=2, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=2, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=2, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=2, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=2, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=2, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=2, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=2, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=2, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=2, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 10 autoneg off duplex half && ethtool -s swp34 speed 10 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=2, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=26] Command: ethtool -s swp33 speed 10 autoneg off duplex half && ethtool -s swp34 speed 10 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=2, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=2, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad736590>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6315 Rx 6315 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7aebf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 5016 Rx 5016 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=2, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=2, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=2, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:27:17 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=2, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:27:18 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=2, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=2, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=2, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=2, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=2, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=2, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[100-full] | 183.27 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-128' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[100-full]">Starting testcase:test_l1_autodetect[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=3] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=3] Local address: 172.17.0.4, port 35444 INFO asyncssh:logging.py:92 [conn=3] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=3] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=3] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:27:18 UTC 2087 INFO asyncssh:logging.py:92 [conn=3, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=3, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=3, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=3, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=3, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=3, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=3, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=7] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=3, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=3, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=3, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=3, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:27:29 UTC 2087 INFO asyncssh:logging.py:92 [conn=3, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=3, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=3, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=3, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=3, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=3, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=3, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=3, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=3, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=3, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=3, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=26] Command: ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=3, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=3, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49adc320b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6389 Rx 5632 Loss 11.848 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 48824 Rx 48181 Loss 1.317 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=3, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=3, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=3, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:30:21 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=3, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:30:21 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=3, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=3, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=3, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":60,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=3, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=3, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=3, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[100-half] | 251.61 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-184' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[100-half]">Starting testcase:test_l1_autodetect[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=4] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=4] Local address: 172.17.0.4, port 57378 INFO asyncssh:logging.py:92 [conn=4] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=4] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=4] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:30:22 UTC 2087 INFO asyncssh:logging.py:92 [conn=4, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=4, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=4, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=4, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=4, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=4, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=4, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=4, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=4, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=4, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=4, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=10] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:30:32 UTC 2087 INFO asyncssh:logging.py:92 [conn=4, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=4, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=4, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=4, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=4, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=4, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=4, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=4, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=4, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=4, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 100 autoneg off duplex half && ethtool -s swp34 speed 100 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=4, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=26] Command: ethtool -s swp33 speed 100 autoneg off duplex half && ethtool -s swp34 speed 100 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=4, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=4, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7afaf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 47688 Rx 47688 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7af6a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 49903 Rx 49903 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=4, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=4, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=4, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:34:32 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=4, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:34:33 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=4, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=4, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=4, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":61,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=4, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=4, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=4, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[1000-full] | 184.42 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-240' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[1000-full]">Starting testcase:test_l1_autodetect[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=5] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=5] Local address: 172.17.0.4, port 55862 INFO asyncssh:logging.py:92 [conn=5] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=5] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=5] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:34:33 UTC 2087 INFO asyncssh:logging.py:92 [conn=5, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=5, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=5, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=5, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=5, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=5, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=7] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=5, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=5, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=5, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=5, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:34:43 UTC 2087 INFO asyncssh:logging.py:92 [conn=5, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=5, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=5, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=5, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=5, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=5, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=26] Command: ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=5, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=5, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49adc32b90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 687399 Rx 687399 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 687399 Rx 687399 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=5, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=5, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=5, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:37:37 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=5, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:37:37 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=5, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=5, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=5, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":62,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=5, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=5, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=5, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[10-full] | 177.93 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-296' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[10-full]">Starting testcase:test_l1_autoneg[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=6] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=6] Local address: 172.17.0.4, port 53936 INFO asyncssh:logging.py:92 [conn=6] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=6] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=6] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:37:38 UTC 2087 INFO asyncssh:logging.py:92 [conn=6, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=6, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=6, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=6, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=6, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=6, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=6, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=6, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=6, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=6, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=6, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:37:48 UTC 2087 INFO asyncssh:logging.py:92 [conn=6, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=6, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=6, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=6, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=6, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=6, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=6, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=6, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=6, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=6, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 10 autoneg on duplex full advertise 0x002 && ethtool -s swp34 speed 10 autoneg on duplex full advertise 0x002 INFO asyncssh:logging.py:92 [conn=6, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=26] Command: ethtool -s swp33 speed 10 autoneg on duplex full advertise 0x002 && ethtool -s swp34 speed 10 autoneg on duplex full advertise 0x002 INFO asyncssh:logging.py:92 [conn=6, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=6, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 10Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 10Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7c1a80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6992 Rx 6992 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 6992 Rx 6992 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=6, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=6, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=6, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:40:35 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=6, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:40:35 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=6, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=6, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=6, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":63,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=6, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=6, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=6, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[10-half] | 245.19 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-352' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[10-half]">Starting testcase:test_l1_autoneg[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=7] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=7] Local address: 172.17.0.4, port 44110 INFO asyncssh:logging.py:92 [conn=7] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=7] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=7] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:40:36 UTC 2087 INFO asyncssh:logging.py:92 [conn=7, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=7, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=7, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=7, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=7, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=7, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=7, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=7, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=7, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=7, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=7, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=10] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:40:46 UTC 2087 INFO asyncssh:logging.py:92 [conn=7, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=7, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=7, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=7, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=7, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=7, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=7, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=7, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=7, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=7, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 10 autoneg on duplex half advertise 0x001 && ethtool -s swp34 speed 10 autoneg on duplex half advertise 0x001 INFO asyncssh:logging.py:92 [conn=7, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=26] Command: ethtool -s swp33 speed 10 autoneg on duplex half advertise 0x001 && ethtool -s swp34 speed 10 autoneg on duplex half advertise 0x001 INFO asyncssh:logging.py:92 [conn=7, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=7, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49adc322c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 4982 Rx 4982 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7c1b10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 4823 Rx 4823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=7, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=7, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=7, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:44:40 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=7, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:44:40 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=7, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=7, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=7, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":64,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=7, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=7, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=7, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[100-full] | 182.13 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-408' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[100-full]">Starting testcase:test_l1_autoneg[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=8] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=8] Local address: 172.17.0.4, port 36430 INFO asyncssh:logging.py:92 [conn=8] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=8] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=8] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:44:41 UTC 2087 INFO asyncssh:logging.py:92 [conn=8, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=8, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=8, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=8, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=8, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=8, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=9] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=8, chan=11] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=8, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=8, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=8, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=10] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:44:51 UTC 2087 INFO asyncssh:logging.py:92 [conn=8, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=8, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=8, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=8, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=8, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 100 autoneg on duplex full advertise 0x008 && ethtool -s swp34 speed 100 autoneg on duplex full advertise 0x008 INFO asyncssh:logging.py:92 [conn=8, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=26] Command: ethtool -s swp33 speed 100 autoneg on duplex full advertise 0x008 && ethtool -s swp34 speed 100 autoneg on duplex full advertise 0x008 INFO asyncssh:logging.py:92 [conn=8, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=8, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7c2590>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 67119 Rx 67119 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 67119 Rx 67119 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=8, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=8, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=8, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:47:42 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=8, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:47:42 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=8, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=8, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=8, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":65,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=8, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=8, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=8, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[100-half] | 247.47 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-464' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[100-half]">Starting testcase:test_l1_autoneg[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=9] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=9] Local address: 172.17.0.4, port 37328 INFO asyncssh:logging.py:92 [conn=9] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=9] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=9] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:47:43 UTC 2087 INFO asyncssh:logging.py:92 [conn=9, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=9, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=9, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=9, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=9, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=9, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=9, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=7] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=9, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=9, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=9, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=9, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:47:53 UTC 2087 INFO asyncssh:logging.py:92 [conn=9, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=9, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=9, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=9, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=9, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=9, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=9, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=9, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=9, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=9, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 100 autoneg on duplex half advertise 0x004 && ethtool -s swp34 speed 100 autoneg on duplex half advertise 0x004 INFO asyncssh:logging.py:92 [conn=9, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=26] Command: ethtool -s swp33 speed 100 autoneg on duplex half advertise 0x004 && ethtool -s swp34 speed 100 autoneg on duplex half advertise 0x004 INFO asyncssh:logging.py:92 [conn=9, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=9, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Half Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Half Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7acb80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 48037 Rx 48037 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7af190>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 46730 Rx 46730 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=9, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=9, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=9, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:51:50 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=9, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:51:50 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=9, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=9, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=9, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":66,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=9, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=9, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=9, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[1000-full] | 179.50 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-520' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[1000-full]">Starting testcase:test_l1_autoneg[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=10] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=10] Local address: 172.17.0.4, port 38574 INFO asyncssh:logging.py:92 [conn=10] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=10] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=10] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:51:50 UTC 2087 INFO asyncssh:logging.py:92 [conn=10, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=10, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=10, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=10, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=10, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=10, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=10, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=10, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=10, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=10, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:52:01 UTC 2087 INFO asyncssh:logging.py:92 [conn=10, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=10, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=10, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=10, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=10, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 1000 autoneg on duplex full advertise 0x020 && ethtool -s swp34 speed 1000 autoneg on duplex full advertise 0x020 INFO asyncssh:logging.py:92 [conn=10, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=26] Command: ethtool -s swp33 speed 1000 autoneg on duplex full advertise 0x020 && ethtool -s swp34 speed 1000 autoneg on duplex full advertise 0x020 INFO asyncssh:logging.py:92 [conn=10, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=10, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7ae3e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 667554 Rx 667554 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 667554 Rx 667554 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=10, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=10, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=10, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:54:49 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=10, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:54:49 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=10, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=10, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=10, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":67,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=10, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=10, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=10, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_config.py::test_l1_settings_[autodetect] | 55.96 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-576' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_settings_[autodetect]">Starting testcase:test_l1_settings_[autodetect] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=11] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=11] Local address: 172.17.0.4, port 33886 INFO asyncssh:logging.py:92 [conn=11] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=11] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=11] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:54:50 UTC 2087 INFO asyncssh:logging.py:92 [conn=11, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=11, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=11, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=11, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=11, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=11, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=11, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:55:00 UTC 2087 INFO asyncssh:logging.py:92 [conn=11, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=20] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=20] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=22] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=22] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=11, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=24] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=11, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=11, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=11, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=26] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=11, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=11, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 INFO asyncssh:logging.py:92 [conn=11, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=28] Command: ip link set dev swp33 up master br0 INFO asyncssh:logging.py:92 [conn=11, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=11, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 1000 duplex full INFO asyncssh:logging.py:92 [conn=11, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=30] Command: ethtool -s swp33 speed 1000 duplex full INFO asyncssh:logging.py:92 [conn=11, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] list index out of range INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=11, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=32] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=32] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_settings_[autodetect] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py INFO asyncssh:logging.py:92 [conn=11, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=33] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=11, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=34] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=11, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:55:45 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=11, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=38] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:55:46 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=11, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=11, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=11, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":68,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=11, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=11, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=42] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=11, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=42] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_config.py::test_l1_settings_[autoneg] | 48.55 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-634' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_settings_[autoneg]">Starting testcase:test_l1_settings_[autoneg] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=12] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=12] Local address: 172.17.0.4, port 46766 INFO asyncssh:logging.py:92 [conn=12] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=12] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=12] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:55:46 UTC 2087 INFO asyncssh:logging.py:92 [conn=12, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=12, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=12, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=12, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=12, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=12, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=12, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=11] Received channel close DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:55:56 UTC 2087 INFO asyncssh:logging.py:92 [conn=12, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=20] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=20] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=22] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=22] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=12, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=24] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=12, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=12, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=12, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=26] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=12, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=12, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 INFO asyncssh:logging.py:92 [conn=12, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=28] Command: ip link set dev swp33 up master br0 INFO asyncssh:logging.py:92 [conn=12, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=12, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 0x020 INFO asyncssh:logging.py:92 [conn=12, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=30] Command: ethtool -s swp33 autoneg on advertise 0x020 INFO asyncssh:logging.py:92 [conn=12, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] list index out of range INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=12, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=32] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=32] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_settings_[autoneg] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py INFO asyncssh:logging.py:92 [conn=12, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=33] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=12, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=34] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=12, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:56:34 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=12, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=38] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:56:34 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=12, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=12, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=12, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":69,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=12, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=12, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=42] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=12, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=42] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10-full] | 170.67 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-692' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10-full]">Starting testcase:test_l1_forced_speed_[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=13] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=13] Local address: 172.17.0.4, port 42904 INFO asyncssh:logging.py:92 [conn=13] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=13] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=13] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:56:34 UTC 2087 INFO asyncssh:logging.py:92 [conn=13, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=13, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=13, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=13, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=13, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=13, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=13, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=9] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=13, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=13, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=13, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=13, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:56:45 UTC 2087 INFO asyncssh:logging.py:92 [conn=13, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=13, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=13, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=13, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=13, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=13, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=13, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=13, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=13, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=13, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 10 autoneg off duplex full && ethtool -s swp34 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=13, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=26] Command: ethtool -s swp33 speed 10 autoneg off duplex full && ethtool -s swp34 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=13, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to 10 on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to 10 on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=13, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6156c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6688 Rx 6688 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 6688 Rx 6688 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=13, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=13, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=13, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:59:24 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=13, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:59:25 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=13, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=13, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=13, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":70,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=13, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=13, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=13, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10-half] | 247.43 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-748' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10-half]">Starting testcase:test_l1_forced_speed_[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=14] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=14] Local address: 172.17.0.4, port 59594 INFO asyncssh:logging.py:92 [conn=14] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=14] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=14] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:59:25 UTC 2087 INFO asyncssh:logging.py:92 [conn=14, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=14, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=14, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=14, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=14, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=14, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=14, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=14, chan=11] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=14, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=14, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=14, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 10:59:35 UTC 2087 INFO asyncssh:logging.py:92 [conn=14, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=14, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=14, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=14, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=14, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=14, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=14, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=14, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=14, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=14, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 10 autoneg off duplex half && ethtool -s swp34 speed 10 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=14, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=26] Command: ethtool -s swp33 speed 10 autoneg off duplex half && ethtool -s swp34 speed 10 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=14, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to 10 on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to 10 on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=14, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad614c40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 4858 Rx 4858 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad615a50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 4773 Rx 4773 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=14, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=14, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=14, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:03:32 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=14, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:03:32 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=14, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=14, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=14, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":71,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=14, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=14, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=14, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[100-full] | 178.63 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-804' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[100-full]">Starting testcase:test_l1_forced_speed_[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=15] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=15] Local address: 172.17.0.4, port 49084 INFO asyncssh:logging.py:92 [conn=15] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=15] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=15] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:03:33 UTC 2087 INFO asyncssh:logging.py:92 [conn=15, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=15, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=15, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=15, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=15, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=15, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=7] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=15, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=15, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=15, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=15, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=10] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:03:43 UTC 2087 INFO asyncssh:logging.py:92 [conn=15, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=15, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=15, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=15, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=15, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=15, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=26] Command: ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=15, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 100 on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 100 on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=15, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad616470>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 46009 Rx 46009 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 46009 Rx 46009 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=15, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=15, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=15, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:06:30 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=15, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:06:31 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=15, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=15, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=15, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":72,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=15, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=15, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=15, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[100-half] | 248.59 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-860' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[100-half]">Starting testcase:test_l1_forced_speed_[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=16] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=16] Local address: 172.17.0.4, port 49478 INFO asyncssh:logging.py:92 [conn=16] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=16] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=16] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:06:31 UTC 2087 INFO asyncssh:logging.py:92 [conn=16, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=16, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=16, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=16, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=16, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=16, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=16, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=16, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=16, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=16, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=16, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=10] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:06:41 UTC 2087 INFO asyncssh:logging.py:92 [conn=16, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=16, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=16, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=16, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=16, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=16, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=16, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=16, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=16, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=16, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 100 autoneg off duplex half && ethtool -s swp34 speed 100 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=16, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=26] Command: ethtool -s swp33 speed 100 autoneg off duplex half && ethtool -s swp34 speed 100 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=16, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 100 on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 100 on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=16, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7c32b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 48623 Rx 48623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7c3fa0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 49403 Rx 49403 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=16, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=16, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=16, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:10:39 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=16, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:10:39 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=16, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=16, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=16, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":73,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=16, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=16, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=16, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[1000-full] | 177.10 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-916' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[1000-full]">Starting testcase:test_l1_forced_speed_[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=17] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=17] Local address: 172.17.0.4, port 43160 INFO asyncssh:logging.py:92 [conn=17] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=17] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=17] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:10:40 UTC 2087 INFO asyncssh:logging.py:92 [conn=17, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=17, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=17, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=17, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=17, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=17, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=9] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=17, chan=11] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=17, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=9] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=10] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=17, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=17, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:10:50 UTC 2087 INFO asyncssh:logging.py:92 [conn=17, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=17, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=17, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=17, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=17, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=17, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=26] Command: ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=17, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to 1000 on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to 1000 on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=17, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad617640>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 488837 Rx 488837 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 488837 Rx 488837 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=17, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=17, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=17, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:13:36 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=17, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:13:36 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=17, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=17, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=17, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":74,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=17, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=17, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=17, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_mixed_speed.py::test_l1_mixed_speed | 217.00 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-1010' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_mixed_speed">Starting testcase:test_l1_mixed_speed from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=19] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=19] Local address: 172.17.0.4, port 45676 INFO asyncssh:logging.py:92 [conn=19] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=19] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=19] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:13:48 UTC 2087 INFO asyncssh:logging.py:92 [conn=19, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=19, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=19, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=19, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=19, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=19, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=9] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=11] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:13:58 UTC 2087 INFO asyncssh:logging.py:92 [conn=19, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=20] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=20] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=22] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=22] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=23] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=24] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=24] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=26] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=26] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=28] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=30] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=32] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=32] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=33] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=34] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=34] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=35] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=36] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=36] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=37] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=38] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=38] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=19, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=40] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=19, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=19, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=42] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=19, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=19, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=44] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=19, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=45] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=46] Command: ethtool -s swp33 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=47] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp34 speed 100 autoneg on duplex half INFO asyncssh:logging.py:92 [conn=19, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=48] Command: ethtool -s swp34 speed 100 autoneg on duplex half INFO asyncssh:logging.py:92 [conn=19, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=49] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp35 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=50] Command: ethtool -s swp35 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=51] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp36 autoneg off advertise 0x004 INFO asyncssh:logging.py:92 [conn=19, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=52] Command: ethtool -s swp36 autoneg off advertise 0x004 INFO asyncssh:logging.py:92 [conn=19, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> ('10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4') INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7ac520>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> ('10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4') SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 11749 Rx 11749 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 --> ('10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4') SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 11749 Rx 11749 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 --> ('10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4') SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 11748 Rx 11748 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_mixed_speed from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py INFO asyncssh:logging.py:92 [conn=19, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=53] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=19, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=54] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=19, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=56] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:17:23 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=19, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=57] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=58] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:17:25 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=19, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=19, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=60] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=19, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=60] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":75,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=19, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=19, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=62] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=19, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=62] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/L1/test_l1_port_state.py::test_l1_port_state_status | 5.61 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_port_state_status">Starting testcase:test_l1_port_state_status from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1087' coro=<test_l1_port_state_status() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py:92> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete It took 0:00:00.033839 to grep count of entities. It took 0:00:05.101867 to set entities to 'UP' state. -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=20] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=20] Local address: 172.17.0.4, port 37386 INFO asyncssh:logging.py:92 [conn=20] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=20] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=20] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=20, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:17:25 UTC 2087 INFO asyncssh:logging.py:92 [conn=20, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=1] Channel closed DEBUG infra1:Logger.py:156 ifconfig -a INFO asyncssh:logging.py:92 [conn=20, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=2] Command: ifconfig -a INFO asyncssh:logging.py:92 [conn=20, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=2] Channel closed DEBUG infra1:Logger.py:156 bond0: flags=5122<BROADCAST,MASTER,MULTICAST> mtu 1500 ether 6a:9d:56:71:01:29 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 dummy0: flags=130<BROADCAST,NOARP> mtu 1500 ether 7a:ec:48:4f:f1:9a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 842 bytes 42100 (41.1 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 842 bytes 42100 (41.1 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ma1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 10.36.118.46 netmask 255.255.255.0 broadcast 10.36.118.255 inet6 fe80::923c:b3ff:fe8b:ef34 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:34 txqueuelen 2048 (Ethernet) RX packets 11057 bytes 988968 (965.7 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 6850 bytes 855019 (834.9 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 sit0: flags=128<NOARP> mtu 1480 sit txqueuelen 1000 (IPv6-in-IPv4) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp1: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:37 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp2: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:38 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp3: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:39 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp4: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp5: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp6: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp7: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp8: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp9: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp10: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:40 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp11: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:41 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp12: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:42 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp13: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:43 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp14: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:44 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp15: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:45 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp16: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:46 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp17: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:47 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp18: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:48 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp19: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:49 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp20: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp21: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp22: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp23: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp24: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp25: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp26: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:50 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp27: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:51 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp28: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:52 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp29: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:53 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp30: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:54 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp31: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:55 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp32: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:56 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp33: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef57 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:57 txqueuelen 1000 (Ethernet) RX packets 2176668 bytes 1114363072 (1.0 GiB) RX errors 0 dropped 0 overruns 0 frame 629 TX packets 2184634 bytes 1118252080 (1.0 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp34: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef58 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:58 txqueuelen 1000 (Ethernet) RX packets 2184120 bytes 1118178944 (1.0 GiB) RX errors 0 dropped 0 overruns 0 frame 615 TX packets 2153595 bytes 1102395744 (1.0 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 1 swp35: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef59 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:59 txqueuelen 1000 (Ethernet) RX packets 8 bytes 512 (512.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 11964 bytes 6053278 (5.7 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp36: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef5a prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:5a txqueuelen 1000 (Ethernet) RX packets 8 bytes 512 (512.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 11960 bytes 6052340 (5.7 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp37: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp38: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp39: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp40: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp41: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp42: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:60 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp43: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:61 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp44: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:62 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp45: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:63 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp46: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:64 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp47: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:65 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp48: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:66 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp49: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:67 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp50: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:68 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp51: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:69 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp52: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:6a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 INFO asyncssh:logging.py:92 [conn=20, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=20, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=20, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=20, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=6] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=6] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=20, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_port_state_status from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=20, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=20, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=10] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:17:30 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[pass] | 179.54 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[pass]">Starting testcase:test_acl_skip_sw_hw_selector[pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1106' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=20, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=21] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=21] Local address: 172.17.0.4, port 47300 INFO asyncssh:logging.py:92 [conn=21] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=21] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=21] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:17:31 UTC 2087 INFO asyncssh:logging.py:92 [conn=21, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=21, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=21, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=21, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=21, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=21, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_sw action pass INFO asyncssh:logging.py:92 [conn=21, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=8] Command: tc filter add dev swp33 ingress pref 49000 flower skip_sw action pass INFO asyncssh:logging.py:92 [conn=21, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad616f50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 647 Rx 647 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=10] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":17,"stats":{"bytes":331264,"packets":647,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":331264,"hw_packets":647,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 647, Rx Frames: 647, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 647, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 647, packets = 647, expected = 647, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 647, hw_packets = 647, expected = 647, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=21, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_hw action pass INFO asyncssh:logging.py:92 [conn=21, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=14] Command: tc filter add dev swp33 ingress pref 49000 flower skip_hw action pass INFO asyncssh:logging.py:92 [conn=21, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7c13f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 974 Rx 974 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=16] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":17,"last_used":6,"first_used":16,"stats":{"bytes":482562,"packets":969,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 974, Rx Frames: 974, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 974, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 974, packets = 969, expected = 974, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=21, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=18] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower action pass INFO asyncssh:logging.py:92 [conn=21, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=20] Command: tc filter add dev swp33 ingress pref 49000 flower action pass INFO asyncssh:logging.py:92 [conn=21, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad63a170>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 971 Rx 971 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=22] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":17,"first_used":16,"stats":{"bytes":978718,"packets":1938,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":481566,"sw_packets":967,"hw_bytes":497152,"hw_packets":971,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 971, Rx Frames: 971, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 971, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 971, packets = 1938, expected = 1942, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 971, hw_packets = 971, expected = 971, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 971, sw_packets = 967, expected = 971, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=21, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:20:29 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=21, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=21, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=21, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":76,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=21, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=21, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:20:29 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=21, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=32] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:20:30 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=21, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=21, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=21, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=21, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=21, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=21, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=21, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=21, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=21, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=56] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=21, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=58] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=21, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=21, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=21, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=21, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=21, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=64] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=21, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[drop] | 180.67 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[drop]">Starting testcase:test_acl_skip_sw_hw_selector[drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1183' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=21, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=22] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=22] Local address: 172.17.0.4, port 46574 INFO asyncssh:logging.py:92 [conn=22] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=22] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=22] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:20:30 UTC 2087 INFO asyncssh:logging.py:92 [conn=22, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=22, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=22, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=22, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=22, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=22, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=22, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=8] Command: tc filter add dev swp33 ingress pref 49000 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=22, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad66a1d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 615 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=22, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=10] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":17,"stats":{"bytes":314880,"packets":615,"drops":615,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":314880,"hw_packets":615,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 615, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 615, drops = 615, expected = 615, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 615, packets = 615, expected = 615, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 615, hw_packets = 615, expected = 615, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=22, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_hw action drop INFO asyncssh:logging.py:92 [conn=22, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=14] Command: tc filter add dev swp33 ingress pref 49000 flower skip_hw action drop INFO asyncssh:logging.py:92 [conn=22, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7c3af0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 968 Rx 968 Loss 0.000 INFO asyncssh:logging.py:92 [conn=22, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=16] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":17,"last_used":6,"first_used":16,"stats":{"bytes":480570,"packets":965,"drops":965,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 968, Rx Frames: 968, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 968, drops = 965, expected = 968, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 968, packets = 965, expected = 968, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=22, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=18] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower action drop INFO asyncssh:logging.py:92 [conn=22, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=20] Command: tc filter add dev swp33 ingress pref 49000 flower action drop INFO asyncssh:logging.py:92 [conn=22, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7c0fa0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 968 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=22, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=22] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":17,"stats":{"bytes":495616,"packets":968,"drops":968,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":495616,"hw_packets":968,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 968, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 968, drops = 968, expected = 968, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 968, packets = 968, expected = 968, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 968, hw_packets = 968, expected = 968, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 968, sw_packets = 0, expected = 0, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=22, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:23:29 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=22, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=22, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=22, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":77,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=22, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=22, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:23:30 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=22, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=32] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:23:30 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=22, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=22, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=22, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=22, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=22, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=22, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=22, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=22, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=22, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=56] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=22, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=58] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=22, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=22, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=22, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=22, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=22, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=64] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=22, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[trap] | 176.60 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[trap]">Starting testcase:test_acl_skip_sw_hw_selector[trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1260' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=22, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=23] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=23] Local address: 172.17.0.4, port 60120 INFO asyncssh:logging.py:92 [conn=23] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=23] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=23] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:23:31 UTC 2087 INFO asyncssh:logging.py:92 [conn=23, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=23, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=23, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=23, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=23, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=23, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_sw action trap INFO asyncssh:logging.py:92 [conn=23, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=8] Command: tc filter add dev swp33 ingress pref 49000 flower skip_sw action trap INFO asyncssh:logging.py:92 [conn=23, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7c0a30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 623 Rx 623 Loss 0.000 INFO asyncssh:logging.py:92 [conn=23, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=10] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":318976,"packets":623,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":318976,"hw_packets":623,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 623, Rx Frames: 623, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 623, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 623, packets = 623, expected = 623, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 623, hw_packets = 623, expected = 623, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=23, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_hw action trap INFO asyncssh:logging.py:92 [conn=23, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=14] Command: tc filter add dev swp33 ingress pref 49000 flower skip_hw action trap INFO asyncssh:logging.py:92 [conn=23, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7c1c60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 976 Rx 976 Loss 0.000 INFO asyncssh:logging.py:92 [conn=23, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=16] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":17,"last_used":6,"first_used":16,"stats":{"bytes":483558,"packets":971,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 976, Rx Frames: 976, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 976, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 976, packets = 971, expected = 976, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=23, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=18] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower action trap INFO asyncssh:logging.py:92 [conn=23, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=20] Command: tc filter add dev swp33 ingress pref 49000 flower action trap INFO asyncssh:logging.py:92 [conn=23, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7ad7b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 966 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=23, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=22] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"first_used":16,"stats":{"bytes":975660,"packets":1932,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":481068,"sw_packets":966,"hw_bytes":494592,"hw_packets":966,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 966, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 966, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 966, packets = 1932, expected = 1932, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 966, hw_packets = 966, expected = 966, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 966, sw_packets = 966, expected = 966, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=23, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:26:26 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=23, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=23, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=23, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":78,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=23, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=23, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:26:27 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=23, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=32] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:26:27 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=23, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=23, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=23, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=23, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=23, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=23, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=23, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=23, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=23, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=56] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=23, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=58] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=23, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=23, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=23, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=23, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=23, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=64] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=23, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_rule_deletion | 15.96 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_rule_deletion">Starting testcase:test_acl_rule_deletion from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1337' coro=<test_acl_rule_deletion() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:198> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=23, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=24] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=24] Local address: 172.17.0.4, port 44750 INFO asyncssh:logging.py:92 [conn=24] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=24] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=24] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:26:28 UTC 2087 INFO asyncssh:logging.py:92 [conn=24, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=1] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=2] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=3] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 10000 flower src_mac 02:d2:e5:9d:12:58 dst_mac 02:e7:2e:19:e0:62 vlan_id 571 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10001 flower src_mac 02:53:28:a4:c2:f5 dst_mac 02:79:71:9e:32:8b src_ip 38.137.63.227 dst_ip 48.126.41.33 ip_proto udp src_port 2032 dst_port 18334 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10002 flower src_mac 02:59:4d:34:3d:19 dst_mac 02:29:d2:75:14:69 src_ip 121.163.187.99 dst_ip 118.176.106.152 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10003 flower src_mac 02:f2:37:c1:18:52 dst_mac 02:83:98:83:16:86 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10004 flower src_mac 02:d3:b3:e2:5d:b3 dst_mac 02:c9:69:03:f7:1e src_ip 53.235.161.111 dst_ip 69.22.212.173 ip_proto icmp code 40 type 18 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10005 flower src_mac 02:c2:39:a6:95:7c dst_mac 02:1b:3a:b2:9d:28 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10006 flower src_mac 02:29:f0:39:27:10 dst_mac 02:e7:60:fb:d6:ab src_ip 39.123.28.167 dst_ip 92.78.124.143 ip_proto tcp src_port 3911 dst_port 22693 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10007 flower src_mac 02:27:81:8b:7c:6c dst_mac 02:2b:1e:e3:2d:89 vlan_id 2121 vlan_ethtype ip src_ip 91.77.135.43 dst_ip 89.231.30.115 ip_proto tcp src_port 3796 dst_port 63658 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10008 flower src_mac 02:ed:ea:52:8e:88 dst_mac 02:3c:7b:2f:5d:6e action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10009 flower src_mac 02:72:ab:b2:fa:91 dst_mac 02:14:e0:76:2a:43 vlan_id 1229 vlan_ethtype 0x0800 src_ip 109.179.193.116 dst_ip 126.76.247.231 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10010 flower src_mac 02:fa:81:a6:90:1a dst_mac 02:24:b7:0e:b2:f6 vlan_id 2045 vlan_ethtype ip src_ip 110.175.252.249 dst_ip 30.57.211.64 ip_proto udp src_port 18734 dst_port 33227 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10011 flower src_mac 02:7b:95:1e:af:85 dst_mac 02:7a:3d:59:d9:a7 vlan_id 1040 vlan_ethtype ip src_ip 59.66.66.52 dst_ip 19.98.89.216 ip_proto tcp src_port 33660 dst_port 2095 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10012 flower src_mac 02:a0:7e:c0:eb:91 dst_mac 02:b3:86:77:e0:0f action drop && tc filter add dev swp33 ingress protocol ip pref 10013 flower src_mac 02:f3:ad:a4:72:03 dst_mac 02:7d:63:cc:7f:dd src_ip 72.73.71.62 dst_ip 120.232.120.200 ip_proto icmp code 183 type 16 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10014 flower src_mac 02:6a:a4:f4:d2:54 dst_mac 02:fb:8e:da:44:30 src_ip 64.215.41.92 dst_ip 119.9.184.41 ip_proto icmp code 99 type 13 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10015 flower src_mac 02:43:a6:fa:3d:46 dst_mac 02:a0:5e:24:62:f2 src_ip 31.155.98.84 dst_ip 48.87.41.111 ip_proto icmp code 79 type 15 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10016 flower src_mac 02:a5:d2:0a:5a:ef dst_mac 02:53:71:09:49:97 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10017 flower src_mac 02:09:dc:83:09:b6 dst_mac 02:c5:75:57:7f:5d vlan_id 177 vlan_ethtype 0x0800 src_ip 40.134.197.60 dst_ip 121.186.36.64 ip_proto tcp src_port 11327 dst_port 60373 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10018 flower src_mac 02:23:9e:37:f3:7f dst_mac 02:dd:7f:3c:28:db action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10019 flower src_mac 02:40:21:db:9f:83 dst_mac 02:c7:3c:b0:98:53 vlan_id 3386 vlan_ethtype ip src_ip 49.171.6.247 dst_ip 60.107.220.191 ip_proto udp src_port 39153 dst_port 58661 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10020 flower src_mac 02:0c:61:38:b1:ef dst_mac 02:66:d5:20:89:f1 vlan_id 316 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10021 flower src_mac 02:72:c8:b6:c5:57 dst_mac 02:aa:f8:a2:d8:86 src_ip 105.91.62.53 dst_ip 115.192.79.176 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10022 flower src_mac 02:eb:1b:26:2d:86 dst_mac 02:4a:8b:ec:6c:f0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10023 flower src_mac 02:da:c4:6e:54:cb dst_mac 02:71:90:8a:42:cb vlan_id 389 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10024 flower src_mac 02:06:2b:51:ca:83 dst_mac 02:2d:79:b2:2f:99 vlan_id 3848 vlan_ethtype ip src_ip 24.208.220.55 dst_ip 50.178.129.34 ip_proto tcp src_port 55397 dst_port 50746 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10025 flower src_mac 02:db:3f:00:2f:4d dst_mac 02:fc:89:e1:9e:86 vlan_id 3781 vlan_ethtype 0x0800 src_ip 82.82.64.227 dst_ip 32.198.8.125 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10026 flower src_mac 02:b1:7f:df:b7:99 dst_mac 02:3b:5e:f2:33:e6 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10027 flower src_mac 02:54:76:1c:43:17 dst_mac 02:7b:6b:db:33:03 vlan_id 3825 vlan_ethtype 0x0800 src_ip 53.158.111.148 dst_ip 116.48.37.141 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10028 flower src_mac 02:12:08:bc:68:21 dst_mac 02:a2:2a:4f:3f:6c vlan_id 472 vlan_ethtype ip src_ip 11.52.108.138 dst_ip 111.190.244.178 ip_proto udp src_port 34510 dst_port 43085 action drop && tc filter add dev swp33 ingress protocol ip pref 10029 flower src_mac 02:b3:a9:87:4f:20 dst_mac 02:eb:f8:1a:0c:6c src_ip 60.224.178.187 dst_ip 47.152.127.59 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10030 flower src_mac 02:a4:62:52:f0:c0 dst_mac 02:e7:6f:5e:99:41 vlan_id 893 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10031 flower src_mac 02:cf:fd:48:41:61 dst_mac 02:fb:ac:ee:8a:42 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10032 flower src_mac 02:cd:67:d4:7e:37 dst_mac 02:2e:de:7e:f2:ed action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10033 flower src_mac 02:0c:b1:6f:b8:cf dst_mac 02:de:0b:70:2a:43 vlan_id 3794 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10034 flower src_mac 02:11:04:df:30:13 dst_mac 02:0c:56:5e:a6:69 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10035 flower src_mac 02:d2:d7:a5:5c:9b dst_mac 02:79:70:51:42:30 vlan_id 845 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10036 flower src_mac 02:12:e0:4b:8c:27 dst_mac 02:df:42:03:1d:08 vlan_id 607 vlan_ethtype ip src_ip 124.33.241.238 dst_ip 115.54.234.57 ip_proto tcp src_port 13979 dst_port 27274 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10037 flower src_mac 02:bb:d6:84:b3:5f dst_mac 02:31:53:6c:fb:8f vlan_id 3203 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10038 flower src_mac 02:47:77:b6:1c:55 dst_mac 02:6d:a5:1e:5d:ba vlan_id 1259 vlan_ethtype ipv4 src_ip 73.89.225.122 dst_ip 115.106.198.235 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10039 flower src_mac 02:bd:83:87:4e:c2 dst_mac 02:89:de:1c:cb:bf vlan_id 1465 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10040 flower src_mac 02:95:3a:1a:10:74 dst_mac 02:88:71:fb:5f:36 src_ip 68.173.211.35 dst_ip 89.132.222.100 ip_proto tcp src_port 54855 dst_port 64031 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10041 flower src_mac 02:13:f4:f2:d3:25 dst_mac 02:9a:fb:ca:41:cb src_ip 88.221.240.213 dst_ip 109.8.103.48 ip_proto tcp src_port 47344 dst_port 6346 action drop && tc filter add dev swp33 ingress protocol ip pref 10042 flower src_mac 02:90:29:9a:9d:f7 dst_mac 02:9a:0b:88:01:fd src_ip 72.5.21.101 dst_ip 125.160.45.121 ip_proto tcp src_port 57227 dst_port 15593 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10043 flower src_mac 02:fb:b4:25:42:3a dst_mac 02:b3:d0:fc:02:a8 vlan_id 354 vlan_ethtype ipv4 src_ip 29.17.27.89 dst_ip 79.52.109.150 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10044 flower src_mac 02:60:e3:e5:ff:dc dst_mac 02:3e:bd:ec:98:1c src_ip 91.158.104.169 dst_ip 81.77.185.192 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10045 flower src_mac 02:41:0c:ce:61:12 dst_mac 02:55:40:5e:47:21 vlan_id 2516 vlan_ethtype 0x0800 src_ip 12.245.219.119 dst_ip 35.251.136.222 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10046 flower src_mac 02:e5:cd:ac:f6:e3 dst_mac 02:93:11:3f:72:95 vlan_id 637 vlan_ethtype ip src_ip 125.151.30.140 dst_ip 17.218.181.226 ip_proto tcp src_port 22137 dst_port 52994 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10047 flower src_mac 02:ad:09:d5:68:1c dst_mac 02:23:17:1e:1e:1e src_ip 54.30.98.180 dst_ip 124.104.236.227 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10048 flower src_mac 02:1a:bc:5c:86:11 dst_mac 02:83:d0:cc:14:38 vlan_id 1520 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10049 flower src_mac 02:71:99:70:7e:e2 dst_mac 02:13:7e:8a:93:e8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10050 flower src_mac 02:2b:fe:aa:20:de dst_mac 02:3c:ca:33:ec:fc vlan_id 641 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10051 flower src_mac 02:23:f7:97:f1:d6 dst_mac 02:2e:cc:e7:6c:3a vlan_id 3740 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10052 flower src_mac 02:c3:75:81:26:20 dst_mac 02:83:4a:5c:07:f0 src_ip 124.24.222.104 dst_ip 126.156.37.239 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10053 flower src_mac 02:aa:36:fe:7e:7d dst_mac 02:30:65:85:17:2c src_ip 29.95.176.96 dst_ip 46.64.81.194 ip_proto icmp code 16 type 3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10054 flower src_mac 02:a2:87:d6:ee:88 dst_mac 02:04:b9:b6:47:ec vlan_id 1856 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10055 flower src_mac 02:47:3c:9a:6c:94 dst_mac 02:22:a7:5a:48:1b src_ip 91.72.210.15 dst_ip 110.58.47.27 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10056 flower src_mac 02:c7:49:9f:49:d3 dst_mac 02:0f:b0:52:f0:69 vlan_id 4026 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10057 flower src_mac 02:30:4c:37:58:49 dst_mac 02:ef:e4:71:01:2f vlan_id 1471 vlan_ethtype ip src_ip 59.200.149.39 dst_ip 51.71.137.216 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10058 flower src_mac 02:c8:d3:14:ff:0e dst_mac 02:9e:1c:3d:ac:df src_ip 51.209.77.57 dst_ip 62.238.71.61 ip_proto icmp code 161 type 18 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10059 flower src_mac 02:a5:32:61:b2:df dst_mac 02:5d:03:2e:1d:1f action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10060 flower src_mac 02:05:25:53:d0:51 dst_mac 02:6b:d3:6a:99:c8 vlan_id 3349 vlan_ethtype ip src_ip 80.40.59.43 dst_ip 37.145.131.74 ip_proto tcp src_port 38517 dst_port 59470 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10061 flower src_mac 02:e8:4a:c8:21:39 dst_mac 02:3a:06:28:c5:e2 vlan_id 742 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10062 flower src_mac 02:74:3b:f8:f3:e6 dst_mac 02:c8:16:47:d9:a1 src_ip 100.13.77.1 dst_ip 119.94.54.86 ip_proto udp src_port 56973 dst_port 34540 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10063 flower src_mac 02:bf:5a:a3:f2:cd dst_mac 02:dd:a5:e7:a4:35 vlan_id 1102 vlan_ethtype 0x0800 src_ip 98.93.180.138 dst_ip 38.138.22.10 ip_proto udp src_port 1516 dst_port 50797 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10064 flower src_mac 02:ae:7a:44:e1:9c dst_mac 02:be:ad:30:35:fc src_ip 104.243.198.120 dst_ip 14.62.255.82 ip_proto icmp code 210 type 16 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10065 flower src_mac 02:9b:c8:f2:10:31 dst_mac 02:01:dc:e9:26:bf vlan_id 3128 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10066 flower src_mac 02:65:04:d3:af:70 dst_mac 02:93:8d:8f:0b:5d src_ip 83.15.248.197 dst_ip 77.64.153.102 ip_proto tcp src_port 30691 dst_port 39598 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10067 flower src_mac 02:e9:5b:5c:b2:bb dst_mac 02:af:c9:5d:f2:e1 vlan_id 1185 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10068 flower src_mac 02:1a:8c:aa:4e:67 dst_mac 02:23:e8:77:11:0a vlan_id 2117 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10069 flower src_mac 02:de:62:27:b8:6d dst_mac 02:1c:0b:99:0b:30 vlan_id 3260 vlan_ethtype ip src_ip 119.203.161.13 dst_ip 55.170.147.226 ip_proto tcp src_port 24978 dst_port 12809 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10070 flower src_mac 02:f8:95:9d:46:d5 dst_mac 02:f7:6e:ef:3f:50 vlan_id 627 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10071 flower src_mac 02:a7:8d:b4:56:43 dst_mac 02:b1:d8:e7:f7:f1 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10072 flower src_mac 02:55:3d:46:76:6e dst_mac 02:d8:be:92:27:75 vlan_id 2742 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10073 flower src_mac 02:71:01:00:f8:e1 dst_mac 02:ec:fe:dc:e9:95 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10074 flower src_mac 02:af:7b:aa:c7:25 dst_mac 02:19:de:2d:dc:b2 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10075 flower src_mac 02:47:13:60:52:a8 dst_mac 02:0c:91:f1:99:30 vlan_id 135 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10076 flower src_mac 02:bb:5c:3b:51:c7 dst_mac 02:d8:6a:de:9f:60 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10077 flower src_mac 02:e5:ce:95:51:73 dst_mac 02:eb:60:0f:4c:e2 vlan_id 1853 vlan_ethtype 0x0800 src_ip 88.130.133.126 dst_ip 26.82.90.176 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10078 flower src_mac 02:66:6d:48:cb:af dst_mac 02:56:ca:bb:8d:d2 vlan_id 2507 vlan_ethtype ipv4 src_ip 125.10.157.218 dst_ip 60.97.114.190 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10079 flower src_mac 02:a1:3b:92:39:33 dst_mac 02:86:7d:71:c8:04 src_ip 46.230.16.21 dst_ip 21.75.66.217 ip_proto udp src_port 61627 dst_port 61495 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10080 flower src_mac 02:6b:ba:63:d7:b0 dst_mac 02:69:e1:b6:e2:22 vlan_id 1133 vlan_ethtype 0x0800 src_ip 54.159.126.179 dst_ip 71.190.105.61 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10081 flower src_mac 02:f1:20:69:4e:97 dst_mac 02:5e:59:81:58:a5 vlan_id 16 vlan_ethtype 0x0800 src_ip 111.204.135.191 dst_ip 36.89.117.158 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10082 flower src_mac 02:7e:14:b8:e5:d5 dst_mac 02:22:dc:4d:b2:e8 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10083 flower src_mac 02:e6:07:e8:43:97 dst_mac 02:2e:53:2a:f3:54 vlan_id 666 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10084 flower src_mac 02:46:f4:33:a0:90 dst_mac 02:aa:77:08:c8:db vlan_id 2407 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10085 flower src_mac 02:08:6e:96:35:40 dst_mac 02:9e:76:d2:52:4d action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10086 flower src_mac 02:df:b9:3b:be:73 dst_mac 02:9a:92:88:ec:49 vlan_id 433 vlan_ethtype ip src_ip 27.117.14.193 dst_ip 20.227.20.85 ip_proto udp src_port 4892 dst_port 11833 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10087 flower src_mac 02:df:5a:8b:82:c7 dst_mac 02:8b:ed:86:77:d2 vlan_id 3062 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10088 flower src_mac 02:5b:92:c8:71:b7 dst_mac 02:93:9e:b1:cd:69 vlan_id 270 vlan_ethtype ip src_ip 77.240.47.211 dst_ip 118.199.251.232 ip_proto tcp src_port 58912 dst_port 18269 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10089 flower src_mac 02:54:b2:cc:05:ed dst_mac 02:1b:60:d5:5a:cd vlan_id 2223 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10090 flower src_mac 02:19:18:7c:ab:26 dst_mac 02:f8:66:63:24:4d vlan_id 1256 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10091 flower src_mac 02:ae:a6:5d:e3:b1 dst_mac 02:50:4e:04:2c:4c src_ip 46.68.88.37 dst_ip 43.59.62.65 ip_proto tcp src_port 40062 dst_port 55968 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10092 flower src_mac 02:0f:65:de:f1:19 dst_mac 02:8a:ea:d8:2c:bf vlan_id 565 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10093 flower src_mac 02:48:57:16:0c:fd dst_mac 02:c4:55:dc:12:1e vlan_id 1544 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10094 flower src_mac 02:91:27:56:74:83 dst_mac 02:a0:16:a1:ba:18 vlan_id 1385 vlan_ethtype 0x0800 src_ip 91.178.69.105 dst_ip 107.118.126.63 action pass && tc filter add dev swp33 ingress protocol ip pref 10095 flower src_mac 02:ae:c8:73:f1:08 dst_mac 02:6d:22:18:49:44 src_ip 40.23.70.11 dst_ip 32.46.144.125 action drop && tc filter add dev swp33 ingress protocol ip pref 10096 flower src_mac 02:07:08:1a:ab:7c dst_mac 02:d6:76:60:4c:39 src_ip 92.178.45.119 dst_ip 121.153.180.235 ip_proto tcp src_port 10330 dst_port 29782 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10097 flower src_mac 02:5c:e1:50:30:a7 dst_mac 02:61:c7:20:5b:55 vlan_id 2182 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10098 flower src_mac 02:0e:fe:08:30:f5 dst_mac 02:c5:d7:4c:10:12 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10099 flower src_mac 02:b8:38:02:f4:67 dst_mac 02:97:e7:fe:30:67 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10100 flower src_mac 02:bd:a4:c4:50:74 dst_mac 02:77:41:97:d6:dd vlan_id 1120 vlan_ethtype ip src_ip 44.226.253.218 dst_ip 24.113.156.143 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10101 flower src_mac 02:57:19:fc:20:a8 dst_mac 02:84:78:c7:d3:fe vlan_id 3099 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10102 flower src_mac 02:0c:ea:93:a2:0c dst_mac 02:26:b2:01:f1:81 vlan_id 287 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10103 flower src_mac 02:c2:83:68:5c:32 dst_mac 02:cb:c9:c5:db:38 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10104 flower src_mac 02:0c:00:70:16:9b dst_mac 02:2a:56:a8:5f:01 vlan_id 3276 vlan_ethtype ipv4 src_ip 113.163.168.197 dst_ip 118.159.25.233 ip_proto tcp src_port 13424 dst_port 52365 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10105 flower src_mac 02:f3:4f:46:fc:aa dst_mac 02:0e:8d:3b:c7:45 vlan_id 2820 vlan_ethtype ipv4 src_ip 59.167.239.67 dst_ip 16.31.252.24 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10106 flower src_mac 02:32:cd:cb:85:68 dst_mac 02:e1:74:09:f7:85 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10107 flower src_mac 02:07:f1:f4:1f:3c dst_mac 02:ec:96:ed:60:ca src_ip 95.8.193.22 dst_ip 124.12.77.105 ip_proto icmp code 247 type 0 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10108 flower src_mac 02:ec:3e:be:58:32 dst_mac 02:d9:a6:47:d9:df vlan_id 3149 vlan_ethtype ipv4 src_ip 43.49.210.247 dst_ip 125.85.86.124 ip_proto udp src_port 1859 dst_port 55294 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10109 flower src_mac 02:e3:98:d9:83:00 dst_mac 02:00:bb:b1:a2:16 src_ip 62.134.164.211 dst_ip 67.171.182.179 ip_proto udp src_port 36748 dst_port 17618 action drop && tc filter add dev swp33 ingress protocol ip pref 10110 flower src_mac 02:fd:fb:2f:e5:9d dst_mac 02:f9:1f:e9:36:af src_ip 118.141.205.36 dst_ip 57.141.87.249 ip_proto udp src_port 3740 dst_port 26392 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10111 flower src_mac 02:07:17:18:2f:7f dst_mac 02:a2:56:a8:26:97 src_ip 36.39.15.12 dst_ip 96.47.148.129 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10112 flower src_mac 02:8b:27:c0:40:79 dst_mac 02:cf:a7:4c:a6:4b action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10113 flower src_mac 02:9a:d4:4a:72:44 dst_mac 02:26:7c:31:f2:23 vlan_id 724 vlan_ethtype ip src_ip 66.37.4.196 dst_ip 32.180.7.194 ip_proto udp src_port 18708 dst_port 59120 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10114 flower src_mac 02:23:d5:fb:ae:98 dst_mac 02:b5:84:ba:3f:21 vlan_id 1355 vlan_ethtype ipv4 src_ip 78.185.232.35 dst_ip 46.40.252.220 ip_proto tcp src_port 5036 dst_port 57141 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10115 flower src_mac 02:3d:5b:f5:39:b7 dst_mac 02:0f:cf:f1:e6:4f src_ip 100.2.198.8 dst_ip 76.17.128.77 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10116 flower src_mac 02:f8:68:1c:c4:49 dst_mac 02:da:ee:c6:b0:55 vlan_id 451 vlan_ethtype ipv4 src_ip 31.37.86.54 dst_ip 58.243.123.109 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10117 flower src_mac 02:b4:62:d6:16:f1 dst_mac 02:bc:26:28:d6:c4 vlan_id 3747 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10118 flower src_mac 02:34:60:87:fb:9b dst_mac 02:fb:5e:85:fe:48 src_ip 75.123.207.108 dst_ip 54.150.2.220 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10119 flower src_mac 02:8c:84:b2:22:8a dst_mac 02:53:c4:de:76:be src_ip 35.223.81.53 dst_ip 80.230.10.16 ip_proto udp src_port 11969 dst_port 21317 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10120 flower src_mac 02:c0:2d:a4:1b:6f dst_mac 02:7e:bc:8f:b6:a1 vlan_id 2320 vlan_ethtype ipv4 src_ip 94.108.143.169 dst_ip 108.166.184.89 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10121 flower src_mac 02:16:7b:63:d6:75 dst_mac 02:1e:d7:8d:c5:eb action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10122 flower src_mac 02:91:be:0a:e6:99 dst_mac 02:de:cb:13:62:e6 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10123 flower src_mac 02:e2:87:ca:f8:14 dst_mac 02:8e:c5:8d:da:c4 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10124 flower src_mac 02:03:66:1a:c9:3c dst_mac 02:41:86:75:37:1d vlan_id 906 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10125 flower src_mac 02:24:56:25:27:0e dst_mac 02:ad:b5:b1:2f:d1 src_ip 52.54.52.220 dst_ip 36.114.3.115 ip_proto icmp code 33 type 8 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10126 flower src_mac 02:83:c0:56:d2:44 dst_mac 02:bf:c1:11:4c:df action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10127 flower src_mac 02:a9:9c:66:33:f4 dst_mac 02:b4:4f:62:bb:a1 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10128 flower src_mac 02:23:0f:e5:55:22 dst_mac 02:a4:74:a5:9f:e3 vlan_id 3722 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10129 flower src_mac 02:18:f0:e2:44:04 dst_mac 02:fc:70:60:81:de action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10130 flower src_mac 02:18:9c:68:63:7d dst_mac 02:e9:10:d6:fa:ad vlan_id 2677 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10131 flower src_mac 02:34:a8:68:aa:c1 dst_mac 02:c7:1a:3b:cb:9a action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10132 flower src_mac 02:1c:f2:58:53:58 dst_mac 02:e3:f6:d4:d7:b1 action pass && tc filter add dev swp33 ingress protocol ip pref 10133 flower src_mac 02:68:ff:4f:30:ea dst_mac 02:20:65:26:f5:54 src_ip 73.41.211.91 dst_ip 38.219.235.144 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10134 flower src_mac 02:7c:d7:41:df:b3 dst_mac 02:cb:07:fa:4d:4d vlan_id 2968 vlan_ethtype ipv4 src_ip 61.90.238.182 dst_ip 40.31.40.39 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10135 flower src_mac 02:46:8a:e9:57:5e dst_mac 02:eb:df:1d:56:6f action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10136 flower src_mac 02:4c:13:3e:f1:b6 dst_mac 02:3d:1f:9b:b3:4a vlan_id 3014 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10137 flower src_mac 02:73:86:53:fd:f8 dst_mac 02:60:fb:3c:b9:e5 src_ip 116.99.212.195 dst_ip 43.194.124.184 ip_proto tcp src_port 33763 dst_port 34718 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10138 flower src_mac 02:0f:e3:d6:9c:88 dst_mac 02:f4:08:2b:34:d8 src_ip 78.48.215.204 dst_ip 29.77.86.10 ip_proto icmp code 225 type 5 action trap && tc filter add dev swp33 ingress protocol ip pref 10139 flower src_mac 02:10:a6:0f:66:b7 dst_mac 02:98:09:db:c4:47 src_ip 26.214.98.161 dst_ip 104.21.224.87 ip_proto icmp code 198 type 16 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10140 flower src_mac 02:d2:13:b7:e5:b0 dst_mac 02:fa:65:03:eb:ed src_ip 75.205.116.179 dst_ip 112.177.58.6 ip_proto tcp src_port 61209 dst_port 22250 action pass && tc filter add dev swp33 ingress protocol ip pref 10141 flower src_mac 02:2f:33:39:ea:2d dst_mac 02:93:81:18:19:7c src_ip 52.107.213.49 dst_ip 32.39.41.94 ip_proto icmp code 152 type 8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10142 flower src_mac 02:94:c6:76:f5:00 dst_mac 02:64:ed:07:1d:bc vlan_id 3995 vlan_ethtype ipv4 src_ip 21.135.240.70 dst_ip 97.221.108.56 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10143 flower src_mac 02:a2:58:59:bb:f6 dst_mac 02:ae:f8:38:e5:63 vlan_id 993 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10144 flower src_mac 02:ed:e2:9b:11:e5 dst_mac 02:67:3c:c2:34:1a vlan_id 1552 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10145 flower src_mac 02:1f:e7:cd:8c:62 dst_mac 02:ad:57:a3:95:4a src_ip 104.12.145.34 dst_ip 44.152.55.77 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10146 flower src_mac 02:7a:4a:c4:2a:2a dst_mac 02:94:85:a4:be:72 vlan_id 252 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10147 flower src_mac 02:5a:f9:00:77:be dst_mac 02:ce:95:7b:ea:b0 vlan_id 2471 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10148 flower src_mac 02:cb:bb:b5:f1:1b dst_mac 02:86:68:ef:0f:66 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10149 flower src_mac 02:70:01:2e:3c:d0 dst_mac 02:cb:0e:d0:24:b1 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10150 flower src_mac 02:d2:b8:52:7b:2a dst_mac 02:05:3e:af:5b:16 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10151 flower src_mac 02:11:34:19:62:1d dst_mac 02:1c:f5:0f:cb:54 vlan_id 3447 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10152 flower src_mac 02:ab:af:6a:8c:7a dst_mac 02:14:99:a3:aa:5a src_ip 69.26.244.232 dst_ip 55.109.6.153 ip_proto udp src_port 29126 dst_port 34260 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10153 flower src_mac 02:7f:65:97:28:fc dst_mac 02:d1:52:22:7a:8f vlan_id 502 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10154 flower src_mac 02:7c:ee:fd:c7:73 dst_mac 02:52:49:39:6e:66 src_ip 114.26.242.85 dst_ip 95.19.241.159 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10155 flower src_mac 02:8b:33:ca:66:8f dst_mac 02:e0:e8:55:7e:05 vlan_id 2904 vlan_ethtype ipv4 src_ip 57.68.237.205 dst_ip 35.190.236.33 ip_proto tcp src_port 2585 dst_port 33752 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10156 flower src_mac 02:9a:b4:c0:21:27 dst_mac 02:e6:24:59:04:fb vlan_id 860 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10157 flower src_mac 02:eb:85:e7:86:71 dst_mac 02:30:f2:eb:f1:53 src_ip 72.208.66.82 dst_ip 62.30.112.224 ip_proto udp src_port 47116 dst_port 63693 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10158 flower src_mac 02:8f:29:a6:af:f3 dst_mac 02:4a:ee:92:fd:a8 vlan_id 1842 vlan_ethtype 0x0800 src_ip 93.85.107.77 dst_ip 95.109.17.187 ip_proto tcp src_port 40324 dst_port 43107 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10159 flower src_mac 02:b4:1a:55:60:eb dst_mac 02:00:88:5c:59:37 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10160 flower src_mac 02:9e:55:97:96:9e dst_mac 02:a5:94:e9:6f:7a action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10161 flower src_mac 02:58:ce:6a:8b:25 dst_mac 02:10:b8:0b:3e:a9 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10162 flower src_mac 02:5c:06:36:9e:1c dst_mac 02:33:ac:22:b0:6f vlan_id 1049 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10163 flower src_mac 02:20:08:76:f4:af dst_mac 02:a6:4e:fb:04:30 src_ip 114.205.241.243 dst_ip 112.231.78.85 ip_proto udp src_port 54102 dst_port 56907 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10164 flower src_mac 02:26:b1:c9:24:fe dst_mac 02:40:df:58:b0:bb vlan_id 3331 vlan_ethtype ipv4 src_ip 105.240.0.105 dst_ip 111.91.152.162 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10165 flower src_mac 02:b5:63:d8:e5:57 dst_mac 02:27:8c:f0:be:66 src_ip 65.109.114.9 dst_ip 85.97.35.228 ip_proto icmp code 138 type 18 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10166 flower src_mac 02:33:b0:05:5f:a1 dst_mac 02:14:2c:2f:d7:b8 src_ip 15.192.22.248 dst_ip 97.136.128.133 ip_proto tcp src_port 34960 dst_port 45465 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10167 flower src_mac 02:82:fb:ad:d1:52 dst_mac 02:c0:bc:3c:45:5d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10168 flower src_mac 02:ae:06:4d:e7:38 dst_mac 02:f3:6f:f9:74:1c vlan_id 1981 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10169 flower src_mac 02:3c:96:0a:8f:b9 dst_mac 02:7a:b1:0b:30:c7 vlan_id 3692 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10170 flower src_mac 02:e2:73:68:cf:7b dst_mac 02:01:a0:fc:4d:37 action pass && tc filter add dev swp33 ingress protocol ip pref 10171 flower src_mac 02:ad:ac:cc:0f:67 dst_mac 02:86:c3:1a:46:98 src_ip 38.255.205.105 dst_ip 59.173.125.79 ip_proto tcp src_port 53083 dst_port 7267 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10172 flower src_mac 02:a6:ac:9b:0e:0f dst_mac 02:1b:7e:fe:be:c0 vlan_id 2985 vlan_ethtype ipv4 src_ip 97.186.87.161 dst_ip 87.247.84.1 ip_proto udp src_port 57519 dst_port 14262 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10173 flower src_mac 02:fc:d6:5b:c5:31 dst_mac 02:a8:fc:a5:be:b6 vlan_id 460 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10174 flower src_mac 02:4f:3a:4d:87:21 dst_mac 02:db:4e:ec:44:bf action trap && tc filter add dev swp33 ingress protocol ip pref 10175 flower src_mac 02:3f:24:b8:6b:95 dst_mac 02:90:53:03:54:ae src_ip 60.83.47.149 dst_ip 27.161.99.162 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10176 flower src_mac 02:73:fa:b8:08:ba dst_mac 02:f8:14:3e:0c:ab vlan_id 27 vlan_ethtype ip src_ip 63.112.84.27 dst_ip 65.171.102.197 ip_proto tcp src_port 1979 dst_port 56350 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10177 flower src_mac 02:14:1a:d0:eb:a1 dst_mac 02:3f:92:cb:47:38 src_ip 61.111.145.32 dst_ip 109.33.117.57 ip_proto icmp code 206 type 18 action trap && tc filter add dev swp33 ingress protocol ip pref 10178 flower src_mac 02:24:96:41:b0:b9 dst_mac 02:14:f3:67:72:4e src_ip 88.149.169.156 dst_ip 40.166.158.213 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10179 flower src_mac 02:32:6a:b6:64:c5 dst_mac 02:80:a3:7a:78:1f vlan_id 534 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10180 flower src_mac 02:41:af:5b:e3:9b dst_mac 02:56:50:64:5a:e0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10181 flower src_mac 02:4c:3c:c0:1e:60 dst_mac 02:15:88:49:14:6c vlan_id 2987 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10182 flower src_mac 02:e6:8e:c6:08:71 dst_mac 02:ea:63:40:f3:16 vlan_id 3790 vlan_ethtype ipv4 src_ip 25.218.208.78 dst_ip 65.243.255.111 ip_proto tcp src_port 28764 dst_port 55442 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10183 flower src_mac 02:b2:6c:38:54:4d dst_mac 02:52:5f:f2:8c:ae vlan_id 1647 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10184 flower src_mac 02:12:58:ed:8d:07 dst_mac 02:77:02:4a:7f:54 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10185 flower src_mac 02:6a:6e:50:8f:7a dst_mac 02:40:13:9c:c0:47 src_ip 96.46.253.216 dst_ip 11.181.13.86 ip_proto udp src_port 50819 dst_port 2783 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10186 flower src_mac 02:6e:a5:69:03:b3 dst_mac 02:c3:04:78:ea:c6 src_ip 42.123.184.65 dst_ip 94.123.131.165 ip_proto icmp code 248 type 3 action trap && tc filter add dev swp33 ingress protocol ip pref 10187 flower src_mac 02:30:4d:e2:ce:95 dst_mac 02:5e:5d:ca:c7:99 src_ip 126.78.80.156 dst_ip 64.152.67.169 ip_proto tcp src_port 8595 dst_port 57969 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10188 flower src_mac 02:e5:24:c7:01:2e dst_mac 02:d3:4d:39:89:73 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10189 flower src_mac 02:68:5b:00:d7:01 dst_mac 02:40:79:ba:7f:94 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10190 flower src_mac 02:d0:2c:94:eb:07 dst_mac 02:ef:9b:b2:55:94 vlan_id 2894 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10191 flower src_mac 02:80:10:82:6d:59 dst_mac 02:e9:2a:77:76:63 vlan_id 523 vlan_ethtype 0x0800 src_ip 84.181.197.202 dst_ip 30.229.62.46 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10192 flower src_mac 02:56:6a:36:f5:fe dst_mac 02:ce:00:7c:75:cd vlan_id 2507 vlan_ethtype ipv4 src_ip 97.70.241.12 dst_ip 107.24.135.207 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10193 flower src_mac 02:43:ba:58:d1:3f dst_mac 02:12:82:60:a0:aa action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10194 flower src_mac 02:54:9e:d8:f8:c4 dst_mac 02:37:d8:63:8b:45 vlan_id 2257 vlan_ethtype 0x0800 src_ip 29.85.174.242 dst_ip 39.110.167.37 ip_proto tcp src_port 63146 dst_port 42562 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10195 flower src_mac 02:ca:17:00:64:2f dst_mac 02:7c:46:15:d9:12 src_ip 23.105.9.61 dst_ip 60.190.229.134 ip_proto udp src_port 64177 dst_port 43871 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10196 flower src_mac 02:84:00:da:d9:ae dst_mac 02:90:f6:e3:2a:73 vlan_id 2146 vlan_ethtype 0x0800 src_ip 56.145.40.199 dst_ip 104.154.127.13 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10197 flower src_mac 02:6f:50:e9:aa:d1 dst_mac 02:12:c0:9f:fb:33 vlan_id 739 vlan_ethtype ip src_ip 121.153.179.71 dst_ip 48.149.226.180 ip_proto tcp src_port 10256 dst_port 6451 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10198 flower src_mac 02:72:9a:43:16:dc dst_mac 02:d0:e6:fa:df:7e vlan_id 1442 vlan_ethtype ipv4 src_ip 78.204.35.168 dst_ip 20.218.187.199 ip_proto tcp src_port 27144 dst_port 59072 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10199 flower src_mac 02:79:03:43:ca:f5 dst_mac 02:57:d2:00:3c:2d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10200 flower src_mac 02:a4:ac:dc:1a:f4 dst_mac 02:18:e2:35:95:ec vlan_id 1803 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10201 flower src_mac 02:21:5c:c5:2e:33 dst_mac 02:fa:9f:aa:9f:4f src_ip 76.10.117.62 dst_ip 36.90.201.131 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10202 flower src_mac 02:35:59:b4:87:6f dst_mac 02:a6:5d:d9:cb:5e vlan_id 164 vlan_ethtype ip src_ip 77.71.193.136 dst_ip 82.181.150.40 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10203 flower src_mac 02:16:14:36:ad:6d dst_mac 02:61:59:52:83:ff vlan_id 916 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10204 flower src_mac 02:51:e5:a2:a8:d0 dst_mac 02:e7:eb:50:72:58 src_ip 83.223.146.185 dst_ip 102.154.148.116 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10205 flower src_mac 02:4e:be:a9:4f:28 dst_mac 02:88:18:56:f5:be vlan_id 469 vlan_ethtype ip src_ip 42.180.222.94 dst_ip 101.143.82.177 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10206 flower src_mac 02:6f:60:c4:cb:f8 dst_mac 02:92:cb:84:fc:2f vlan_id 1593 vlan_ethtype 0x0800 src_ip 18.38.71.222 dst_ip 97.32.218.246 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10207 flower src_mac 02:e2:e8:de:ab:cb dst_mac 02:e0:2d:d5:08:ef vlan_id 2163 vlan_ethtype ip src_ip 35.69.33.76 dst_ip 104.157.122.147 ip_proto tcp src_port 58366 dst_port 55150 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10208 flower src_mac 02:bb:cf:43:06:a6 dst_mac 02:ca:eb:29:76:97 src_ip 112.188.15.199 dst_ip 120.167.191.94 ip_proto tcp src_port 5913 dst_port 34489 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10209 flower src_mac 02:80:46:ce:39:49 dst_mac 02:aa:57:c8:d4:6b vlan_id 3217 vlan_ethtype ip src_ip 28.160.117.39 dst_ip 40.76.188.58 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10210 flower src_mac 02:bf:e5:de:24:3a dst_mac 02:25:81:49:33:c0 vlan_id 3924 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10211 flower src_mac 02:f8:b2:2e:11:f8 dst_mac 02:fe:d1:0c:89:cf vlan_id 2068 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10212 flower src_mac 02:00:4e:8b:78:c0 dst_mac 02:df:18:68:0b:45 vlan_id 2840 vlan_ethtype 0x0800 src_ip 101.14.61.67 dst_ip 125.227.207.127 ip_proto udp src_port 9139 dst_port 46285 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10213 flower src_mac 02:f5:57:5e:d7:c0 dst_mac 02:f2:bb:d8:a0:e8 vlan_id 833 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10214 flower src_mac 02:80:b8:25:bf:a2 dst_mac 02:70:27:72:17:26 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10215 flower src_mac 02:ec:7a:c6:f5:01 dst_mac 02:a9:f7:61:2b:b9 vlan_id 887 vlan_ethtype ip src_ip 26.117.206.53 dst_ip 97.191.224.246 action drop && tc filter add dev swp33 ingress protocol ip pref 10216 flower src_mac 02:a9:c5:93:e4:67 dst_mac 02:b2:8c:e7:92:b4 src_ip 81.18.104.175 dst_ip 81.156.218.179 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10217 flower src_mac 02:c0:00:75:58:10 dst_mac 02:9e:95:2a:a8:df action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10218 flower src_mac 02:68:b1:ac:38:55 dst_mac 02:5c:3c:b7:f6:5f src_ip 64.217.113.16 dst_ip 50.96.118.28 ip_proto icmp code 115 type 5 action trap && tc filter add dev swp33 ingress protocol ip pref 10219 flower src_mac 02:69:43:a1:77:0d dst_mac 02:3e:65:1d:d5:d0 src_ip 70.240.44.102 dst_ip 53.98.21.18 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10220 flower src_mac 02:b0:ba:c1:d3:50 dst_mac 02:cd:83:7e:74:9b action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10221 flower src_mac 02:99:02:98:6d:95 dst_mac 02:8a:bf:eb:f9:27 vlan_id 580 vlan_ethtype 0x0800 src_ip 116.233.197.76 dst_ip 84.235.12.1 ip_proto tcp src_port 3984 dst_port 40132 action drop && tc filter add dev swp33 ingress protocol ip pref 10222 flower src_mac 02:60:81:ab:01:47 dst_mac 02:aa:b6:84:d5:73 src_ip 103.187.108.82 dst_ip 109.210.33.201 ip_proto icmp code 109 type 8 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10223 flower src_mac 02:58:34:5f:2e:46 dst_mac 02:84:d6:5c:7e:05 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10224 flower src_mac 02:a3:81:ab:d6:e3 dst_mac 02:2f:8e:38:3e:ab src_ip 21.115.161.154 dst_ip 49.68.90.199 ip_proto icmp code 28 type 5 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10225 flower src_mac 02:19:22:db:04:29 dst_mac 02:dd:07:54:6a:8f action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10226 flower src_mac 02:58:9a:84:86:b0 dst_mac 02:73:2b:95:e8:a7 vlan_id 2803 vlan_ethtype ipv4 src_ip 36.122.164.56 dst_ip 17.85.206.201 ip_proto udp src_port 38143 dst_port 31998 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10227 flower src_mac 02:1a:ef:fe:a8:87 dst_mac 02:e0:c1:01:2f:f3 src_ip 12.178.73.100 dst_ip 49.143.13.121 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10228 flower src_mac 02:13:cd:f9:94:2e dst_mac 02:f9:70:19:d3:43 vlan_id 1604 vlan_ethtype 0x0800 src_ip 89.225.62.245 dst_ip 64.206.101.138 ip_proto udp src_port 17856 dst_port 4384 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10229 flower src_mac 02:36:94:09:81:f6 dst_mac 02:34:47:1d:57:85 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10230 flower src_mac 02:9e:36:d9:60:bd dst_mac 02:11:75:fe:de:f5 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10231 flower src_mac 02:7f:1d:68:ee:e2 dst_mac 02:7d:d5:b9:b5:f1 src_ip 76.249.71.220 dst_ip 111.109.37.151 ip_proto tcp src_port 32057 dst_port 48434 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10232 flower src_mac 02:d2:19:96:8e:ca dst_mac 02:94:6d:a3:11:dd vlan_id 3169 vlan_ethtype ip src_ip 13.230.245.2 dst_ip 60.53.220.19 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10233 flower src_mac 02:c7:c7:31:c2:33 dst_mac 02:f4:36:9e:ce:5e vlan_id 1321 vlan_ethtype ipv4 src_ip 20.187.96.134 dst_ip 89.45.145.164 action trap && tc filter add dev swp33 ingress protocol ip pref 10234 flower src_mac 02:ca:83:58:2e:fc dst_mac 02:07:b3:18:b6:bf src_ip 116.101.114.165 dst_ip 99.44.132.142 ip_proto icmp code 0 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10235 flower src_mac 02:b0:f1:b4:f7:c4 dst_mac 02:83:f7:14:76:f5 action drop && tc filter add dev swp33 ingress protocol ip pref 10236 flower src_mac 02:b5:8e:a9:6c:a0 dst_mac 02:25:0f:af:c8:98 src_ip 67.71.66.190 dst_ip 21.90.214.29 ip_proto udp src_port 21732 dst_port 20223 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10237 flower src_mac 02:59:f8:8b:1a:3a dst_mac 02:2d:47:3e:30:41 vlan_id 4005 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10238 flower src_mac 02:6d:65:16:6a:51 dst_mac 02:77:b6:66:ce:f6 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10239 flower src_mac 02:37:ed:06:7c:48 dst_mac 02:e0:53:67:c9:01 src_ip 49.167.122.74 dst_ip 38.80.28.230 ip_proto icmp code 73 type 14 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10240 flower src_mac 02:00:d3:a5:3b:1c dst_mac 02:bb:cf:ea:46:18 src_ip 55.70.180.120 dst_ip 33.124.46.97 ip_proto tcp src_port 37838 dst_port 7334 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10241 flower src_mac 02:81:66:93:ad:ab dst_mac 02:39:39:9d:40:c1 vlan_id 1600 vlan_ethtype 0x0800 src_ip 123.188.127.197 dst_ip 40.74.95.91 ip_proto tcp src_port 53491 dst_port 42735 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10242 flower src_mac 02:fd:15:6c:26:76 dst_mac 02:28:c7:47:3a:1d vlan_id 3958 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10243 flower src_mac 02:15:e8:7c:0e:d5 dst_mac 02:df:87:e5:8b:72 vlan_id 3980 vlan_ethtype ipv4 src_ip 12.250.174.147 dst_ip 34.40.30.39 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10244 flower src_mac 02:5c:ff:9a:1c:01 dst_mac 02:fe:5f:90:86:af vlan_id 365 vlan_ethtype ipv4 src_ip 112.9.180.81 dst_ip 61.221.123.241 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10245 flower src_mac 02:72:93:a6:1c:52 dst_mac 02:70:b1:0f:1c:ef vlan_id 2751 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10246 flower src_mac 02:55:5b:3c:cf:77 dst_mac 02:67:48:d0:80:a2 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10247 flower src_mac 02:fe:ba:9b:05:d0 dst_mac 02:a4:17:7d:4f:d7 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10248 flower src_mac 02:e7:67:a8:25:c9 dst_mac 02:0a:5b:c7:93:85 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10249 flower src_mac 02:c9:2f:f2:dc:91 dst_mac 02:ed:c8:b2:e5:91 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10250 flower src_mac 02:4e:14:0f:9a:2c dst_mac 02:94:1d:01:86:6e action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10251 flower src_mac 02:de:dd:ae:d7:0c dst_mac 02:32:77:65:ad:8f src_ip 121.20.218.153 dst_ip 50.39.161.105 action trap && tc filter add dev swp33 ingress protocol ip pref 10252 flower src_mac 02:bf:cd:04:ea:49 dst_mac 02:66:80:a3:ad:3f src_ip 103.99.4.29 dst_ip 65.129.51.94 ip_proto udp src_port 24045 dst_port 57099 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10253 flower src_mac 02:4a:8b:47:cf:49 dst_mac 02:64:c9:ec:bf:0e src_ip 49.201.72.175 dst_ip 34.224.167.147 ip_proto tcp src_port 9424 dst_port 11721 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10254 flower src_mac 02:3d:42:c6:15:1c dst_mac 02:28:a5:ec:9e:85 src_ip 55.225.21.223 dst_ip 110.232.26.35 ip_proto tcp src_port 30746 dst_port 22124 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10255 flower src_mac 02:87:be:eb:3f:1b dst_mac 02:ea:da:74:57:39 vlan_id 2492 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10256 flower src_mac 02:c5:73:81:3b:79 dst_mac 02:35:b0:f4:3b:b8 src_ip 21.179.98.131 dst_ip 59.109.14.65 ip_proto icmp code 41 type 11 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10257 flower src_mac 02:a0:b2:25:aa:1d dst_mac 02:b7:8b:25:d2:28 src_ip 48.131.138.235 dst_ip 61.142.250.115 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10258 flower src_mac 02:5f:94:13:f1:65 dst_mac 02:16:5e:d5:06:19 vlan_id 3794 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 10259 flower src_mac 02:ad:a9:91:3d:a6 dst_mac 02:e7:b3:84:76:ee src_ip 61.216.133.60 dst_ip 45.136.212.137 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10260 flower src_mac 02:59:d7:5e:e8:8d dst_mac 02:08:50:58:9e:72 vlan_id 1566 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10261 flower src_mac 02:1b:bc:9e:59:f1 dst_mac 02:cf:51:a3:3c:ed vlan_id 1152 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10262 flower src_mac 02:4e:f8:b3:5b:a7 dst_mac 02:ba:e1:51:44:1b src_ip 114.57.160.35 dst_ip 18.201.228.11 ip_proto icmp code 32 type 14 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10263 flower src_mac 02:bb:60:25:4b:c8 dst_mac 02:c0:f9:93:7e:57 vlan_id 586 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10264 flower src_mac 02:e3:47:98:00:14 dst_mac 02:f3:5d:12:d2:75 vlan_id 2278 vlan_ethtype ip src_ip 118.175.208.122 dst_ip 94.158.9.211 ip_proto udp src_port 16658 dst_port 33783 action trap && tc filter add dev swp33 ingress protocol ip pref 10265 flower src_mac 02:f7:da:97:61:06 dst_mac 02:82:b4:a6:69:f3 src_ip 49.250.82.123 dst_ip 107.70.47.196 action drop && tc filter add dev swp33 ingress protocol ip pref 10266 flower src_mac 02:fe:ea:0f:42:a7 dst_mac 02:be:b5:ce:9f:a5 src_ip 101.40.142.92 dst_ip 79.58.56.106 ip_proto tcp src_port 58290 dst_port 44772 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10267 flower src_mac 02:c5:da:a9:1d:75 dst_mac 02:de:2b:a5:03:8d vlan_id 1544 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10268 flower src_mac 02:86:dc:24:a0:c5 dst_mac 02:56:f4:93:81:f4 vlan_id 488 vlan_ethtype 0x0800 src_ip 89.15.117.58 dst_ip 81.51.32.176 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10269 flower src_mac 02:1d:38:05:8d:16 dst_mac 02:fd:85:1d:bc:d6 vlan_id 2454 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10270 flower src_mac 02:e0:74:b1:9e:cc dst_mac 02:38:8e:c1:23:34 vlan_id 2391 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10271 flower src_mac 02:8a:6b:9d:61:cd dst_mac 02:d5:79:fc:12:4b vlan_id 1234 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10272 flower src_mac 02:d5:9e:0e:b9:85 dst_mac 02:fd:5c:22:35:67 vlan_id 3295 vlan_ethtype 0x0800 src_ip 40.246.80.43 dst_ip 80.54.172.63 ip_proto udp src_port 59405 dst_port 48571 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10273 flower src_mac 02:b6:33:73:b3:f0 dst_mac 02:0c:31:b1:21:1d vlan_id 2154 vlan_ethtype ip src_ip 18.170.173.138 dst_ip 45.61.137.191 ip_proto tcp src_port 48563 dst_port 30624 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10274 flower src_mac 02:cb:7f:54:6c:e0 dst_mac 02:88:b0:ad:76:22 vlan_id 133 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10275 flower src_mac 02:9f:52:2e:a1:01 dst_mac 02:bc:2c:5c:8b:a8 vlan_id 1024 vlan_ethtype ip src_ip 76.46.232.185 dst_ip 36.124.24.250 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10276 flower src_mac 02:af:68:4b:ef:07 dst_mac 02:fb:f5:05:9c:57 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10277 flower src_mac 02:e2:14:aa:81:3a dst_mac 02:ed:01:0f:9f:7d vlan_id 3844 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10278 flower src_mac 02:34:14:68:7c:4f dst_mac 02:58:84:c0:1d:80 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10279 flower src_mac 02:a4:34:7e:08:53 dst_mac 02:56:06:45:2d:fc action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10280 flower src_mac 02:91:04:29:b7:54 dst_mac 02:3f:9e:59:f6:ad vlan_id 596 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10281 flower src_mac 02:d7:bd:86:c4:e3 dst_mac 02:36:72:db:3c:77 src_ip 115.55.122.12 dst_ip 51.87.69.113 ip_proto udp src_port 6386 dst_port 14126 action drop && tc filter add dev swp33 ingress protocol ip pref 10282 flower src_mac 02:4c:30:79:3b:54 dst_mac 02:15:86:1c:ae:d4 src_ip 27.194.206.148 dst_ip 83.149.134.239 ip_proto udp src_port 5780 dst_port 21280 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10283 flower src_mac 02:d8:18:ec:66:74 dst_mac 02:6c:e0:ec:f0:b8 vlan_id 182 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10284 flower src_mac 02:29:37:a4:56:4e dst_mac 02:6d:0f:e0:c0:1c action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10285 flower src_mac 02:e7:db:93:e4:c0 dst_mac 02:64:7e:23:b5:58 vlan_id 4068 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10286 flower src_mac 02:9f:17:21:99:f9 dst_mac 02:8b:ae:b9:e6:a6 vlan_id 2183 vlan_ethtype 0x0800 src_ip 14.246.83.233 dst_ip 100.245.7.167 ip_proto tcp src_port 28176 dst_port 43804 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10287 flower src_mac 02:d1:bd:43:15:c7 dst_mac 02:a3:ce:8f:b3:65 vlan_id 2164 vlan_ethtype ipv4 src_ip 28.15.176.46 dst_ip 77.76.49.214 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10288 flower src_mac 02:9f:69:f7:56:fa dst_mac 02:36:fb:bf:1f:58 vlan_id 2688 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10289 flower src_mac 02:e2:0a:e8:07:1a dst_mac 02:af:0d:c8:99:50 vlan_id 973 vlan_ethtype ipv4 src_ip 47.240.248.133 dst_ip 19.228.164.128 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10290 flower src_mac 02:e1:95:01:69:c8 dst_mac 02:52:34:01:f9:9e action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10291 flower src_mac 02:6e:ee:f0:33:31 dst_mac 02:22:74:86:cf:d6 action trap && tc filter add dev swp33 ingress protocol ip pref 10292 flower src_mac 02:a1:dd:fc:9b:94 dst_mac 02:74:0d:b4:65:38 src_ip 84.94.255.232 dst_ip 88.253.241.118 ip_proto icmp code 40 type 5 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10293 flower src_mac 02:ed:32:17:cc:bb dst_mac 02:4c:63:43:b4:de action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10294 flower src_mac 02:c8:f4:68:c9:97 dst_mac 02:26:f5:4d:25:77 vlan_id 2975 vlan_ethtype 0x0800 src_ip 86.198.248.168 dst_ip 86.164.58.73 ip_proto tcp src_port 49029 dst_port 7649 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10295 flower src_mac 02:21:74:44:c3:ea dst_mac 02:e3:60:56:39:ee vlan_id 2167 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10296 flower src_mac 02:4c:7b:26:d5:f4 dst_mac 02:e3:c2:d3:e9:58 src_ip 43.196.199.237 dst_ip 17.231.32.77 ip_proto udp src_port 5240 dst_port 51299 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10297 flower src_mac 02:87:c4:b3:93:8d dst_mac 02:5b:3a:3c:c2:b9 src_ip 84.226.51.90 dst_ip 97.45.239.81 ip_proto icmp code 105 type 14 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10298 flower src_mac 02:58:32:e5:06:b8 dst_mac 02:e4:a8:b1:85:1a src_ip 19.103.0.199 dst_ip 123.20.177.132 ip_proto icmp code 60 type 5 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10299 flower src_mac 02:75:bb:fe:09:98 dst_mac 02:ba:04:f7:0f:fa action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10300 flower src_mac 02:07:c4:28:81:c5 dst_mac 02:be:21:63:3e:15 vlan_id 1504 vlan_ethtype 0x0800 src_ip 55.30.160.98 dst_ip 41.37.203.82 ip_proto tcp src_port 54722 dst_port 64787 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10301 flower src_mac 02:63:c4:00:d2:cf dst_mac 02:8d:4e:0c:c1:fa vlan_id 2874 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10302 flower src_mac 02:6e:fa:e6:cb:d0 dst_mac 02:08:f8:c4:bf:72 vlan_id 3587 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10303 flower src_mac 02:44:29:62:43:a2 dst_mac 02:dc:0c:d6:33:82 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10304 flower src_mac 02:e3:77:d9:16:33 dst_mac 02:d2:7c:48:1b:26 vlan_id 1722 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10305 flower src_mac 02:cc:5f:f9:fd:18 dst_mac 02:37:73:53:ed:6e src_ip 27.244.181.28 dst_ip 23.55.32.165 ip_proto icmp code 106 type 4 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10306 flower src_mac 02:67:09:61:a1:a6 dst_mac 02:42:8c:f1:ea:0b src_ip 76.227.101.26 dst_ip 89.74.197.37 ip_proto icmp code 30 type 16 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10307 flower src_mac 02:db:4d:29:7b:ea dst_mac 02:99:56:5a:d6:45 vlan_id 3123 vlan_ethtype 0x0800 src_ip 89.83.39.173 dst_ip 96.162.179.246 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10308 flower src_mac 02:30:a6:8d:58:32 dst_mac 02:f1:47:cf:17:72 vlan_id 68 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10309 flower src_mac 02:aa:c9:c8:bd:ae dst_mac 02:c5:9c:a7:63:a3 vlan_id 3124 vlan_ethtype ipv4 src_ip 32.245.76.75 dst_ip 26.6.18.36 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10310 flower src_mac 02:93:82:4a:a3:30 dst_mac 02:8c:f8:21:41:3d vlan_id 1648 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10311 flower src_mac 02:e8:82:a5:b7:77 dst_mac 02:a7:d4:9e:54:a2 vlan_id 652 vlan_ethtype ipv4 src_ip 58.189.199.61 dst_ip 22.144.179.155 ip_proto tcp src_port 25496 dst_port 4816 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10312 flower src_mac 02:36:90:5e:be:fd dst_mac 02:a1:13:97:4c:b5 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10313 flower src_mac 02:36:e8:cc:33:3b dst_mac 02:6b:2f:20:35:fb src_ip 23.135.225.110 dst_ip 116.207.80.134 ip_proto udp src_port 34101 dst_port 34199 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10314 flower src_mac 02:11:b9:58:ae:1e dst_mac 02:89:41:c6:60:9e vlan_id 3451 vlan_ethtype ip src_ip 102.150.3.232 dst_ip 38.182.14.10 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10315 flower src_mac 02:94:1d:02:e5:f0 dst_mac 02:39:24:f4:b3:2b vlan_id 3362 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10316 flower src_mac 02:ee:88:e1:0e:ec dst_mac 02:b4:e9:5b:72:7d vlan_id 2498 vlan_ethtype ip src_ip 38.62.189.32 dst_ip 81.193.45.17 ip_proto udp src_port 13232 dst_port 28753 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10317 flower src_mac 02:46:76:13:2c:5a dst_mac 02:d8:7f:5c:f6:cf vlan_id 1209 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10318 flower src_mac 02:a9:40:ef:88:6c dst_mac 02:5d:a2:dc:f0:d0 vlan_id 968 vlan_ethtype ip src_ip 105.96.23.60 dst_ip 72.89.68.117 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10319 flower src_mac 02:d3:d8:12:81:67 dst_mac 02:77:3c:d0:04:88 vlan_id 1314 vlan_ethtype ip src_ip 50.38.67.207 dst_ip 104.33.29.222 ip_proto tcp src_port 35565 dst_port 53040 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10320 flower src_mac 02:12:56:e5:0a:fb dst_mac 02:81:50:b2:6f:cc vlan_id 3129 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10321 flower src_mac 02:51:83:b9:e3:81 dst_mac 02:09:42:a3:dd:96 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10322 flower src_mac 02:3b:c0:f8:07:32 dst_mac 02:f7:4e:36:f5:89 vlan_id 1198 vlan_ethtype ip src_ip 51.187.173.117 dst_ip 15.74.100.43 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10323 flower src_mac 02:d0:a9:f8:6a:10 dst_mac 02:bf:85:63:8f:fa vlan_id 2604 vlan_ethtype 0x0800 src_ip 82.102.205.244 dst_ip 71.245.183.208 ip_proto tcp src_port 52611 dst_port 36599 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10324 flower src_mac 02:b4:a2:12:64:01 dst_mac 02:d3:72:c2:ba:61 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10325 flower src_mac 02:56:47:4b:e2:63 dst_mac 02:25:06:0b:c8:57 vlan_id 2679 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10326 flower src_mac 02:b1:f9:b3:f8:9e dst_mac 02:fb:63:29:8a:13 vlan_id 3254 vlan_ethtype 0x0800 src_ip 48.60.125.44 dst_ip 32.101.21.148 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10327 flower src_mac 02:82:04:34:94:03 dst_mac 02:28:98:8a:5d:62 src_ip 71.113.185.181 dst_ip 126.246.100.66 ip_proto udp src_port 38826 dst_port 37603 action trap && tc filter add dev swp33 ingress protocol ip pref 10328 flower src_mac 02:be:42:19:8b:d4 dst_mac 02:50:d0:ad:8a:80 src_ip 98.44.189.114 dst_ip 89.121.6.199 ip_proto udp src_port 15949 dst_port 64039 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10329 flower src_mac 02:28:8a:71:59:a2 dst_mac 02:8b:97:5e:16:70 src_ip 23.62.2.238 dst_ip 103.229.169.195 ip_proto udp src_port 6235 dst_port 14572 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10330 flower src_mac 02:fe:c7:81:08:28 dst_mac 02:fe:58:fa:d3:f5 src_ip 73.22.21.74 dst_ip 97.31.207.213 ip_proto udp src_port 42547 dst_port 242 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10331 flower src_mac 02:27:09:be:ac:98 dst_mac 02:6d:5e:0f:94:77 vlan_id 2783 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10332 flower src_mac 02:8e:4c:ed:d4:00 dst_mac 02:e1:67:60:64:1a vlan_id 779 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10333 flower src_mac 02:00:7e:e0:fd:44 dst_mac 02:08:8c:ff:81:f6 src_ip 13.174.122.153 dst_ip 92.232.19.5 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10334 flower src_mac 02:8b:42:c2:85:d3 dst_mac 02:b5:2d:c8:03:a1 vlan_id 1996 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10335 flower src_mac 02:6f:d1:df:80:0e dst_mac 02:02:c7:79:0a:d6 src_ip 103.241.252.122 dst_ip 90.170.135.203 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10336 flower src_mac 02:20:04:d5:bb:6a dst_mac 02:76:c7:8e:68:29 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10337 flower src_mac 02:08:14:30:09:9c dst_mac 02:39:1b:83:98:cd vlan_id 556 vlan_ethtype 0x0800 src_ip 101.64.28.54 dst_ip 66.91.176.143 ip_proto tcp src_port 19761 dst_port 25469 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10338 flower src_mac 02:65:33:a2:36:2a dst_mac 02:b5:01:cf:26:9b src_ip 53.242.21.147 dst_ip 15.14.13.139 ip_proto icmp code 229 type 8 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10339 flower src_mac 02:c7:c4:d6:8c:45 dst_mac 02:bb:78:89:a8:11 vlan_id 2707 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10340 flower src_mac 02:ed:a8:83:c3:f1 dst_mac 02:50:40:26:19:a7 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10341 flower src_mac 02:3c:d2:c2:3c:59 dst_mac 02:d3:f2:c0:01:0e vlan_id 3773 vlan_ethtype ip src_ip 24.187.161.106 dst_ip 123.123.201.113 ip_proto tcp src_port 26035 dst_port 32874 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10342 flower src_mac 02:4c:0e:e1:04:4d dst_mac 02:67:bb:94:3a:45 vlan_id 3470 vlan_ethtype ipv4 src_ip 42.69.22.107 dst_ip 88.237.2.220 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10343 flower src_mac 02:de:73:fe:56:31 dst_mac 02:1a:18:c3:86:11 vlan_id 1886 vlan_ethtype 0x0800 src_ip 43.80.106.87 dst_ip 93.223.240.175 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10344 flower src_mac 02:55:bb:df:2b:63 dst_mac 02:49:24:ba:74:4a action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10345 flower src_mac 02:db:ee:98:fd:5f dst_mac 02:2b:88:82:2e:a7 src_ip 44.244.208.55 dst_ip 61.40.112.193 ip_proto udp src_port 55513 dst_port 40673 action pass && tc filter add dev swp33 ingress protocol ip pref 10346 flower src_mac 02:a7:f1:15:24:4d dst_mac 02:86:5e:79:aa:52 src_ip 124.255.186.107 dst_ip 61.231.124.135 ip_proto icmp code 186 type 17 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10347 flower src_mac 02:ed:a5:8e:9a:98 dst_mac 02:0b:2e:43:f4:3e src_ip 103.25.172.78 dst_ip 123.235.176.238 ip_proto tcp src_port 26492 dst_port 65333 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10348 flower src_mac 02:21:50:49:a4:b7 dst_mac 02:b0:c0:1b:99:2b vlan_id 1973 vlan_ethtype 0x0800 src_ip 16.229.224.26 dst_ip 13.74.253.118 ip_proto udp src_port 53405 dst_port 48731 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10349 flower src_mac 02:5c:01:c1:a4:10 dst_mac 02:be:e4:2a:2c:5e action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10350 flower src_mac 02:18:8e:b7:56:9c dst_mac 02:97:8e:d0:c5:31 vlan_id 1795 vlan_ethtype ipv4 src_ip 58.9.64.63 dst_ip 106.13.205.152 ip_proto tcp src_port 9531 dst_port 39193 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10351 flower src_mac 02:14:7e:7d:bb:7e dst_mac 02:b4:b3:e6:00:ec vlan_id 817 vlan_ethtype ipv4 src_ip 98.156.93.80 dst_ip 26.194.193.133 ip_proto tcp src_port 30552 dst_port 20088 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10352 flower src_mac 02:2f:08:33:76:0e dst_mac 02:ef:64:d7:74:77 vlan_id 3337 vlan_ethtype ip src_ip 21.80.145.156 dst_ip 69.244.254.115 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10353 flower src_mac 02:a9:42:8b:1e:97 dst_mac 02:3b:93:1d:d2:e5 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10354 flower src_mac 02:74:36:73:36:4b dst_mac 02:8b:05:37:69:16 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10355 flower src_mac 02:3e:69:79:a0:a5 dst_mac 02:35:b7:09:9f:aa vlan_id 971 vlan_ethtype ip src_ip 122.61.204.198 dst_ip 75.188.126.167 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10356 flower src_mac 02:dc:be:6a:94:38 dst_mac 02:1f:49:ed:0f:b3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10357 flower src_mac 02:80:2c:b9:8d:8c dst_mac 02:5d:04:a8:9a:1f vlan_id 1581 vlan_ethtype ipv4 src_ip 101.16.120.237 dst_ip 68.167.252.189 ip_proto tcp src_port 21955 dst_port 6138 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10358 flower src_mac 02:d7:d7:2a:b0:69 dst_mac 02:09:49:11:06:d3 vlan_id 2950 vlan_ethtype ipv4 src_ip 84.202.115.221 dst_ip 32.186.99.72 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10359 flower src_mac 02:ce:84:2a:b8:53 dst_mac 02:7f:f4:72:ad:98 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10360 flower src_mac 02:79:dd:53:b8:b6 dst_mac 02:50:8e:34:f4:4c action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10361 flower src_mac 02:2d:8e:9b:2b:44 dst_mac 02:bd:42:4d:12:60 vlan_id 3700 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10362 flower src_mac 02:b1:ff:a5:05:3b dst_mac 02:11:6b:69:eb:06 vlan_id 199 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10363 flower src_mac 02:75:dc:fe:0c:4d dst_mac 02:e2:71:fd:28:d3 vlan_id 1905 vlan_ethtype ip src_ip 29.95.206.122 dst_ip 59.178.158.31 ip_proto tcp src_port 48669 dst_port 59537 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10364 flower src_mac 02:37:16:7e:43:26 dst_mac 02:66:fd:e1:84:6a vlan_id 2101 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10365 flower src_mac 02:f0:0d:df:84:b3 dst_mac 02:fe:98:4a:af:bb action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10366 flower src_mac 02:d1:64:d1:27:5a dst_mac 02:f0:a2:64:48:cc action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10367 flower src_mac 02:f7:4b:a7:07:87 dst_mac 02:0f:da:62:e8:b8 vlan_id 651 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10368 flower src_mac 02:fd:07:4c:95:ed dst_mac 02:7f:ce:d2:6a:36 vlan_id 2679 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10369 flower src_mac 02:ee:ce:96:03:5a dst_mac 02:60:33:3b:fe:f3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10370 flower src_mac 02:b6:80:8d:3e:fc dst_mac 02:e6:a8:2c:48:40 vlan_id 1586 vlan_ethtype 0x0800 src_ip 91.201.112.41 dst_ip 107.133.125.30 ip_proto tcp src_port 23313 dst_port 35393 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10371 flower src_mac 02:27:d3:c0:0e:04 dst_mac 02:61:8f:d4:fd:55 src_ip 19.243.23.230 dst_ip 89.234.230.162 ip_proto tcp src_port 62631 dst_port 43451 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10372 flower src_mac 02:4b:96:e5:2b:85 dst_mac 02:29:73:53:fa:36 vlan_id 812 vlan_ethtype ip src_ip 85.68.251.38 dst_ip 50.12.240.20 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10373 flower src_mac 02:11:0c:4e:76:db dst_mac 02:f9:6e:48:47:27 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10374 flower src_mac 02:60:7e:83:97:16 dst_mac 02:cb:22:18:8c:3a vlan_id 1819 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10375 flower src_mac 02:5e:41:3d:ee:af dst_mac 02:92:32:54:ac:ad vlan_id 611 vlan_ethtype ip src_ip 37.213.31.116 dst_ip 23.174.189.73 action trap && tc filter add dev swp33 ingress protocol ip pref 10376 flower src_mac 02:79:47:dd:d8:db dst_mac 02:7c:6b:56:17:d5 src_ip 12.174.211.6 dst_ip 37.241.90.241 ip_proto udp src_port 28437 dst_port 42715 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10377 flower src_mac 02:70:50:df:52:ad dst_mac 02:e1:2b:fc:e3:29 vlan_id 1270 vlan_ethtype 0x0800 src_ip 47.114.227.111 dst_ip 28.255.164.196 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10378 flower src_mac 02:50:82:c1:2a:57 dst_mac 02:67:54:75:c5:fa vlan_id 935 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10379 flower src_mac 02:50:01:1e:e1:be dst_mac 02:1c:f4:fe:45:77 vlan_id 2746 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10380 flower src_mac 02:d7:80:18:f6:be dst_mac 02:7e:8d:c6:c2:8c vlan_id 1780 vlan_ethtype 0x0800 src_ip 112.210.72.88 dst_ip 16.211.240.2 ip_proto tcp src_port 43438 dst_port 21888 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10381 flower src_mac 02:da:5a:8c:77:3a dst_mac 02:3e:4d:ac:59:ea vlan_id 863 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10382 flower src_mac 02:6a:3a:ae:bf:a1 dst_mac 02:c3:a9:ca:49:5e src_ip 114.5.246.123 dst_ip 51.217.39.138 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10383 flower src_mac 02:f7:a5:fd:b3:4c dst_mac 02:e5:00:78:ee:e4 src_ip 72.143.158.128 dst_ip 58.248.42.234 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10384 flower src_mac 02:a5:50:63:8e:76 dst_mac 02:2b:d9:df:c9:f9 vlan_id 2637 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10385 flower src_mac 02:df:c5:71:2b:20 dst_mac 02:d3:18:be:30:77 src_ip 34.104.76.93 dst_ip 111.239.35.110 ip_proto udp src_port 36009 dst_port 45750 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10386 flower src_mac 02:f8:15:fa:b0:87 dst_mac 02:52:c4:c7:cc:f6 src_ip 69.96.255.101 dst_ip 20.1.81.111 ip_proto udp src_port 50693 dst_port 63021 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10387 flower src_mac 02:0e:84:16:38:21 dst_mac 02:bd:4a:47:6a:b9 vlan_id 3295 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10388 flower src_mac 02:e4:f1:bc:c3:38 dst_mac 02:e4:3a:43:bc:59 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10389 flower src_mac 02:d8:17:b0:98:fc dst_mac 02:f0:dc:5d:6c:27 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10390 flower src_mac 02:11:b8:f6:dd:41 dst_mac 02:df:1d:5d:bb:08 action trap && tc filter add dev swp33 ingress protocol ip pref 10391 flower src_mac 02:15:f4:2e:3a:12 dst_mac 02:92:19:19:63:e9 src_ip 61.81.173.35 dst_ip 55.253.241.205 ip_proto tcp src_port 4410 dst_port 26324 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10392 flower src_mac 02:2c:07:2d:b3:eb dst_mac 02:1e:d7:24:5c:99 vlan_id 2145 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10393 flower src_mac 02:00:9e:80:0a:80 dst_mac 02:80:69:af:0e:34 vlan_id 778 vlan_ethtype ipv4 src_ip 93.158.66.17 dst_ip 74.15.97.138 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10394 flower src_mac 02:0a:52:bb:09:1b dst_mac 02:d8:c0:d0:75:7a vlan_id 1623 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10395 flower src_mac 02:b9:76:4d:25:b8 dst_mac 02:af:f4:83:61:69 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10396 flower src_mac 02:04:7d:92:02:79 dst_mac 02:7a:ad:a7:00:34 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10397 flower src_mac 02:a2:70:af:04:e4 dst_mac 02:57:7c:61:74:38 action drop && tc filter add dev swp33 ingress protocol ip pref 10398 flower src_mac 02:18:cf:31:8a:0b dst_mac 02:5c:d9:95:7d:e3 src_ip 103.203.155.205 dst_ip 102.232.227.32 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10399 flower src_mac 02:99:b8:64:7f:e3 dst_mac 02:33:0a:a0:2a:68 vlan_id 2694 vlan_ethtype 0x9200 action drop INFO asyncssh:logging.py:92 [conn=24, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=4] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 10000 flower src_mac 02:d2:e5:9d:12:58 dst_mac 02:e7:2e:19:e0:62 vlan_id 571 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10001 flower src_mac 02:53:28:a4:c2:f5 dst_mac 02:79:71:9e:32:8b src_ip 38.137.63.227 dst_ip 48.126.41.33 ip_proto udp src_port 2032 dst_port 18334 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10002 flower src_mac 02:59:4d:34:3d:19 dst_mac 02:29:d2:75:14:69 src_ip 121.163.187.99 dst_ip 118.176.106.152 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10003 flower src_mac 02:f2:37:c1:18:52 dst_mac 02:83:98:83:16:86 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10004 flower src_mac 02:d3:b3:e2:5d:b3 dst_mac 02:c9:69:03:f7:1e src_ip 53.235.161.111 dst_ip 69.22.212.173 ip_proto icmp code 40 type 18 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10005 flower src_mac 02:c2:39:a6:95:7c dst_mac 02:1b:3a:b2:9d:28 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10006 flower src_mac 02:29:f0:39:27:10 dst_mac 02:e7:60:fb:d6:ab src_ip 39.123.28.167 dst_ip 92.78.124.143 ip_proto tcp src_port 3911 dst_port 22693 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10007 flower src_mac 02:27:81:8b:7c:6c dst_mac 02:2b:1e:e3:2d:89 vlan_id 2121 vlan_ethtype ip src_ip 91.77.135.43 dst_ip 89.231.30.115 ip_proto tcp src_port 3796 dst_port 63658 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10008 flower src_mac 02:ed:ea:52:8e:88 dst_mac 02:3c:7b:2f:5d:6e action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10009 flower src_mac 02:72:ab:b2:fa:91 dst_mac 02:14:e0:76:2a:43 vlan_id 1229 vlan_ethtype 0x0800 src_ip 109.179.193.116 dst_ip 126.76.247.231 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10010 flower src_mac 02:fa:81:a6:90:1a dst_mac 02:24:b7:0e:b2:f6 vlan_id 2045 vlan_ethtype ip src_ip 110.175.252.249 dst_ip 30.57.211.64 ip_proto udp src_port 18734 dst_port 33227 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10011 flower src_mac 02:7b:95:1e:af:85 dst_mac 02:7a:3d:59:d9:a7 vlan_id 1040 vlan_ethtype ip src_ip 59.66.66.52 dst_ip 19.98.89.216 ip_proto tcp src_port 33660 dst_port 2095 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10012 flower src_mac 02:a0:7e:c0:eb:91 dst_mac 02:b3:86:77:e0:0f action drop && tc filter add dev swp33 ingress protocol ip pref 10013 flower src_mac 02:f3:ad:a4:72:03 dst_mac 02:7d:63:cc:7f:dd src_ip 72.73.71.62 dst_ip 120.232.120.200 ip_proto icmp code 183 type 16 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10014 flower src_mac 02:6a:a4:f4:d2:54 dst_mac 02:fb:8e:da:44:30 src_ip 64.215.41.92 dst_ip 119.9.184.41 ip_proto icmp code 99 type 13 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10015 flower src_mac 02:43:a6:fa:3d:46 dst_mac 02:a0:5e:24:62:f2 src_ip 31.155.98.84 dst_ip 48.87.41.111 ip_proto icmp code 79 type 15 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10016 flower src_mac 02:a5:d2:0a:5a:ef dst_mac 02:53:71:09:49:97 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10017 flower src_mac 02:09:dc:83:09:b6 dst_mac 02:c5:75:57:7f:5d vlan_id 177 vlan_ethtype 0x0800 src_ip 40.134.197.60 dst_ip 121.186.36.64 ip_proto tcp src_port 11327 dst_port 60373 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10018 flower src_mac 02:23:9e:37:f3:7f dst_mac 02:dd:7f:3c:28:db action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10019 flower src_mac 02:40:21:db:9f:83 dst_mac 02:c7:3c:b0:98:53 vlan_id 3386 vlan_ethtype ip src_ip 49.171.6.247 dst_ip 60.107.220.191 ip_proto udp src_port 39153 dst_port 58661 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10020 flower src_mac 02:0c:61:38:b1:ef dst_mac 02:66:d5:20:89:f1 vlan_id 316 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10021 flower src_mac 02:72:c8:b6:c5:57 dst_mac 02:aa:f8:a2:d8:86 src_ip 105.91.62.53 dst_ip 115.192.79.176 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10022 flower src_mac 02:eb:1b:26:2d:86 dst_mac 02:4a:8b:ec:6c:f0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10023 flower src_mac 02:da:c4:6e:54:cb dst_mac 02:71:90:8a:42:cb vlan_id 389 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10024 flower src_mac 02:06:2b:51:ca:83 dst_mac 02:2d:79:b2:2f:99 vlan_id 3848 vlan_ethtype ip src_ip 24.208.220.55 dst_ip 50.178.129.34 ip_proto tcp src_port 55397 dst_port 50746 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10025 flower src_mac 02:db:3f:00:2f:4d dst_mac 02:fc:89:e1:9e:86 vlan_id 3781 vlan_ethtype 0x0800 src_ip 82.82.64.227 dst_ip 32.198.8.125 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10026 flower src_mac 02:b1:7f:df:b7:99 dst_mac 02:3b:5e:f2:33:e6 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10027 flower src_mac 02:54:76:1c:43:17 dst_mac 02:7b:6b:db:33:03 vlan_id 3825 vlan_ethtype 0x0800 src_ip 53.158.111.148 dst_ip 116.48.37.141 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10028 flower src_mac 02:12:08:bc:68:21 dst_mac 02:a2:2a:4f:3f:6c vlan_id 472 vlan_ethtype ip src_ip 11.52.108.138 dst_ip 111.190.244.178 ip_proto udp src_port 34510 dst_port 43085 action drop && tc filter add dev swp33 ingress protocol ip pref 10029 flower src_mac 02:b3:a9:87:4f:20 dst_mac 02:eb:f8:1a:0c:6c src_ip 60.224.178.187 dst_ip 47.152.127.59 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10030 flower src_mac 02:a4:62:52:f0:c0 dst_mac 02:e7:6f:5e:99:41 vlan_id 893 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10031 flower src_mac 02:cf:fd:48:41:61 dst_mac 02:fb:ac:ee:8a:42 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10032 flower src_mac 02:cd:67:d4:7e:37 dst_mac 02:2e:de:7e:f2:ed action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10033 flower src_mac 02:0c:b1:6f:b8:cf dst_mac 02:de:0b:70:2a:43 vlan_id 3794 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10034 flower src_mac 02:11:04:df:30:13 dst_mac 02:0c:56:5e:a6:69 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10035 flower src_mac 02:d2:d7:a5:5c:9b dst_mac 02:79:70:51:42:30 vlan_id 845 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10036 flower src_mac 02:12:e0:4b:8c:27 dst_mac 02:df:42:03:1d:08 vlan_id 607 vlan_ethtype ip src_ip 124.33.241.238 dst_ip 115.54.234.57 ip_proto tcp src_port 13979 dst_port 27274 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10037 flower src_mac 02:bb:d6:84:b3:5f dst_mac 02:31:53:6c:fb:8f vlan_id 3203 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10038 flower src_mac 02:47:77:b6:1c:55 dst_mac 02:6d:a5:1e:5d:ba vlan_id 1259 vlan_ethtype ipv4 src_ip 73.89.225.122 dst_ip 115.106.198.235 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10039 flower src_mac 02:bd:83:87:4e:c2 dst_mac 02:89:de:1c:cb:bf vlan_id 1465 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10040 flower src_mac 02:95:3a:1a:10:74 dst_mac 02:88:71:fb:5f:36 src_ip 68.173.211.35 dst_ip 89.132.222.100 ip_proto tcp src_port 54855 dst_port 64031 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10041 flower src_mac 02:13:f4:f2:d3:25 dst_mac 02:9a:fb:ca:41:cb src_ip 88.221.240.213 dst_ip 109.8.103.48 ip_proto tcp src_port 47344 dst_port 6346 action drop && tc filter add dev swp33 ingress protocol ip pref 10042 flower src_mac 02:90:29:9a:9d:f7 dst_mac 02:9a:0b:88:01:fd src_ip 72.5.21.101 dst_ip 125.160.45.121 ip_proto tcp src_port 57227 dst_port 15593 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10043 flower src_mac 02:fb:b4:25:42:3a dst_mac 02:b3:d0:fc:02:a8 vlan_id 354 vlan_ethtype ipv4 src_ip 29.17.27.89 dst_ip 79.52.109.150 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10044 flower src_mac 02:60:e3:e5:ff:dc dst_mac 02:3e:bd:ec:98:1c src_ip 91.158.104.169 dst_ip 81.77.185.192 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10045 flower src_mac 02:41:0c:ce:61:12 dst_mac 02:55:40:5e:47:21 vlan_id 2516 vlan_ethtype 0x0800 src_ip 12.245.219.119 dst_ip 35.251.136.222 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10046 flower src_mac 02:e5:cd:ac:f6:e3 dst_mac 02:93:11:3f:72:95 vlan_id 637 vlan_ethtype ip src_ip 125.151.30.140 dst_ip 17.218.181.226 ip_proto tcp src_port 22137 dst_port 52994 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10047 flower src_mac 02:ad:09:d5:68:1c dst_mac 02:23:17:1e:1e:1e src_ip 54.30.98.180 dst_ip 124.104.236.227 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10048 flower src_mac 02:1a:bc:5c:86:11 dst_mac 02:83:d0:cc:14:38 vlan_id 1520 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10049 flower src_mac 02:71:99:70:7e:e2 dst_mac 02:13:7e:8a:93:e8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10050 flower src_mac 02:2b:fe:aa:20:de dst_mac 02:3c:ca:33:ec:fc vlan_id 641 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10051 flower src_mac 02:23:f7:97:f1:d6 dst_mac 02:2e:cc:e7:6c:3a vlan_id 3740 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10052 flower src_mac 02:c3:75:81:26:20 dst_mac 02:83:4a:5c:07:f0 src_ip 124.24.222.104 dst_ip 126.156.37.239 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10053 flower src_mac 02:aa:36:fe:7e:7d dst_mac 02:30:65:85:17:2c src_ip 29.95.176.96 dst_ip 46.64.81.194 ip_proto icmp code 16 type 3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10054 flower src_mac 02:a2:87:d6:ee:88 dst_mac 02:04:b9:b6:47:ec vlan_id 1856 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10055 flower src_mac 02:47:3c:9a:6c:94 dst_mac 02:22:a7:5a:48:1b src_ip 91.72.210.15 dst_ip 110.58.47.27 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10056 flower src_mac 02:c7:49:9f:49:d3 dst_mac 02:0f:b0:52:f0:69 vlan_id 4026 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10057 flower src_mac 02:30:4c:37:58:49 dst_mac 02:ef:e4:71:01:2f vlan_id 1471 vlan_ethtype ip src_ip 59.200.149.39 dst_ip 51.71.137.216 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10058 flower src_mac 02:c8:d3:14:ff:0e dst_mac 02:9e:1c:3d:ac:df src_ip 51.209.77.57 dst_ip 62.238.71.61 ip_proto icmp code 161 type 18 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10059 flower src_mac 02:a5:32:61:b2:df dst_mac 02:5d:03:2e:1d:1f action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10060 flower src_mac 02:05:25:53:d0:51 dst_mac 02:6b:d3:6a:99:c8 vlan_id 3349 vlan_ethtype ip src_ip 80.40.59.43 dst_ip 37.145.131.74 ip_proto tcp src_port 38517 dst_port 59470 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10061 flower src_mac 02:e8:4a:c8:21:39 dst_mac 02:3a:06:28:c5:e2 vlan_id 742 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10062 flower src_mac 02:74:3b:f8:f3:e6 dst_mac 02:c8:16:47:d9:a1 src_ip 100.13.77.1 dst_ip 119.94.54.86 ip_proto udp src_port 56973 dst_port 34540 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10063 flower src_mac 02:bf:5a:a3:f2:cd dst_mac 02:dd:a5:e7:a4:35 vlan_id 1102 vlan_ethtype 0x0800 src_ip 98.93.180.138 dst_ip 38.138.22.10 ip_proto udp src_port 1516 dst_port 50797 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10064 flower src_mac 02:ae:7a:44:e1:9c dst_mac 02:be:ad:30:35:fc src_ip 104.243.198.120 dst_ip 14.62.255.82 ip_proto icmp code 210 type 16 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10065 flower src_mac 02:9b:c8:f2:10:31 dst_mac 02:01:dc:e9:26:bf vlan_id 3128 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10066 flower src_mac 02:65:04:d3:af:70 dst_mac 02:93:8d:8f:0b:5d src_ip 83.15.248.197 dst_ip 77.64.153.102 ip_proto tcp src_port 30691 dst_port 39598 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10067 flower src_mac 02:e9:5b:5c:b2:bb dst_mac 02:af:c9:5d:f2:e1 vlan_id 1185 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10068 flower src_mac 02:1a:8c:aa:4e:67 dst_mac 02:23:e8:77:11:0a vlan_id 2117 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10069 flower src_mac 02:de:62:27:b8:6d dst_mac 02:1c:0b:99:0b:30 vlan_id 3260 vlan_ethtype ip src_ip 119.203.161.13 dst_ip 55.170.147.226 ip_proto tcp src_port 24978 dst_port 12809 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10070 flower src_mac 02:f8:95:9d:46:d5 dst_mac 02:f7:6e:ef:3f:50 vlan_id 627 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10071 flower src_mac 02:a7:8d:b4:56:43 dst_mac 02:b1:d8:e7:f7:f1 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10072 flower src_mac 02:55:3d:46:76:6e dst_mac 02:d8:be:92:27:75 vlan_id 2742 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10073 flower src_mac 02:71:01:00:f8:e1 dst_mac 02:ec:fe:dc:e9:95 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10074 flower src_mac 02:af:7b:aa:c7:25 dst_mac 02:19:de:2d:dc:b2 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10075 flower src_mac 02:47:13:60:52:a8 dst_mac 02:0c:91:f1:99:30 vlan_id 135 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10076 flower src_mac 02:bb:5c:3b:51:c7 dst_mac 02:d8:6a:de:9f:60 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10077 flower src_mac 02:e5:ce:95:51:73 dst_mac 02:eb:60:0f:4c:e2 vlan_id 1853 vlan_ethtype 0x0800 src_ip 88.130.133.126 dst_ip 26.82.90.176 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10078 flower src_mac 02:66:6d:48:cb:af dst_mac 02:56:ca:bb:8d:d2 vlan_id 2507 vlan_ethtype ipv4 src_ip 125.10.157.218 dst_ip 60.97.114.190 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10079 flower src_mac 02:a1:3b:92:39:33 dst_mac 02:86:7d:71:c8:04 src_ip 46.230.16.21 dst_ip 21.75.66.217 ip_proto udp src_port 61627 dst_port 61495 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10080 flower src_mac 02:6b:ba:63:d7:b0 dst_mac 02:69:e1:b6:e2:22 vlan_id 1133 vlan_ethtype 0x0800 src_ip 54.159.126.179 dst_ip 71.190.105.61 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10081 flower src_mac 02:f1:20:69:4e:97 dst_mac 02:5e:59:81:58:a5 vlan_id 16 vlan_ethtype 0x0800 src_ip 111.204.135.191 dst_ip 36.89.117.158 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10082 flower src_mac 02:7e:14:b8:e5:d5 dst_mac 02:22:dc:4d:b2:e8 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10083 flower src_mac 02:e6:07:e8:43:97 dst_mac 02:2e:53:2a:f3:54 vlan_id 666 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10084 flower src_mac 02:46:f4:33:a0:90 dst_mac 02:aa:77:08:c8:db vlan_id 2407 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10085 flower src_mac 02:08:6e:96:35:40 dst_mac 02:9e:76:d2:52:4d action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10086 flower src_mac 02:df:b9:3b:be:73 dst_mac 02:9a:92:88:ec:49 vlan_id 433 vlan_ethtype ip src_ip 27.117.14.193 dst_ip 20.227.20.85 ip_proto udp src_port 4892 dst_port 11833 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10087 flower src_mac 02:df:5a:8b:82:c7 dst_mac 02:8b:ed:86:77:d2 vlan_id 3062 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10088 flower src_mac 02:5b:92:c8:71:b7 dst_mac 02:93:9e:b1:cd:69 vlan_id 270 vlan_ethtype ip src_ip 77.240.47.211 dst_ip 118.199.251.232 ip_proto tcp src_port 58912 dst_port 18269 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10089 flower src_mac 02:54:b2:cc:05:ed dst_mac 02:1b:60:d5:5a:cd vlan_id 2223 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10090 flower src_mac 02:19:18:7c:ab:26 dst_mac 02:f8:66:63:24:4d vlan_id 1256 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10091 flower src_mac 02:ae:a6:5d:e3:b1 dst_mac 02:50:4e:04:2c:4c src_ip 46.68.88.37 dst_ip 43.59.62.65 ip_proto tcp src_port 40062 dst_port 55968 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10092 flower src_mac 02:0f:65:de:f1:19 dst_mac 02:8a:ea:d8:2c:bf vlan_id 565 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10093 flower src_mac 02:48:57:16:0c:fd dst_mac 02:c4:55:dc:12:1e vlan_id 1544 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10094 flower src_mac 02:91:27:56:74:83 dst_mac 02:a0:16:a1:ba:18 vlan_id 1385 vlan_ethtype 0x0800 src_ip 91.178.69.105 dst_ip 107.118.126.63 action pass && tc filter add dev swp33 ingress protocol ip pref 10095 flower src_mac 02:ae:c8:73:f1:08 dst_mac 02:6d:22:18:49:44 src_ip 40.23.70.11 dst_ip 32.46.144.125 action drop && tc filter add dev swp33 ingress protocol ip pref 10096 flower src_mac 02:07:08:1a:ab:7c dst_mac 02:d6:76:60:4c:39 src_ip 92.178.45.119 dst_ip 121.153.180.235 ip_proto tcp src_port 10330 dst_port 29782 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10097 flower src_mac 02:5c:e1:50:30:a7 dst_mac 02:61:c7:20:5b:55 vlan_id 2182 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10098 flower src_mac 02:0e:fe:08:30:f5 dst_mac 02:c5:d7:4c:10:12 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10099 flower src_mac 02:b8:38:02:f4:67 dst_mac 02:97:e7:fe:30:67 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10100 flower src_mac 02:bd:a4:c4:50:74 dst_mac 02:77:41:97:d6:dd vlan_id 1120 vlan_ethtype ip src_ip 44.226.253.218 dst_ip 24.113.156.143 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10101 flower src_mac 02:57:19:fc:20:a8 dst_mac 02:84:78:c7:d3:fe vlan_id 3099 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10102 flower src_mac 02:0c:ea:93:a2:0c dst_mac 02:26:b2:01:f1:81 vlan_id 287 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10103 flower src_mac 02:c2:83:68:5c:32 dst_mac 02:cb:c9:c5:db:38 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10104 flower src_mac 02:0c:00:70:16:9b dst_mac 02:2a:56:a8:5f:01 vlan_id 3276 vlan_ethtype ipv4 src_ip 113.163.168.197 dst_ip 118.159.25.233 ip_proto tcp src_port 13424 dst_port 52365 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10105 flower src_mac 02:f3:4f:46:fc:aa dst_mac 02:0e:8d:3b:c7:45 vlan_id 2820 vlan_ethtype ipv4 src_ip 59.167.239.67 dst_ip 16.31.252.24 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10106 flower src_mac 02:32:cd:cb:85:68 dst_mac 02:e1:74:09:f7:85 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10107 flower src_mac 02:07:f1:f4:1f:3c dst_mac 02:ec:96:ed:60:ca src_ip 95.8.193.22 dst_ip 124.12.77.105 ip_proto icmp code 247 type 0 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10108 flower src_mac 02:ec:3e:be:58:32 dst_mac 02:d9:a6:47:d9:df vlan_id 3149 vlan_ethtype ipv4 src_ip 43.49.210.247 dst_ip 125.85.86.124 ip_proto udp src_port 1859 dst_port 55294 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10109 flower src_mac 02:e3:98:d9:83:00 dst_mac 02:00:bb:b1:a2:16 src_ip 62.134.164.211 dst_ip 67.171.182.179 ip_proto udp src_port 36748 dst_port 17618 action drop && tc filter add dev swp33 ingress protocol ip pref 10110 flower src_mac 02:fd:fb:2f:e5:9d dst_mac 02:f9:1f:e9:36:af src_ip 118.141.205.36 dst_ip 57.141.87.249 ip_proto udp src_port 3740 dst_port 26392 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10111 flower src_mac 02:07:17:18:2f:7f dst_mac 02:a2:56:a8:26:97 src_ip 36.39.15.12 dst_ip 96.47.148.129 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10112 flower src_mac 02:8b:27:c0:40:79 dst_mac 02:cf:a7:4c:a6:4b action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10113 flower src_mac 02:9a:d4:4a:72:44 dst_mac 02:26:7c:31:f2:23 vlan_id 724 vlan_ethtype ip src_ip 66.37.4.196 dst_ip 32.180.7.194 ip_proto udp src_port 18708 dst_port 59120 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10114 flower src_mac 02:23:d5:fb:ae:98 dst_mac 02:b5:84:ba:3f:21 vlan_id 1355 vlan_ethtype ipv4 src_ip 78.185.232.35 dst_ip 46.40.252.220 ip_proto tcp src_port 5036 dst_port 57141 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10115 flower src_mac 02:3d:5b:f5:39:b7 dst_mac 02:0f:cf:f1:e6:4f src_ip 100.2.198.8 dst_ip 76.17.128.77 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10116 flower src_mac 02:f8:68:1c:c4:49 dst_mac 02:da:ee:c6:b0:55 vlan_id 451 vlan_ethtype ipv4 src_ip 31.37.86.54 dst_ip 58.243.123.109 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10117 flower src_mac 02:b4:62:d6:16:f1 dst_mac 02:bc:26:28:d6:c4 vlan_id 3747 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10118 flower src_mac 02:34:60:87:fb:9b dst_mac 02:fb:5e:85:fe:48 src_ip 75.123.207.108 dst_ip 54.150.2.220 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10119 flower src_mac 02:8c:84:b2:22:8a dst_mac 02:53:c4:de:76:be src_ip 35.223.81.53 dst_ip 80.230.10.16 ip_proto udp src_port 11969 dst_port 21317 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10120 flower src_mac 02:c0:2d:a4:1b:6f dst_mac 02:7e:bc:8f:b6:a1 vlan_id 2320 vlan_ethtype ipv4 src_ip 94.108.143.169 dst_ip 108.166.184.89 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10121 flower src_mac 02:16:7b:63:d6:75 dst_mac 02:1e:d7:8d:c5:eb action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10122 flower src_mac 02:91:be:0a:e6:99 dst_mac 02:de:cb:13:62:e6 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10123 flower src_mac 02:e2:87:ca:f8:14 dst_mac 02:8e:c5:8d:da:c4 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10124 flower src_mac 02:03:66:1a:c9:3c dst_mac 02:41:86:75:37:1d vlan_id 906 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10125 flower src_mac 02:24:56:25:27:0e dst_mac 02:ad:b5:b1:2f:d1 src_ip 52.54.52.220 dst_ip 36.114.3.115 ip_proto icmp code 33 type 8 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10126 flower src_mac 02:83:c0:56:d2:44 dst_mac 02:bf:c1:11:4c:df action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10127 flower src_mac 02:a9:9c:66:33:f4 dst_mac 02:b4:4f:62:bb:a1 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10128 flower src_mac 02:23:0f:e5:55:22 dst_mac 02:a4:74:a5:9f:e3 vlan_id 3722 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10129 flower src_mac 02:18:f0:e2:44:04 dst_mac 02:fc:70:60:81:de action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10130 flower src_mac 02:18:9c:68:63:7d dst_mac 02:e9:10:d6:fa:ad vlan_id 2677 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10131 flower src_mac 02:34:a8:68:aa:c1 dst_mac 02:c7:1a:3b:cb:9a action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10132 flower src_mac 02:1c:f2:58:53:58 dst_mac 02:e3:f6:d4:d7:b1 action pass && tc filter add dev swp33 ingress protocol ip pref 10133 flower src_mac 02:68:ff:4f:30:ea dst_mac 02:20:65:26:f5:54 src_ip 73.41.211.91 dst_ip 38.219.235.144 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10134 flower src_mac 02:7c:d7:41:df:b3 dst_mac 02:cb:07:fa:4d:4d vlan_id 2968 vlan_ethtype ipv4 src_ip 61.90.238.182 dst_ip 40.31.40.39 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10135 flower src_mac 02:46:8a:e9:57:5e dst_mac 02:eb:df:1d:56:6f action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10136 flower src_mac 02:4c:13:3e:f1:b6 dst_mac 02:3d:1f:9b:b3:4a vlan_id 3014 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10137 flower src_mac 02:73:86:53:fd:f8 dst_mac 02:60:fb:3c:b9:e5 src_ip 116.99.212.195 dst_ip 43.194.124.184 ip_proto tcp src_port 33763 dst_port 34718 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10138 flower src_mac 02:0f:e3:d6:9c:88 dst_mac 02:f4:08:2b:34:d8 src_ip 78.48.215.204 dst_ip 29.77.86.10 ip_proto icmp code 225 type 5 action trap && tc filter add dev swp33 ingress protocol ip pref 10139 flower src_mac 02:10:a6:0f:66:b7 dst_mac 02:98:09:db:c4:47 src_ip 26.214.98.161 dst_ip 104.21.224.87 ip_proto icmp code 198 type 16 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10140 flower src_mac 02:d2:13:b7:e5:b0 dst_mac 02:fa:65:03:eb:ed src_ip 75.205.116.179 dst_ip 112.177.58.6 ip_proto tcp src_port 61209 dst_port 22250 action pass && tc filter add dev swp33 ingress protocol ip pref 10141 flower src_mac 02:2f:33:39:ea:2d dst_mac 02:93:81:18:19:7c src_ip 52.107.213.49 dst_ip 32.39.41.94 ip_proto icmp code 152 type 8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10142 flower src_mac 02:94:c6:76:f5:00 dst_mac 02:64:ed:07:1d:bc vlan_id 3995 vlan_ethtype ipv4 src_ip 21.135.240.70 dst_ip 97.221.108.56 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10143 flower src_mac 02:a2:58:59:bb:f6 dst_mac 02:ae:f8:38:e5:63 vlan_id 993 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10144 flower src_mac 02:ed:e2:9b:11:e5 dst_mac 02:67:3c:c2:34:1a vlan_id 1552 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10145 flower src_mac 02:1f:e7:cd:8c:62 dst_mac 02:ad:57:a3:95:4a src_ip 104.12.145.34 dst_ip 44.152.55.77 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10146 flower src_mac 02:7a:4a:c4:2a:2a dst_mac 02:94:85:a4:be:72 vlan_id 252 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10147 flower src_mac 02:5a:f9:00:77:be dst_mac 02:ce:95:7b:ea:b0 vlan_id 2471 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10148 flower src_mac 02:cb:bb:b5:f1:1b dst_mac 02:86:68:ef:0f:66 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10149 flower src_mac 02:70:01:2e:3c:d0 dst_mac 02:cb:0e:d0:24:b1 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10150 flower src_mac 02:d2:b8:52:7b:2a dst_mac 02:05:3e:af:5b:16 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10151 flower src_mac 02:11:34:19:62:1d dst_mac 02:1c:f5:0f:cb:54 vlan_id 3447 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10152 flower src_mac 02:ab:af:6a:8c:7a dst_mac 02:14:99:a3:aa:5a src_ip 69.26.244.232 dst_ip 55.109.6.153 ip_proto udp src_port 29126 dst_port 34260 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10153 flower src_mac 02:7f:65:97:28:fc dst_mac 02:d1:52:22:7a:8f vlan_id 502 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10154 flower src_mac 02:7c:ee:fd:c7:73 dst_mac 02:52:49:39:6e:66 src_ip 114.26.242.85 dst_ip 95.19.241.159 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10155 flower src_mac 02:8b:33:ca:66:8f dst_mac 02:e0:e8:55:7e:05 vlan_id 2904 vlan_ethtype ipv4 src_ip 57.68.237.205 dst_ip 35.190.236.33 ip_proto tcp src_port 2585 dst_port 33752 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10156 flower src_mac 02:9a:b4:c0:21:27 dst_mac 02:e6:24:59:04:fb vlan_id 860 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10157 flower src_mac 02:eb:85:e7:86:71 dst_mac 02:30:f2:eb:f1:53 src_ip 72.208.66.82 dst_ip 62.30.112.224 ip_proto udp src_port 47116 dst_port 63693 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10158 flower src_mac 02:8f:29:a6:af:f3 dst_mac 02:4a:ee:92:fd:a8 vlan_id 1842 vlan_ethtype 0x0800 src_ip 93.85.107.77 dst_ip 95.109.17.187 ip_proto tcp src_port 40324 dst_port 43107 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10159 flower src_mac 02:b4:1a:55:60:eb dst_mac 02:00:88:5c:59:37 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10160 flower src_mac 02:9e:55:97:96:9e dst_mac 02:a5:94:e9:6f:7a action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10161 flower src_mac 02:58:ce:6a:8b:25 dst_mac 02:10:b8:0b:3e:a9 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10162 flower src_mac 02:5c:06:36:9e:1c dst_mac 02:33:ac:22:b0:6f vlan_id 1049 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10163 flower src_mac 02:20:08:76:f4:af dst_mac 02:a6:4e:fb:04:30 src_ip 114.205.241.243 dst_ip 112.231.78.85 ip_proto udp src_port 54102 dst_port 56907 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10164 flower src_mac 02:26:b1:c9:24:fe dst_mac 02:40:df:58:b0:bb vlan_id 3331 vlan_ethtype ipv4 src_ip 105.240.0.105 dst_ip 111.91.152.162 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10165 flower src_mac 02:b5:63:d8:e5:57 dst_mac 02:27:8c:f0:be:66 src_ip 65.109.114.9 dst_ip 85.97.35.228 ip_proto icmp code 138 type 18 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10166 flower src_mac 02:33:b0:05:5f:a1 dst_mac 02:14:2c:2f:d7:b8 src_ip 15.192.22.248 dst_ip 97.136.128.133 ip_proto tcp src_port 34960 dst_port 45465 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10167 flower src_mac 02:82:fb:ad:d1:52 dst_mac 02:c0:bc:3c:45:5d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10168 flower src_mac 02:ae:06:4d:e7:38 dst_mac 02:f3:6f:f9:74:1c vlan_id 1981 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10169 flower src_mac 02:3c:96:0a:8f:b9 dst_mac 02:7a:b1:0b:30:c7 vlan_id 3692 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10170 flower src_mac 02:e2:73:68:cf:7b dst_mac 02:01:a0:fc:4d:37 action pass && tc filter add dev swp33 ingress protocol ip pref 10171 flower src_mac 02:ad:ac:cc:0f:67 dst_mac 02:86:c3:1a:46:98 src_ip 38.255.205.105 dst_ip 59.173.125.79 ip_proto tcp src_port 53083 dst_port 7267 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10172 flower src_mac 02:a6:ac:9b:0e:0f dst_mac 02:1b:7e:fe:be:c0 vlan_id 2985 vlan_ethtype ipv4 src_ip 97.186.87.161 dst_ip 87.247.84.1 ip_proto udp src_port 57519 dst_port 14262 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10173 flower src_mac 02:fc:d6:5b:c5:31 dst_mac 02:a8:fc:a5:be:b6 vlan_id 460 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10174 flower src_mac 02:4f:3a:4d:87:21 dst_mac 02:db:4e:ec:44:bf action trap && tc filter add dev swp33 ingress protocol ip pref 10175 flower src_mac 02:3f:24:b8:6b:95 dst_mac 02:90:53:03:54:ae src_ip 60.83.47.149 dst_ip 27.161.99.162 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10176 flower src_mac 02:73:fa:b8:08:ba dst_mac 02:f8:14:3e:0c:ab vlan_id 27 vlan_ethtype ip src_ip 63.112.84.27 dst_ip 65.171.102.197 ip_proto tcp src_port 1979 dst_port 56350 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10177 flower src_mac 02:14:1a:d0:eb:a1 dst_mac 02:3f:92:cb:47:38 src_ip 61.111.145.32 dst_ip 109.33.117.57 ip_proto icmp code 206 type 18 action trap && tc filter add dev swp33 ingress protocol ip pref 10178 flower src_mac 02:24:96:41:b0:b9 dst_mac 02:14:f3:67:72:4e src_ip 88.149.169.156 dst_ip 40.166.158.213 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10179 flower src_mac 02:32:6a:b6:64:c5 dst_mac 02:80:a3:7a:78:1f vlan_id 534 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10180 flower src_mac 02:41:af:5b:e3:9b dst_mac 02:56:50:64:5a:e0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10181 flower src_mac 02:4c:3c:c0:1e:60 dst_mac 02:15:88:49:14:6c vlan_id 2987 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10182 flower src_mac 02:e6:8e:c6:08:71 dst_mac 02:ea:63:40:f3:16 vlan_id 3790 vlan_ethtype ipv4 src_ip 25.218.208.78 dst_ip 65.243.255.111 ip_proto tcp src_port 28764 dst_port 55442 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10183 flower src_mac 02:b2:6c:38:54:4d dst_mac 02:52:5f:f2:8c:ae vlan_id 1647 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10184 flower src_mac 02:12:58:ed:8d:07 dst_mac 02:77:02:4a:7f:54 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10185 flower src_mac 02:6a:6e:50:8f:7a dst_mac 02:40:13:9c:c0:47 src_ip 96.46.253.216 dst_ip 11.181.13.86 ip_proto udp src_port 50819 dst_port 2783 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10186 flower src_mac 02:6e:a5:69:03:b3 dst_mac 02:c3:04:78:ea:c6 src_ip 42.123.184.65 dst_ip 94.123.131.165 ip_proto icmp code 248 type 3 action trap && tc filter add dev swp33 ingress protocol ip pref 10187 flower src_mac 02:30:4d:e2:ce:95 dst_mac 02:5e:5d:ca:c7:99 src_ip 126.78.80.156 dst_ip 64.152.67.169 ip_proto tcp src_port 8595 dst_port 57969 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10188 flower src_mac 02:e5:24:c7:01:2e dst_mac 02:d3:4d:39:89:73 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10189 flower src_mac 02:68:5b:00:d7:01 dst_mac 02:40:79:ba:7f:94 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10190 flower src_mac 02:d0:2c:94:eb:07 dst_mac 02:ef:9b:b2:55:94 vlan_id 2894 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10191 flower src_mac 02:80:10:82:6d:59 dst_mac 02:e9:2a:77:76:63 vlan_id 523 vlan_ethtype 0x0800 src_ip 84.181.197.202 dst_ip 30.229.62.46 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10192 flower src_mac 02:56:6a:36:f5:fe dst_mac 02:ce:00:7c:75:cd vlan_id 2507 vlan_ethtype ipv4 src_ip 97.70.241.12 dst_ip 107.24.135.207 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10193 flower src_mac 02:43:ba:58:d1:3f dst_mac 02:12:82:60:a0:aa action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10194 flower src_mac 02:54:9e:d8:f8:c4 dst_mac 02:37:d8:63:8b:45 vlan_id 2257 vlan_ethtype 0x0800 src_ip 29.85.174.242 dst_ip 39.110.167.37 ip_proto tcp src_port 63146 dst_port 42562 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10195 flower src_mac 02:ca:17:00:64:2f dst_mac 02:7c:46:15:d9:12 src_ip 23.105.9.61 dst_ip 60.190.229.134 ip_proto udp src_port 64177 dst_port 43871 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10196 flower src_mac 02:84:00:da:d9:ae dst_mac 02:90:f6:e3:2a:73 vlan_id 2146 vlan_ethtype 0x0800 src_ip 56.145.40.199 dst_ip 104.154.127.13 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10197 flower src_mac 02:6f:50:e9:aa:d1 dst_mac 02:12:c0:9f:fb:33 vlan_id 739 vlan_ethtype ip src_ip 121.153.179.71 dst_ip 48.149.226.180 ip_proto tcp src_port 10256 dst_port 6451 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10198 flower src_mac 02:72:9a:43:16:dc dst_mac 02:d0:e6:fa:df:7e vlan_id 1442 vlan_ethtype ipv4 src_ip 78.204.35.168 dst_ip 20.218.187.199 ip_proto tcp src_port 27144 dst_port 59072 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10199 flower src_mac 02:79:03:43:ca:f5 dst_mac 02:57:d2:00:3c:2d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10200 flower src_mac 02:a4:ac:dc:1a:f4 dst_mac 02:18:e2:35:95:ec vlan_id 1803 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10201 flower src_mac 02:21:5c:c5:2e:33 dst_mac 02:fa:9f:aa:9f:4f src_ip 76.10.117.62 dst_ip 36.90.201.131 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10202 flower src_mac 02:35:59:b4:87:6f dst_mac 02:a6:5d:d9:cb:5e vlan_id 164 vlan_ethtype ip src_ip 77.71.193.136 dst_ip 82.181.150.40 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10203 flower src_mac 02:16:14:36:ad:6d dst_mac 02:61:59:52:83:ff vlan_id 916 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10204 flower src_mac 02:51:e5:a2:a8:d0 dst_mac 02:e7:eb:50:72:58 src_ip 83.223.146.185 dst_ip 102.154.148.116 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10205 flower src_mac 02:4e:be:a9:4f:28 dst_mac 02:88:18:56:f5:be vlan_id 469 vlan_ethtype ip src_ip 42.180.222.94 dst_ip 101.143.82.177 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10206 flower src_mac 02:6f:60:c4:cb:f8 dst_mac 02:92:cb:84:fc:2f vlan_id 1593 vlan_ethtype 0x0800 src_ip 18.38.71.222 dst_ip 97.32.218.246 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10207 flower src_mac 02:e2:e8:de:ab:cb dst_mac 02:e0:2d:d5:08:ef vlan_id 2163 vlan_ethtype ip src_ip 35.69.33.76 dst_ip 104.157.122.147 ip_proto tcp src_port 58366 dst_port 55150 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10208 flower src_mac 02:bb:cf:43:06:a6 dst_mac 02:ca:eb:29:76:97 src_ip 112.188.15.199 dst_ip 120.167.191.94 ip_proto tcp src_port 5913 dst_port 34489 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10209 flower src_mac 02:80:46:ce:39:49 dst_mac 02:aa:57:c8:d4:6b vlan_id 3217 vlan_ethtype ip src_ip 28.160.117.39 dst_ip 40.76.188.58 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10210 flower src_mac 02:bf:e5:de:24:3a dst_mac 02:25:81:49:33:c0 vlan_id 3924 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10211 flower src_mac 02:f8:b2:2e:11:f8 dst_mac 02:fe:d1:0c:89:cf vlan_id 2068 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10212 flower src_mac 02:00:4e:8b:78:c0 dst_mac 02:df:18:68:0b:45 vlan_id 2840 vlan_ethtype 0x0800 src_ip 101.14.61.67 dst_ip 125.227.207.127 ip_proto udp src_port 9139 dst_port 46285 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10213 flower src_mac 02:f5:57:5e:d7:c0 dst_mac 02:f2:bb:d8:a0:e8 vlan_id 833 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10214 flower src_mac 02:80:b8:25:bf:a2 dst_mac 02:70:27:72:17:26 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10215 flower src_mac 02:ec:7a:c6:f5:01 dst_mac 02:a9:f7:61:2b:b9 vlan_id 887 vlan_ethtype ip src_ip 26.117.206.53 dst_ip 97.191.224.246 action drop && tc filter add dev swp33 ingress protocol ip pref 10216 flower src_mac 02:a9:c5:93:e4:67 dst_mac 02:b2:8c:e7:92:b4 src_ip 81.18.104.175 dst_ip 81.156.218.179 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10217 flower src_mac 02:c0:00:75:58:10 dst_mac 02:9e:95:2a:a8:df action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10218 flower src_mac 02:68:b1:ac:38:55 dst_mac 02:5c:3c:b7:f6:5f src_ip 64.217.113.16 dst_ip 50.96.118.28 ip_proto icmp code 115 type 5 action trap && tc filter add dev swp33 ingress protocol ip pref 10219 flower src_mac 02:69:43:a1:77:0d dst_mac 02:3e:65:1d:d5:d0 src_ip 70.240.44.102 dst_ip 53.98.21.18 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10220 flower src_mac 02:b0:ba:c1:d3:50 dst_mac 02:cd:83:7e:74:9b action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10221 flower src_mac 02:99:02:98:6d:95 dst_mac 02:8a:bf:eb:f9:27 vlan_id 580 vlan_ethtype 0x0800 src_ip 116.233.197.76 dst_ip 84.235.12.1 ip_proto tcp src_port 3984 dst_port 40132 action drop && tc filter add dev swp33 ingress protocol ip pref 10222 flower src_mac 02:60:81:ab:01:47 dst_mac 02:aa:b6:84:d5:73 src_ip 103.187.108.82 dst_ip 109.210.33.201 ip_proto icmp code 109 type 8 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10223 flower src_mac 02:58:34:5f:2e:46 dst_mac 02:84:d6:5c:7e:05 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10224 flower src_mac 02:a3:81:ab:d6:e3 dst_mac 02:2f:8e:38:3e:ab src_ip 21.115.161.154 dst_ip 49.68.90.199 ip_proto icmp code 28 type 5 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10225 flower src_mac 02:19:22:db:04:29 dst_mac 02:dd:07:54:6a:8f action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10226 flower src_mac 02:58:9a:84:86:b0 dst_mac 02:73:2b:95:e8:a7 vlan_id 2803 vlan_ethtype ipv4 src_ip 36.122.164.56 dst_ip 17.85.206.201 ip_proto udp src_port 38143 dst_port 31998 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10227 flower src_mac 02:1a:ef:fe:a8:87 dst_mac 02:e0:c1:01:2f:f3 src_ip 12.178.73.100 dst_ip 49.143.13.121 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10228 flower src_mac 02:13:cd:f9:94:2e dst_mac 02:f9:70:19:d3:43 vlan_id 1604 vlan_ethtype 0x0800 src_ip 89.225.62.245 dst_ip 64.206.101.138 ip_proto udp src_port 17856 dst_port 4384 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10229 flower src_mac 02:36:94:09:81:f6 dst_mac 02:34:47:1d:57:85 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10230 flower src_mac 02:9e:36:d9:60:bd dst_mac 02:11:75:fe:de:f5 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10231 flower src_mac 02:7f:1d:68:ee:e2 dst_mac 02:7d:d5:b9:b5:f1 src_ip 76.249.71.220 dst_ip 111.109.37.151 ip_proto tcp src_port 32057 dst_port 48434 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10232 flower src_mac 02:d2:19:96:8e:ca dst_mac 02:94:6d:a3:11:dd vlan_id 3169 vlan_ethtype ip src_ip 13.230.245.2 dst_ip 60.53.220.19 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10233 flower src_mac 02:c7:c7:31:c2:33 dst_mac 02:f4:36:9e:ce:5e vlan_id 1321 vlan_ethtype ipv4 src_ip 20.187.96.134 dst_ip 89.45.145.164 action trap && tc filter add dev swp33 ingress protocol ip pref 10234 flower src_mac 02:ca:83:58:2e:fc dst_mac 02:07:b3:18:b6:bf src_ip 116.101.114.165 dst_ip 99.44.132.142 ip_proto icmp code 0 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10235 flower src_mac 02:b0:f1:b4:f7:c4 dst_mac 02:83:f7:14:76:f5 action drop && tc filter add dev swp33 ingress protocol ip pref 10236 flower src_mac 02:b5:8e:a9:6c:a0 dst_mac 02:25:0f:af:c8:98 src_ip 67.71.66.190 dst_ip 21.90.214.29 ip_proto udp src_port 21732 dst_port 20223 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10237 flower src_mac 02:59:f8:8b:1a:3a dst_mac 02:2d:47:3e:30:41 vlan_id 4005 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10238 flower src_mac 02:6d:65:16:6a:51 dst_mac 02:77:b6:66:ce:f6 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10239 flower src_mac 02:37:ed:06:7c:48 dst_mac 02:e0:53:67:c9:01 src_ip 49.167.122.74 dst_ip 38.80.28.230 ip_proto icmp code 73 type 14 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10240 flower src_mac 02:00:d3:a5:3b:1c dst_mac 02:bb:cf:ea:46:18 src_ip 55.70.180.120 dst_ip 33.124.46.97 ip_proto tcp src_port 37838 dst_port 7334 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10241 flower src_mac 02:81:66:93:ad:ab dst_mac 02:39:39:9d:40:c1 vlan_id 1600 vlan_ethtype 0x0800 src_ip 123.188.127.197 dst_ip 40.74.95.91 ip_proto tcp src_port 53491 dst_port 42735 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10242 flower src_mac 02:fd:15:6c:26:76 dst_mac 02:28:c7:47:3a:1d vlan_id 3958 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10243 flower src_mac 02:15:e8:7c:0e:d5 dst_mac 02:df:87:e5:8b:72 vlan_id 3980 vlan_ethtype ipv4 src_ip 12.250.174.147 dst_ip 34.40.30.39 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10244 flower src_mac 02:5c:ff:9a:1c:01 dst_mac 02:fe:5f:90:86:af vlan_id 365 vlan_ethtype ipv4 src_ip 112.9.180.81 dst_ip 61.221.123.241 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10245 flower src_mac 02:72:93:a6:1c:52 dst_mac 02:70:b1:0f:1c:ef vlan_id 2751 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10246 flower src_mac 02:55:5b:3c:cf:77 dst_mac 02:67:48:d0:80:a2 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10247 flower src_mac 02:fe:ba:9b:05:d0 dst_mac 02:a4:17:7d:4f:d7 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10248 flower src_mac 02:e7:67:a8:25:c9 dst_mac 02:0a:5b:c7:93:85 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10249 flower src_mac 02:c9:2f:f2:dc:91 dst_mac 02:ed:c8:b2:e5:91 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10250 flower src_mac 02:4e:14:0f:9a:2c dst_mac 02:94:1d:01:86:6e action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10251 flower src_mac 02:de:dd:ae:d7:0c dst_mac 02:32:77:65:ad:8f src_ip 121.20.218.153 dst_ip 50.39.161.105 action trap && tc filter add dev swp33 ingress protocol ip pref 10252 flower src_mac 02:bf:cd:04:ea:49 dst_mac 02:66:80:a3:ad:3f src_ip 103.99.4.29 dst_ip 65.129.51.94 ip_proto udp src_port 24045 dst_port 57099 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10253 flower src_mac 02:4a:8b:47:cf:49 dst_mac 02:64:c9:ec:bf:0e src_ip 49.201.72.175 dst_ip 34.224.167.147 ip_proto tcp src_port 9424 dst_port 11721 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10254 flower src_mac 02:3d:42:c6:15:1c dst_mac 02:28:a5:ec:9e:85 src_ip 55.225.21.223 dst_ip 110.232.26.35 ip_proto tcp src_port 30746 dst_port 22124 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10255 flower src_mac 02:87:be:eb:3f:1b dst_mac 02:ea:da:74:57:39 vlan_id 2492 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10256 flower src_mac 02:c5:73:81:3b:79 dst_mac 02:35:b0:f4:3b:b8 src_ip 21.179.98.131 dst_ip 59.109.14.65 ip_proto icmp code 41 type 11 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10257 flower src_mac 02:a0:b2:25:aa:1d dst_mac 02:b7:8b:25:d2:28 src_ip 48.131.138.235 dst_ip 61.142.250.115 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10258 flower src_mac 02:5f:94:13:f1:65 dst_mac 02:16:5e:d5:06:19 vlan_id 3794 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 10259 flower src_mac 02:ad:a9:91:3d:a6 dst_mac 02:e7:b3:84:76:ee src_ip 61.216.133.60 dst_ip 45.136.212.137 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10260 flower src_mac 02:59:d7:5e:e8:8d dst_mac 02:08:50:58:9e:72 vlan_id 1566 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10261 flower src_mac 02:1b:bc:9e:59:f1 dst_mac 02:cf:51:a3:3c:ed vlan_id 1152 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10262 flower src_mac 02:4e:f8:b3:5b:a7 dst_mac 02:ba:e1:51:44:1b src_ip 114.57.160.35 dst_ip 18.201.228.11 ip_proto icmp code 32 type 14 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10263 flower src_mac 02:bb:60:25:4b:c8 dst_mac 02:c0:f9:93:7e:57 vlan_id 586 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10264 flower src_mac 02:e3:47:98:00:14 dst_mac 02:f3:5d:12:d2:75 vlan_id 2278 vlan_ethtype ip src_ip 118.175.208.122 dst_ip 94.158.9.211 ip_proto udp src_port 16658 dst_port 33783 action trap && tc filter add dev swp33 ingress protocol ip pref 10265 flower src_mac 02:f7:da:97:61:06 dst_mac 02:82:b4:a6:69:f3 src_ip 49.250.82.123 dst_ip 107.70.47.196 action drop && tc filter add dev swp33 ingress protocol ip pref 10266 flower src_mac 02:fe:ea:0f:42:a7 dst_mac 02:be:b5:ce:9f:a5 src_ip 101.40.142.92 dst_ip 79.58.56.106 ip_proto tcp src_port 58290 dst_port 44772 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10267 flower src_mac 02:c5:da:a9:1d:75 dst_mac 02:de:2b:a5:03:8d vlan_id 1544 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10268 flower src_mac 02:86:dc:24:a0:c5 dst_mac 02:56:f4:93:81:f4 vlan_id 488 vlan_ethtype 0x0800 src_ip 89.15.117.58 dst_ip 81.51.32.176 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10269 flower src_mac 02:1d:38:05:8d:16 dst_mac 02:fd:85:1d:bc:d6 vlan_id 2454 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10270 flower src_mac 02:e0:74:b1:9e:cc dst_mac 02:38:8e:c1:23:34 vlan_id 2391 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10271 flower src_mac 02:8a:6b:9d:61:cd dst_mac 02:d5:79:fc:12:4b vlan_id 1234 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10272 flower src_mac 02:d5:9e:0e:b9:85 dst_mac 02:fd:5c:22:35:67 vlan_id 3295 vlan_ethtype 0x0800 src_ip 40.246.80.43 dst_ip 80.54.172.63 ip_proto udp src_port 59405 dst_port 48571 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10273 flower src_mac 02:b6:33:73:b3:f0 dst_mac 02:0c:31:b1:21:1d vlan_id 2154 vlan_ethtype ip src_ip 18.170.173.138 dst_ip 45.61.137.191 ip_proto tcp src_port 48563 dst_port 30624 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10274 flower src_mac 02:cb:7f:54:6c:e0 dst_mac 02:88:b0:ad:76:22 vlan_id 133 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10275 flower src_mac 02:9f:52:2e:a1:01 dst_mac 02:bc:2c:5c:8b:a8 vlan_id 1024 vlan_ethtype ip src_ip 76.46.232.185 dst_ip 36.124.24.250 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10276 flower src_mac 02:af:68:4b:ef:07 dst_mac 02:fb:f5:05:9c:57 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10277 flower src_mac 02:e2:14:aa:81:3a dst_mac 02:ed:01:0f:9f:7d vlan_id 3844 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10278 flower src_mac 02:34:14:68:7c:4f dst_mac 02:58:84:c0:1d:80 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10279 flower src_mac 02:a4:34:7e:08:53 dst_mac 02:56:06:45:2d:fc action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10280 flower src_mac 02:91:04:29:b7:54 dst_mac 02:3f:9e:59:f6:ad vlan_id 596 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10281 flower src_mac 02:d7:bd:86:c4:e3 dst_mac 02:36:72:db:3c:77 src_ip 115.55.122.12 dst_ip 51.87.69.113 ip_proto udp src_port 6386 dst_port 14126 action drop && tc filter add dev swp33 ingress protocol ip pref 10282 flower src_mac 02:4c:30:79:3b:54 dst_mac 02:15:86:1c:ae:d4 src_ip 27.194.206.148 dst_ip 83.149.134.239 ip_proto udp src_port 5780 dst_port 21280 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10283 flower src_mac 02:d8:18:ec:66:74 dst_mac 02:6c:e0:ec:f0:b8 vlan_id 182 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10284 flower src_mac 02:29:37:a4:56:4e dst_mac 02:6d:0f:e0:c0:1c action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10285 flower src_mac 02:e7:db:93:e4:c0 dst_mac 02:64:7e:23:b5:58 vlan_id 4068 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10286 flower src_mac 02:9f:17:21:99:f9 dst_mac 02:8b:ae:b9:e6:a6 vlan_id 2183 vlan_ethtype 0x0800 src_ip 14.246.83.233 dst_ip 100.245.7.167 ip_proto tcp src_port 28176 dst_port 43804 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10287 flower src_mac 02:d1:bd:43:15:c7 dst_mac 02:a3:ce:8f:b3:65 vlan_id 2164 vlan_ethtype ipv4 src_ip 28.15.176.46 dst_ip 77.76.49.214 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10288 flower src_mac 02:9f:69:f7:56:fa dst_mac 02:36:fb:bf:1f:58 vlan_id 2688 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10289 flower src_mac 02:e2:0a:e8:07:1a dst_mac 02:af:0d:c8:99:50 vlan_id 973 vlan_ethtype ipv4 src_ip 47.240.248.133 dst_ip 19.228.164.128 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10290 flower src_mac 02:e1:95:01:69:c8 dst_mac 02:52:34:01:f9:9e action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10291 flower src_mac 02:6e:ee:f0:33:31 dst_mac 02:22:74:86:cf:d6 action trap && tc filter add dev swp33 ingress protocol ip pref 10292 flower src_mac 02:a1:dd:fc:9b:94 dst_mac 02:74:0d:b4:65:38 src_ip 84.94.255.232 dst_ip 88.253.241.118 ip_proto icmp code 40 type 5 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10293 flower src_mac 02:ed:32:17:cc:bb dst_mac 02:4c:63:43:b4:de action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10294 flower src_mac 02:c8:f4:68:c9:97 dst_mac 02:26:f5:4d:25:77 vlan_id 2975 vlan_ethtype 0x0800 src_ip 86.198.248.168 dst_ip 86.164.58.73 ip_proto tcp src_port 49029 dst_port 7649 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10295 flower src_mac 02:21:74:44:c3:ea dst_mac 02:e3:60:56:39:ee vlan_id 2167 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10296 flower src_mac 02:4c:7b:26:d5:f4 dst_mac 02:e3:c2:d3:e9:58 src_ip 43.196.199.237 dst_ip 17.231.32.77 ip_proto udp src_port 5240 dst_port 51299 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10297 flower src_mac 02:87:c4:b3:93:8d dst_mac 02:5b:3a:3c:c2:b9 src_ip 84.226.51.90 dst_ip 97.45.239.81 ip_proto icmp code 105 type 14 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10298 flower src_mac 02:58:32:e5:06:b8 dst_mac 02:e4:a8:b1:85:1a src_ip 19.103.0.199 dst_ip 123.20.177.132 ip_proto icmp code 60 type 5 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10299 flower src_mac 02:75:bb:fe:09:98 dst_mac 02:ba:04:f7:0f:fa action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10300 flower src_mac 02:07:c4:28:81:c5 dst_mac 02:be:21:63:3e:15 vlan_id 1504 vlan_ethtype 0x0800 src_ip 55.30.160.98 dst_ip 41.37.203.82 ip_proto tcp src_port 54722 dst_port 64787 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10301 flower src_mac 02:63:c4:00:d2:cf dst_mac 02:8d:4e:0c:c1:fa vlan_id 2874 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10302 flower src_mac 02:6e:fa:e6:cb:d0 dst_mac 02:08:f8:c4:bf:72 vlan_id 3587 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10303 flower src_mac 02:44:29:62:43:a2 dst_mac 02:dc:0c:d6:33:82 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10304 flower src_mac 02:e3:77:d9:16:33 dst_mac 02:d2:7c:48:1b:26 vlan_id 1722 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10305 flower src_mac 02:cc:5f:f9:fd:18 dst_mac 02:37:73:53:ed:6e src_ip 27.244.181.28 dst_ip 23.55.32.165 ip_proto icmp code 106 type 4 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10306 flower src_mac 02:67:09:61:a1:a6 dst_mac 02:42:8c:f1:ea:0b src_ip 76.227.101.26 dst_ip 89.74.197.37 ip_proto icmp code 30 type 16 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10307 flower src_mac 02:db:4d:29:7b:ea dst_mac 02:99:56:5a:d6:45 vlan_id 3123 vlan_ethtype 0x0800 src_ip 89.83.39.173 dst_ip 96.162.179.246 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10308 flower src_mac 02:30:a6:8d:58:32 dst_mac 02:f1:47:cf:17:72 vlan_id 68 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10309 flower src_mac 02:aa:c9:c8:bd:ae dst_mac 02:c5:9c:a7:63:a3 vlan_id 3124 vlan_ethtype ipv4 src_ip 32.245.76.75 dst_ip 26.6.18.36 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10310 flower src_mac 02:93:82:4a:a3:30 dst_mac 02:8c:f8:21:41:3d vlan_id 1648 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10311 flower src_mac 02:e8:82:a5:b7:77 dst_mac 02:a7:d4:9e:54:a2 vlan_id 652 vlan_ethtype ipv4 src_ip 58.189.199.61 dst_ip 22.144.179.155 ip_proto tcp src_port 25496 dst_port 4816 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10312 flower src_mac 02:36:90:5e:be:fd dst_mac 02:a1:13:97:4c:b5 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10313 flower src_mac 02:36:e8:cc:33:3b dst_mac 02:6b:2f:20:35:fb src_ip 23.135.225.110 dst_ip 116.207.80.134 ip_proto udp src_port 34101 dst_port 34199 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10314 flower src_mac 02:11:b9:58:ae:1e dst_mac 02:89:41:c6:60:9e vlan_id 3451 vlan_ethtype ip src_ip 102.150.3.232 dst_ip 38.182.14.10 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10315 flower src_mac 02:94:1d:02:e5:f0 dst_mac 02:39:24:f4:b3:2b vlan_id 3362 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10316 flower src_mac 02:ee:88:e1:0e:ec dst_mac 02:b4:e9:5b:72:7d vlan_id 2498 vlan_ethtype ip src_ip 38.62.189.32 dst_ip 81.193.45.17 ip_proto udp src_port 13232 dst_port 28753 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10317 flower src_mac 02:46:76:13:2c:5a dst_mac 02:d8:7f:5c:f6:cf vlan_id 1209 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10318 flower src_mac 02:a9:40:ef:88:6c dst_mac 02:5d:a2:dc:f0:d0 vlan_id 968 vlan_ethtype ip src_ip 105.96.23.60 dst_ip 72.89.68.117 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10319 flower src_mac 02:d3:d8:12:81:67 dst_mac 02:77:3c:d0:04:88 vlan_id 1314 vlan_ethtype ip src_ip 50.38.67.207 dst_ip 104.33.29.222 ip_proto tcp src_port 35565 dst_port 53040 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10320 flower src_mac 02:12:56:e5:0a:fb dst_mac 02:81:50:b2:6f:cc vlan_id 3129 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10321 flower src_mac 02:51:83:b9:e3:81 dst_mac 02:09:42:a3:dd:96 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10322 flower src_mac 02:3b:c0:f8:07:32 dst_mac 02:f7:4e:36:f5:89 vlan_id 1198 vlan_ethtype ip src_ip 51.187.173.117 dst_ip 15.74.100.43 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10323 flower src_mac 02:d0:a9:f8:6a:10 dst_mac 02:bf:85:63:8f:fa vlan_id 2604 vlan_ethtype 0x0800 src_ip 82.102.205.244 dst_ip 71.245.183.208 ip_proto tcp src_port 52611 dst_port 36599 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10324 flower src_mac 02:b4:a2:12:64:01 dst_mac 02:d3:72:c2:ba:61 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10325 flower src_mac 02:56:47:4b:e2:63 dst_mac 02:25:06:0b:c8:57 vlan_id 2679 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10326 flower src_mac 02:b1:f9:b3:f8:9e dst_mac 02:fb:63:29:8a:13 vlan_id 3254 vlan_ethtype 0x0800 src_ip 48.60.125.44 dst_ip 32.101.21.148 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10327 flower src_mac 02:82:04:34:94:03 dst_mac 02:28:98:8a:5d:62 src_ip 71.113.185.181 dst_ip 126.246.100.66 ip_proto udp src_port 38826 dst_port 37603 action trap && tc filter add dev swp33 ingress protocol ip pref 10328 flower src_mac 02:be:42:19:8b:d4 dst_mac 02:50:d0:ad:8a:80 src_ip 98.44.189.114 dst_ip 89.121.6.199 ip_proto udp src_port 15949 dst_port 64039 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10329 flower src_mac 02:28:8a:71:59:a2 dst_mac 02:8b:97:5e:16:70 src_ip 23.62.2.238 dst_ip 103.229.169.195 ip_proto udp src_port 6235 dst_port 14572 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10330 flower src_mac 02:fe:c7:81:08:28 dst_mac 02:fe:58:fa:d3:f5 src_ip 73.22.21.74 dst_ip 97.31.207.213 ip_proto udp src_port 42547 dst_port 242 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10331 flower src_mac 02:27:09:be:ac:98 dst_mac 02:6d:5e:0f:94:77 vlan_id 2783 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10332 flower src_mac 02:8e:4c:ed:d4:00 dst_mac 02:e1:67:60:64:1a vlan_id 779 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10333 flower src_mac 02:00:7e:e0:fd:44 dst_mac 02:08:8c:ff:81:f6 src_ip 13.174.122.153 dst_ip 92.232.19.5 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10334 flower src_mac 02:8b:42:c2:85:d3 dst_mac 02:b5:2d:c8:03:a1 vlan_id 1996 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10335 flower src_mac 02:6f:d1:df:80:0e dst_mac 02:02:c7:79:0a:d6 src_ip 103.241.252.122 dst_ip 90.170.135.203 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10336 flower src_mac 02:20:04:d5:bb:6a dst_mac 02:76:c7:8e:68:29 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10337 flower src_mac 02:08:14:30:09:9c dst_mac 02:39:1b:83:98:cd vlan_id 556 vlan_ethtype 0x0800 src_ip 101.64.28.54 dst_ip 66.91.176.143 ip_proto tcp src_port 19761 dst_port 25469 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10338 flower src_mac 02:65:33:a2:36:2a dst_mac 02:b5:01:cf:26:9b src_ip 53.242.21.147 dst_ip 15.14.13.139 ip_proto icmp code 229 type 8 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10339 flower src_mac 02:c7:c4:d6:8c:45 dst_mac 02:bb:78:89:a8:11 vlan_id 2707 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10340 flower src_mac 02:ed:a8:83:c3:f1 dst_mac 02:50:40:26:19:a7 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10341 flower src_mac 02:3c:d2:c2:3c:59 dst_mac 02:d3:f2:c0:01:0e vlan_id 3773 vlan_ethtype ip src_ip 24.187.161.106 dst_ip 123.123.201.113 ip_proto tcp src_port 26035 dst_port 32874 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10342 flower src_mac 02:4c:0e:e1:04:4d dst_mac 02:67:bb:94:3a:45 vlan_id 3470 vlan_ethtype ipv4 src_ip 42.69.22.107 dst_ip 88.237.2.220 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10343 flower src_mac 02:de:73:fe:56:31 dst_mac 02:1a:18:c3:86:11 vlan_id 1886 vlan_ethtype 0x0800 src_ip 43.80.106.87 dst_ip 93.223.240.175 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10344 flower src_mac 02:55:bb:df:2b:63 dst_mac 02:49:24:ba:74:4a action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10345 flower src_mac 02:db:ee:98:fd:5f dst_mac 02:2b:88:82:2e:a7 src_ip 44.244.208.55 dst_ip 61.40.112.193 ip_proto udp src_port 55513 dst_port 40673 action pass && tc filter add dev swp33 ingress protocol ip pref 10346 flower src_mac 02:a7:f1:15:24:4d dst_mac 02:86:5e:79:aa:52 src_ip 124.255.186.107 dst_ip 61.231.124.135 ip_proto icmp code 186 type 17 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10347 flower src_mac 02:ed:a5:8e:9a:98 dst_mac 02:0b:2e:43:f4:3e src_ip 103.25.172.78 dst_ip 123.235.176.238 ip_proto tcp src_port 26492 dst_port 65333 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10348 flower src_mac 02:21:50:49:a4:b7 dst_mac 02:b0:c0:1b:99:2b vlan_id 1973 vlan_ethtype 0x0800 src_ip 16.229.224.26 dst_ip 13.74.253.118 ip_proto udp src_port 53405 dst_port 48731 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10349 flower src_mac 02:5c:01:c1:a4:10 dst_mac 02:be:e4:2a:2c:5e action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10350 flower src_mac 02:18:8e:b7:56:9c dst_mac 02:97:8e:d0:c5:31 vlan_id 1795 vlan_ethtype ipv4 src_ip 58.9.64.63 dst_ip 106.13.205.152 ip_proto tcp src_port 9531 dst_port 39193 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10351 flower src_mac 02:14:7e:7d:bb:7e dst_mac 02:b4:b3:e6:00:ec vlan_id 817 vlan_ethtype ipv4 src_ip 98.156.93.80 dst_ip 26.194.193.133 ip_proto tcp src_port 30552 dst_port 20088 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10352 flower src_mac 02:2f:08:33:76:0e dst_mac 02:ef:64:d7:74:77 vlan_id 3337 vlan_ethtype ip src_ip 21.80.145.156 dst_ip 69.244.254.115 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10353 flower src_mac 02:a9:42:8b:1e:97 dst_mac 02:3b:93:1d:d2:e5 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10354 flower src_mac 02:74:36:73:36:4b dst_mac 02:8b:05:37:69:16 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10355 flower src_mac 02:3e:69:79:a0:a5 dst_mac 02:35:b7:09:9f:aa vlan_id 971 vlan_ethtype ip src_ip 122.61.204.198 dst_ip 75.188.126.167 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10356 flower src_mac 02:dc:be:6a:94:38 dst_mac 02:1f:49:ed:0f:b3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10357 flower src_mac 02:80:2c:b9:8d:8c dst_mac 02:5d:04:a8:9a:1f vlan_id 1581 vlan_ethtype ipv4 src_ip 101.16.120.237 dst_ip 68.167.252.189 ip_proto tcp src_port 21955 dst_port 6138 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10358 flower src_mac 02:d7:d7:2a:b0:69 dst_mac 02:09:49:11:06:d3 vlan_id 2950 vlan_ethtype ipv4 src_ip 84.202.115.221 dst_ip 32.186.99.72 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10359 flower src_mac 02:ce:84:2a:b8:53 dst_mac 02:7f:f4:72:ad:98 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10360 flower src_mac 02:79:dd:53:b8:b6 dst_mac 02:50:8e:34:f4:4c action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10361 flower src_mac 02:2d:8e:9b:2b:44 dst_mac 02:bd:42:4d:12:60 vlan_id 3700 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10362 flower src_mac 02:b1:ff:a5:05:3b dst_mac 02:11:6b:69:eb:06 vlan_id 199 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10363 flower src_mac 02:75:dc:fe:0c:4d dst_mac 02:e2:71:fd:28:d3 vlan_id 1905 vlan_ethtype ip src_ip 29.95.206.122 dst_ip 59.178.158.31 ip_proto tcp src_port 48669 dst_port 59537 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10364 flower src_mac 02:37:16:7e:43:26 dst_mac 02:66:fd:e1:84:6a vlan_id 2101 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10365 flower src_mac 02:f0:0d:df:84:b3 dst_mac 02:fe:98:4a:af:bb action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10366 flower src_mac 02:d1:64:d1:27:5a dst_mac 02:f0:a2:64:48:cc action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10367 flower src_mac 02:f7:4b:a7:07:87 dst_mac 02:0f:da:62:e8:b8 vlan_id 651 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10368 flower src_mac 02:fd:07:4c:95:ed dst_mac 02:7f:ce:d2:6a:36 vlan_id 2679 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10369 flower src_mac 02:ee:ce:96:03:5a dst_mac 02:60:33:3b:fe:f3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10370 flower src_mac 02:b6:80:8d:3e:fc dst_mac 02:e6:a8:2c:48:40 vlan_id 1586 vlan_ethtype 0x0800 src_ip 91.201.112.41 dst_ip 107.133.125.30 ip_proto tcp src_port 23313 dst_port 35393 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10371 flower src_mac 02:27:d3:c0:0e:04 dst_mac 02:61:8f:d4:fd:55 src_ip 19.243.23.230 dst_ip 89.234.230.162 ip_proto tcp src_port 62631 dst_port 43451 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10372 flower src_mac 02:4b:96:e5:2b:85 dst_mac 02:29:73:53:fa:36 vlan_id 812 vlan_ethtype ip src_ip 85.68.251.38 dst_ip 50.12.240.20 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10373 flower src_mac 02:11:0c:4e:76:db dst_mac 02:f9:6e:48:47:27 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10374 flower src_mac 02:60:7e:83:97:16 dst_mac 02:cb:22:18:8c:3a vlan_id 1819 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10375 flower src_mac 02:5e:41:3d:ee:af dst_mac 02:92:32:54:ac:ad vlan_id 611 vlan_ethtype ip src_ip 37.213.31.116 dst_ip 23.174.189.73 action trap && tc filter add dev swp33 ingress protocol ip pref 10376 flower src_mac 02:79:47:dd:d8:db dst_mac 02:7c:6b:56:17:d5 src_ip 12.174.211.6 dst_ip 37.241.90.241 ip_proto udp src_port 28437 dst_port 42715 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10377 flower src_mac 02:70:50:df:52:ad dst_mac 02:e1:2b:fc:e3:29 vlan_id 1270 vlan_ethtype 0x0800 src_ip 47.114.227.111 dst_ip 28.255.164.196 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10378 flower src_mac 02:50:82:c1:2a:57 dst_mac 02:67:54:75:c5:fa vlan_id 935 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10379 flower src_mac 02:50:01:1e:e1:be dst_mac 02:1c:f4:fe:45:77 vlan_id 2746 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10380 flower src_mac 02:d7:80:18:f6:be dst_mac 02:7e:8d:c6:c2:8c vlan_id 1780 vlan_ethtype 0x0800 src_ip 112.210.72.88 dst_ip 16.211.240.2 ip_proto tcp src_port 43438 dst_port 21888 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10381 flower src_mac 02:da:5a:8c:77:3a dst_mac 02:3e:4d:ac:59:ea vlan_id 863 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10382 flower src_mac 02:6a:3a:ae:bf:a1 dst_mac 02:c3:a9:ca:49:5e src_ip 114.5.246.123 dst_ip 51.217.39.138 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10383 flower src_mac 02:f7:a5:fd:b3:4c dst_mac 02:e5:00:78:ee:e4 src_ip 72.143.158.128 dst_ip 58.248.42.234 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10384 flower src_mac 02:a5:50:63:8e:76 dst_mac 02:2b:d9:df:c9:f9 vlan_id 2637 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10385 flower src_mac 02:df:c5:71:2b:20 dst_mac 02:d3:18:be:30:77 src_ip 34.104.76.93 dst_ip 111.239.35.110 ip_proto udp src_port 36009 dst_port 45750 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10386 flower src_mac 02:f8:15:fa:b0:87 dst_mac 02:52:c4:c7:cc:f6 src_ip 69.96.255.101 dst_ip 20.1.81.111 ip_proto udp src_port 50693 dst_port 63021 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10387 flower src_mac 02:0e:84:16:38:21 dst_mac 02:bd:4a:47:6a:b9 vlan_id 3295 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10388 flower src_mac 02:e4:f1:bc:c3:38 dst_mac 02:e4:3a:43:bc:59 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10389 flower src_mac 02:d8:17:b0:98:fc dst_mac 02:f0:dc:5d:6c:27 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10390 flower src_mac 02:11:b8:f6:dd:41 dst_mac 02:df:1d:5d:bb:08 action trap && tc filter add dev swp33 ingress protocol ip pref 10391 flower src_mac 02:15:f4:2e:3a:12 dst_mac 02:92:19:19:63:e9 src_ip 61.81.173.35 dst_ip 55.253.241.205 ip_proto tcp src_port 4410 dst_port 26324 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10392 flower src_mac 02:2c:07:2d:b3:eb dst_mac 02:1e:d7:24:5c:99 vlan_id 2145 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10393 flower src_mac 02:00:9e:80:0a:80 dst_mac 02:80:69:af:0e:34 vlan_id 778 vlan_ethtype ipv4 src_ip 93.158.66.17 dst_ip 74.15.97.138 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10394 flower src_mac 02:0a:52:bb:09:1b dst_mac 02:d8:c0:d0:75:7a vlan_id 1623 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10395 flower src_mac 02:b9:76:4d:25:b8 dst_mac 02:af:f4:83:61:69 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10396 flower src_mac 02:04:7d:92:02:79 dst_mac 02:7a:ad:a7:00:34 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10397 flower src_mac 02:a2:70:af:04:e4 dst_mac 02:57:7c:61:74:38 action drop && tc filter add dev swp33 ingress protocol ip pref 10398 flower src_mac 02:18:cf:31:8a:0b dst_mac 02:5c:d9:95:7d:e3 src_ip 103.203.155.205 dst_ip 102.232.227.32 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10399 flower src_mac 02:99:b8:64:7f:e3 dst_mac 02:33:0a:a0:2a:68 vlan_id 2694 vlan_ethtype 0x9200 action drop INFO asyncssh:logging.py:92 [conn=24, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 10400 flower src_mac 02:11:6d:31:e8:58 dst_mac 02:12:32:74:b0:ee vlan_id 128 vlan_ethtype 0x0800 src_ip 37.208.133.210 dst_ip 15.122.125.169 ip_proto udp src_port 19280 dst_port 32837 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10401 flower src_mac 02:d0:bc:d4:c2:c6 dst_mac 02:5e:5f:2d:36:37 vlan_id 1950 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10402 flower src_mac 02:73:cb:b4:7e:47 dst_mac 02:24:a9:6c:cb:51 vlan_id 2047 vlan_ethtype ip src_ip 52.33.169.133 dst_ip 84.220.88.9 ip_proto tcp src_port 37057 dst_port 4033 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10403 flower src_mac 02:19:7e:41:06:bc dst_mac 02:0b:d7:20:cd:06 vlan_id 3823 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10404 flower src_mac 02:10:29:99:7b:4a dst_mac 02:8a:4a:a3:17:43 src_ip 53.160.156.218 dst_ip 53.85.139.156 ip_proto icmp code 150 type 13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10405 flower src_mac 02:73:59:a7:10:77 dst_mac 02:92:05:74:1e:0d vlan_id 2331 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10406 flower src_mac 02:7a:db:d8:53:f2 dst_mac 02:f9:83:4d:b7:45 vlan_id 568 vlan_ethtype 0x0800 src_ip 113.235.55.114 dst_ip 44.114.10.158 ip_proto udp src_port 42031 dst_port 62270 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10407 flower src_mac 02:96:c6:2e:4d:87 dst_mac 02:a0:96:04:91:a7 vlan_id 2313 vlan_ethtype ip src_ip 95.48.168.43 dst_ip 102.22.47.145 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10408 flower src_mac 02:bb:9f:6f:77:cf dst_mac 02:3a:1e:c1:81:95 vlan_id 3577 vlan_ethtype ipv4 src_ip 25.144.24.107 dst_ip 62.19.179.106 ip_proto udp src_port 57164 dst_port 48890 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10409 flower src_mac 02:7f:c2:c1:56:f3 dst_mac 02:b0:1f:24:1c:d6 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10410 flower src_mac 02:4e:d4:3e:41:3f dst_mac 02:01:0c:f7:14:55 vlan_id 2798 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10411 flower src_mac 02:95:c1:53:7f:0c dst_mac 02:0a:3a:53:24:de vlan_id 4014 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10412 flower src_mac 02:d7:15:0c:40:ad dst_mac 02:4e:df:28:c6:f5 action pass && tc filter add dev swp33 ingress protocol ip pref 10413 flower src_mac 02:69:6d:b9:a1:4f dst_mac 02:67:3b:16:2a:eb src_ip 105.15.9.135 dst_ip 119.64.251.55 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10414 flower src_mac 02:6e:fc:d5:df:ed dst_mac 02:6b:1b:ca:77:46 vlan_id 4050 vlan_ethtype ipv4 src_ip 91.241.154.143 dst_ip 111.120.169.227 ip_proto udp src_port 43898 dst_port 810 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10415 flower src_mac 02:7a:9d:4f:a7:b2 dst_mac 02:8d:3e:62:73:09 vlan_id 3529 vlan_ethtype ipv4 src_ip 43.106.23.27 dst_ip 11.46.196.32 ip_proto udp src_port 25697 dst_port 54479 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10416 flower src_mac 02:df:09:6d:06:b4 dst_mac 02:b0:7d:41:24:1d vlan_id 3904 vlan_ethtype ip src_ip 68.175.214.114 dst_ip 68.51.214.223 ip_proto tcp src_port 21005 dst_port 31466 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10417 flower src_mac 02:38:52:7c:17:49 dst_mac 02:10:b2:65:28:15 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10418 flower src_mac 02:17:6e:30:e1:de dst_mac 02:09:15:5c:d4:47 src_ip 17.159.63.104 dst_ip 90.221.9.195 ip_proto udp src_port 55102 dst_port 23169 action pass && tc filter add dev swp33 ingress protocol ip pref 10419 flower src_mac 02:d3:37:6d:81:c5 dst_mac 02:36:1d:5c:8d:de src_ip 23.154.18.200 dst_ip 55.213.153.223 ip_proto tcp src_port 56218 dst_port 463 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10420 flower src_mac 02:c1:b1:62:10:17 dst_mac 02:fd:00:8a:81:8a action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10421 flower src_mac 02:b1:39:a2:e3:df dst_mac 02:0f:d9:69:e3:24 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10422 flower src_mac 02:b5:88:73:a2:d3 dst_mac 02:53:53:1e:d5:d5 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10423 flower src_mac 02:7c:ef:87:63:c4 dst_mac 02:b9:39:29:14:44 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10424 flower src_mac 02:dd:c1:c8:6e:f4 dst_mac 02:06:b3:8d:ac:64 vlan_id 2615 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10425 flower src_mac 02:01:10:39:34:77 dst_mac 02:a3:69:45:fe:48 src_ip 66.109.194.234 dst_ip 31.59.157.224 ip_proto tcp src_port 14520 dst_port 56564 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10426 flower src_mac 02:98:db:3a:46:25 dst_mac 02:38:a1:da:b0:1a vlan_id 2898 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10427 flower src_mac 02:8c:d4:f2:c3:83 dst_mac 02:a6:91:26:23:96 vlan_id 2561 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10428 flower src_mac 02:19:41:77:dc:d3 dst_mac 02:c3:7e:9b:81:6c action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10429 flower src_mac 02:ed:c3:ff:ed:68 dst_mac 02:50:49:01:06:e7 src_ip 18.75.66.84 dst_ip 50.64.227.163 ip_proto udp src_port 63377 dst_port 9033 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10430 flower src_mac 02:7d:d7:76:7c:8f dst_mac 02:cd:36:69:c7:ed action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10431 flower src_mac 02:90:ea:ce:b7:e6 dst_mac 02:65:57:f6:e3:73 src_ip 111.80.91.187 dst_ip 21.231.229.31 ip_proto tcp src_port 11975 dst_port 31403 action trap && tc filter add dev swp33 ingress protocol ip pref 10432 flower src_mac 02:58:28:21:b9:71 dst_mac 02:f0:a6:23:c7:3b src_ip 50.156.160.118 dst_ip 39.79.83.77 ip_proto icmp code 167 type 8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10433 flower src_mac 02:b8:53:4d:bd:a4 dst_mac 02:91:d2:fa:09:7e vlan_id 3892 vlan_ethtype 0x0800 src_ip 124.66.83.30 dst_ip 71.15.92.248 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10434 flower src_mac 02:86:7b:01:68:ec dst_mac 02:91:d6:8c:18:90 vlan_id 3616 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10435 flower src_mac 02:ec:05:fd:fd:13 dst_mac 02:9d:12:56:00:83 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10436 flower src_mac 02:34:ad:50:79:67 dst_mac 02:4f:e1:06:9d:68 vlan_id 3380 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10437 flower src_mac 02:fa:74:5e:92:23 dst_mac 02:08:6a:ca:6a:e0 vlan_id 3896 vlan_ethtype 0x0800 src_ip 24.56.180.164 dst_ip 51.158.53.45 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10438 flower src_mac 02:88:48:94:6f:03 dst_mac 02:33:00:af:1f:ff vlan_id 527 vlan_ethtype 0x0800 src_ip 57.92.241.110 dst_ip 32.96.122.78 ip_proto udp src_port 36683 dst_port 10563 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10439 flower src_mac 02:4f:e7:98:f9:a8 dst_mac 02:d2:df:28:cf:96 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10440 flower src_mac 02:9d:98:c2:ea:72 dst_mac 02:36:67:ed:29:b8 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10441 flower src_mac 02:31:0c:b7:e6:55 dst_mac 02:b5:d0:f6:33:1f action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10442 flower src_mac 02:4d:27:6e:01:de dst_mac 02:84:5d:8e:fa:e0 src_ip 37.190.140.70 dst_ip 82.113.247.69 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10443 flower src_mac 02:c3:5a:0e:ee:aa dst_mac 02:ce:31:5d:d0:89 src_ip 50.96.67.181 dst_ip 37.204.119.79 ip_proto udp src_port 31492 dst_port 51730 action trap && tc filter add dev swp33 ingress protocol ip pref 10444 flower src_mac 02:9d:26:dc:fd:a1 dst_mac 02:a1:a0:e6:3f:62 src_ip 42.48.134.39 dst_ip 11.129.46.246 ip_proto tcp src_port 50622 dst_port 7093 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10445 flower src_mac 02:81:0c:fc:bc:13 dst_mac 02:1c:90:d3:e2:17 vlan_id 2974 vlan_ethtype 0x0800 src_ip 75.183.236.3 dst_ip 61.171.93.250 ip_proto tcp src_port 1802 dst_port 14449 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10446 flower src_mac 02:21:6c:45:00:a3 dst_mac 02:36:a8:e5:a1:a9 vlan_id 822 vlan_ethtype ip src_ip 110.58.206.120 dst_ip 76.2.222.75 ip_proto tcp src_port 52498 dst_port 59725 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10447 flower src_mac 02:c1:2c:a9:7f:a6 dst_mac 02:ba:31:79:82:67 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10448 flower src_mac 02:ba:36:5f:3b:71 dst_mac 02:a8:6e:61:78:d5 src_ip 38.212.70.162 dst_ip 101.131.228.152 ip_proto icmp code 119 type 12 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10449 flower src_mac 02:05:f6:b4:68:80 dst_mac 02:30:2a:d7:51:f7 vlan_id 1077 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10450 flower src_mac 02:36:66:de:88:22 dst_mac 02:48:ea:ae:fc:86 vlan_id 3418 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10451 flower src_mac 02:c1:8d:28:e3:8d dst_mac 02:50:ee:33:72:52 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10452 flower src_mac 02:22:d1:69:29:cf dst_mac 02:73:11:00:5f:22 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10453 flower src_mac 02:7c:fe:af:1c:48 dst_mac 02:63:f2:30:54:c3 src_ip 121.239.116.38 dst_ip 120.238.250.154 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10454 flower src_mac 02:77:91:47:ab:06 dst_mac 02:81:a8:26:e7:34 vlan_id 3418 vlan_ethtype ip src_ip 52.132.181.46 dst_ip 89.71.186.9 ip_proto tcp src_port 26699 dst_port 39724 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10455 flower src_mac 02:a4:75:24:2e:c0 dst_mac 02:a0:32:6f:fd:03 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10456 flower src_mac 02:b9:47:48:0e:30 dst_mac 02:98:1b:23:8c:18 src_ip 25.40.160.239 dst_ip 97.110.21.56 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10457 flower src_mac 02:8b:32:a2:26:45 dst_mac 02:45:c2:93:ac:46 vlan_id 239 vlan_ethtype ip src_ip 34.81.238.5 dst_ip 69.74.209.124 ip_proto tcp src_port 48978 dst_port 50032 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10458 flower src_mac 02:43:4f:99:73:29 dst_mac 02:f6:aa:9d:e7:32 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10459 flower src_mac 02:ba:ee:be:22:fe dst_mac 02:af:d8:98:1d:b5 vlan_id 1442 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10460 flower src_mac 02:28:f7:ae:2d:61 dst_mac 02:9f:9b:e6:86:18 vlan_id 3548 vlan_ethtype ipv4 src_ip 25.153.17.115 dst_ip 76.166.143.138 ip_proto udp src_port 25083 dst_port 47256 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10461 flower src_mac 02:8c:04:cc:fd:b6 dst_mac 02:fb:54:f2:52:20 vlan_id 1553 vlan_ethtype ip src_ip 87.170.245.116 dst_ip 88.164.93.75 action trap && tc filter add dev swp33 ingress protocol ip pref 10462 flower src_mac 02:0a:5b:d4:b2:15 dst_mac 02:77:f7:4d:4b:78 src_ip 99.14.68.10 dst_ip 120.251.72.71 ip_proto udp src_port 64289 dst_port 43245 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10463 flower src_mac 02:09:37:c7:2f:91 dst_mac 02:f5:5a:66:53:31 vlan_id 2273 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10464 flower src_mac 02:eb:d2:41:01:88 dst_mac 02:c2:c5:2f:0f:15 vlan_id 9 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10465 flower src_mac 02:59:4f:e4:d6:06 dst_mac 02:30:f1:a7:ab:78 src_ip 115.137.120.54 dst_ip 40.9.10.229 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10466 flower src_mac 02:99:0d:9c:6c:19 dst_mac 02:99:1e:99:d6:39 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10467 flower src_mac 02:b0:39:25:85:2b dst_mac 02:f8:1e:c5:f3:1b vlan_id 2148 vlan_ethtype ip src_ip 115.171.62.151 dst_ip 40.240.19.211 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10468 flower src_mac 02:7b:9b:2d:b1:1d dst_mac 02:62:93:ae:c4:7d src_ip 12.82.219.90 dst_ip 123.122.12.231 ip_proto udp src_port 25745 dst_port 14611 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10469 flower src_mac 02:c8:40:e0:72:9a dst_mac 02:c5:ff:de:f3:f2 src_ip 22.173.246.188 dst_ip 71.159.130.109 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10470 flower src_mac 02:3c:e3:b7:e6:f1 dst_mac 02:a3:e8:ee:6f:01 vlan_id 593 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10471 flower src_mac 02:9b:c7:65:a2:f5 dst_mac 02:79:2c:a9:58:82 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10472 flower src_mac 02:e4:a9:e7:05:3b dst_mac 02:4f:5e:49:12:db vlan_id 937 vlan_ethtype 0x0800 src_ip 109.105.117.39 dst_ip 102.54.64.173 ip_proto tcp src_port 59503 dst_port 32419 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10473 flower src_mac 02:5f:2b:92:0f:54 dst_mac 02:ed:35:e2:6c:0f action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10474 flower src_mac 02:91:6f:cd:c0:8a dst_mac 02:06:4c:e8:92:e2 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10475 flower src_mac 02:c7:c7:6a:d1:10 dst_mac 02:58:b6:2e:17:13 src_ip 34.217.140.234 dst_ip 24.11.236.244 ip_proto tcp src_port 5633 dst_port 27864 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10476 flower src_mac 02:7b:f1:54:1c:af dst_mac 02:4f:3c:1f:96:4c vlan_id 2645 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10477 flower src_mac 02:a9:57:3c:48:97 dst_mac 02:23:a5:38:b2:0d vlan_id 2080 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10478 flower src_mac 02:42:47:d5:43:8f dst_mac 02:8c:94:2c:8e:0b action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10479 flower src_mac 02:cd:0b:8e:42:9e dst_mac 02:10:7c:6b:2a:a1 vlan_id 200 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10480 flower src_mac 02:b3:aa:d8:c7:93 dst_mac 02:b5:59:59:7b:3d vlan_id 2889 vlan_ethtype 0x0800 src_ip 99.253.241.41 dst_ip 46.82.220.59 ip_proto udp src_port 52386 dst_port 25167 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10481 flower src_mac 02:f3:56:a3:1c:e7 dst_mac 02:98:5e:8d:aa:f7 src_ip 100.2.157.182 dst_ip 116.155.12.180 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10482 flower src_mac 02:eb:52:0b:3b:3e dst_mac 02:68:b8:17:3c:c5 vlan_id 1494 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10483 flower src_mac 02:94:08:de:e1:6d dst_mac 02:84:63:a3:8c:40 vlan_id 299 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10484 flower src_mac 02:bf:6c:2a:6a:ac dst_mac 02:23:0f:13:12:ca src_ip 109.164.254.214 dst_ip 114.102.240.126 ip_proto icmp code 92 type 18 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10485 flower src_mac 02:59:2b:b3:d2:21 dst_mac 02:a5:6d:df:59:8d vlan_id 1097 vlan_ethtype 0x0800 src_ip 56.181.62.145 dst_ip 98.184.5.75 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10486 flower src_mac 02:e1:9a:75:cd:86 dst_mac 02:81:d8:36:49:f3 vlan_id 1705 vlan_ethtype 0x0800 src_ip 35.110.161.31 dst_ip 82.50.208.68 ip_proto udp src_port 42845 dst_port 58451 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10487 flower src_mac 02:c6:dd:07:d0:45 dst_mac 02:2a:ca:dd:4b:07 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10488 flower src_mac 02:bf:79:d1:00:ca dst_mac 02:eb:2a:98:cc:36 vlan_id 2985 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10489 flower src_mac 02:ca:52:9e:df:29 dst_mac 02:8f:f0:22:fe:2c src_ip 112.218.35.69 dst_ip 36.34.126.152 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10490 flower src_mac 02:67:93:d3:48:37 dst_mac 02:0e:78:ad:cd:8e src_ip 35.87.197.220 dst_ip 118.198.18.237 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10491 flower src_mac 02:8b:fe:59:da:21 dst_mac 02:98:8d:d3:32:87 vlan_id 1179 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10492 flower src_mac 02:8a:3a:ff:6a:ba dst_mac 02:8e:48:57:10:a3 vlan_id 1812 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10493 flower src_mac 02:06:0d:df:3f:97 dst_mac 02:26:78:1a:d8:27 vlan_id 3746 vlan_ethtype 0x0800 src_ip 115.194.85.33 dst_ip 54.59.76.241 ip_proto udp src_port 54858 dst_port 48622 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10494 flower src_mac 02:82:a9:8b:f4:02 dst_mac 02:0c:bf:7f:1a:09 vlan_id 1517 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10495 flower src_mac 02:ff:f7:5c:ee:13 dst_mac 02:ac:f3:96:01:13 vlan_id 1405 vlan_ethtype ipv4 src_ip 124.163.127.225 dst_ip 97.115.120.24 ip_proto tcp src_port 59257 dst_port 4424 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10496 flower src_mac 02:8a:7f:93:0f:5a dst_mac 02:32:22:d6:78:f8 src_ip 77.14.3.144 dst_ip 106.99.12.186 ip_proto tcp src_port 20778 dst_port 8667 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10497 flower src_mac 02:d6:fe:46:23:cb dst_mac 02:e8:75:00:7d:64 action pass && tc filter add dev swp33 ingress protocol ip pref 10498 flower src_mac 02:b6:df:f6:c0:b7 dst_mac 02:44:0b:06:54:e1 src_ip 112.53.99.63 dst_ip 39.190.8.135 ip_proto udp src_port 28115 dst_port 62799 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10499 flower src_mac 02:7b:b2:90:2d:d2 dst_mac 02:7e:5d:e8:9d:d8 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10500 flower src_mac 02:e8:89:61:08:4b dst_mac 02:12:38:f4:04:89 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10501 flower src_mac 02:1b:3a:95:52:4b dst_mac 02:0d:ff:55:dc:a0 vlan_id 939 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10502 flower src_mac 02:1e:75:2f:5e:13 dst_mac 02:8e:d2:5d:8f:b1 src_ip 120.161.194.223 dst_ip 59.233.181.93 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10503 flower src_mac 02:0e:3d:08:95:f1 dst_mac 02:bd:6a:3b:21:22 vlan_id 973 vlan_ethtype 0x0800 src_ip 51.70.241.219 dst_ip 42.247.221.210 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10504 flower src_mac 02:e3:da:66:42:ba dst_mac 02:83:6b:dd:5f:d4 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10505 flower src_mac 02:6a:d9:37:9d:6c dst_mac 02:d1:f1:73:b5:36 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10506 flower src_mac 02:97:58:7f:bc:5f dst_mac 02:f8:4c:67:f6:1e action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10507 flower src_mac 02:60:e8:3d:20:e8 dst_mac 02:71:72:07:73:8d src_ip 34.127.219.204 dst_ip 95.33.211.141 ip_proto icmp code 111 type 0 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10508 flower src_mac 02:80:75:a7:5a:d0 dst_mac 02:77:94:93:f6:cc action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10509 flower src_mac 02:d1:bf:72:53:72 dst_mac 02:5a:c7:f9:40:36 vlan_id 3938 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10510 flower src_mac 02:5c:61:76:9c:47 dst_mac 02:7c:4a:ad:a6:0e action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10511 flower src_mac 02:5e:de:2b:74:0e dst_mac 02:bb:fa:af:14:39 src_ip 53.84.205.117 dst_ip 26.4.124.155 ip_proto udp src_port 9091 dst_port 21397 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10512 flower src_mac 02:b2:b8:1c:44:f0 dst_mac 02:71:3d:d7:f1:1a src_ip 72.230.170.73 dst_ip 113.8.126.101 ip_proto udp src_port 20551 dst_port 37841 action trap && tc filter add dev swp33 ingress protocol ip pref 10513 flower src_mac 02:ef:b0:e9:61:53 dst_mac 02:78:6d:c8:59:28 src_ip 85.80.128.63 dst_ip 33.180.123.141 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10514 flower src_mac 02:00:fa:24:ac:fa dst_mac 02:05:ba:54:89:95 vlan_id 1037 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10515 flower src_mac 02:71:89:a6:8f:09 dst_mac 02:f2:aa:67:6b:db vlan_id 36 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10516 flower src_mac 02:34:4a:97:e7:49 dst_mac 02:d7:f2:e1:69:e8 src_ip 110.35.158.170 dst_ip 105.109.94.122 ip_proto tcp src_port 55936 dst_port 57064 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10517 flower src_mac 02:57:0b:2a:e5:4e dst_mac 02:03:9f:46:09:6b vlan_id 2085 vlan_ethtype 0x0800 src_ip 46.191.49.191 dst_ip 28.9.22.70 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10518 flower src_mac 02:56:55:08:0a:cc dst_mac 02:09:f3:23:68:8a src_ip 12.42.33.180 dst_ip 48.8.169.136 ip_proto tcp src_port 35634 dst_port 37611 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10519 flower src_mac 02:b1:ed:86:66:a7 dst_mac 02:d6:b9:46:c7:10 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10520 flower src_mac 02:05:73:d8:be:ea dst_mac 02:84:55:de:f3:4c vlan_id 1324 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10521 flower src_mac 02:d2:27:26:68:53 dst_mac 02:a8:e2:bd:eb:4c vlan_id 2750 vlan_ethtype ipv4 src_ip 13.213.201.1 dst_ip 35.15.227.191 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10522 flower src_mac 02:98:a3:f5:24:79 dst_mac 02:63:65:45:68:e3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10523 flower src_mac 02:33:45:a1:95:ac dst_mac 02:b0:c1:d2:bd:e0 vlan_id 3644 vlan_ethtype 0x0800 src_ip 40.136.146.118 dst_ip 114.84.157.63 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10524 flower src_mac 02:2e:78:5c:94:50 dst_mac 02:85:49:9e:0d:cf vlan_id 702 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10525 flower src_mac 02:c1:2a:72:24:5b dst_mac 02:a7:16:7b:c1:d3 vlan_id 3397 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10526 flower src_mac 02:10:86:02:a3:e7 dst_mac 02:2f:db:6b:98:fe action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10527 flower src_mac 02:41:0b:67:35:18 dst_mac 02:3c:30:84:63:1d src_ip 52.65.229.173 dst_ip 58.194.104.92 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10528 flower src_mac 02:b8:6b:9d:76:2f dst_mac 02:d2:b8:b5:6f:d3 vlan_id 3974 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10529 flower src_mac 02:c1:99:c4:37:e0 dst_mac 02:17:58:0b:c4:09 src_ip 33.111.236.35 dst_ip 96.215.71.213 ip_proto icmp code 223 type 3 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10530 flower src_mac 02:df:57:18:06:41 dst_mac 02:55:36:3a:54:9e action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10531 flower src_mac 02:50:b3:43:05:a3 dst_mac 02:ea:af:27:7b:6b vlan_id 374 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10532 flower src_mac 02:12:a2:a3:d8:3b dst_mac 02:6d:59:47:39:5a vlan_id 3649 vlan_ethtype ip src_ip 77.194.197.92 dst_ip 20.254.85.13 ip_proto udp src_port 14074 dst_port 7725 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10533 flower src_mac 02:65:8e:5b:8c:86 dst_mac 02:d9:97:21:b0:d6 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10534 flower src_mac 02:f0:1d:d3:59:84 dst_mac 02:e1:f4:02:72:83 vlan_id 3436 vlan_ethtype ipv4 src_ip 11.111.30.228 dst_ip 55.244.151.54 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10535 flower src_mac 02:0e:84:81:ce:54 dst_mac 02:fd:1a:20:f1:75 src_ip 116.127.63.96 dst_ip 109.33.163.223 ip_proto udp src_port 21065 dst_port 14727 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10536 flower src_mac 02:e1:77:c3:66:df dst_mac 02:a0:d4:ee:37:1f vlan_id 296 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10537 flower src_mac 02:73:f1:b6:d3:67 dst_mac 02:e9:6e:b6:a1:b4 vlan_id 1164 vlan_ethtype ipv4 src_ip 18.135.128.16 dst_ip 126.91.80.193 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10538 flower src_mac 02:95:6a:a2:d7:5f dst_mac 02:a7:e6:56:06:22 vlan_id 1899 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10539 flower src_mac 02:3a:6a:ff:fe:47 dst_mac 02:90:e2:ac:8d:d6 src_ip 123.68.248.61 dst_ip 64.126.77.223 ip_proto udp src_port 24249 dst_port 46278 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10540 flower src_mac 02:b3:49:c6:5d:84 dst_mac 02:3f:70:d4:e5:8f vlan_id 3106 vlan_ethtype 0x0800 src_ip 55.133.199.18 dst_ip 28.147.147.211 ip_proto udp src_port 2454 dst_port 42194 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10541 flower src_mac 02:a9:1a:3d:bb:61 dst_mac 02:aa:0b:e8:e7:48 vlan_id 1753 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10542 flower src_mac 02:2b:c8:70:15:59 dst_mac 02:f4:e3:9a:cf:27 vlan_id 2639 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10543 flower src_mac 02:52:80:1b:9b:b4 dst_mac 02:7d:cc:ed:33:58 vlan_id 2727 vlan_ethtype ipv4 src_ip 69.192.123.32 dst_ip 76.184.187.72 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10544 flower src_mac 02:20:5c:9d:e6:c4 dst_mac 02:fe:5d:a0:6e:3b action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10545 flower src_mac 02:39:dc:1a:df:e9 dst_mac 02:44:62:73:89:f5 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10546 flower src_mac 02:1c:ff:8d:71:ed dst_mac 02:57:03:57:93:60 vlan_id 319 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10547 flower src_mac 02:ed:3f:55:b0:31 dst_mac 02:93:e8:02:9c:27 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10548 flower src_mac 02:77:a0:e4:a3:af dst_mac 02:4f:5c:c0:0c:ce vlan_id 1241 vlan_ethtype ipv4 src_ip 97.26.203.3 dst_ip 11.235.209.165 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10549 flower src_mac 02:44:17:40:ac:47 dst_mac 02:59:99:a2:21:00 vlan_id 72 vlan_ethtype ipv4 src_ip 79.182.119.47 dst_ip 60.51.143.19 ip_proto udp src_port 7011 dst_port 7460 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10550 flower src_mac 02:48:e7:51:6d:17 dst_mac 02:f8:62:63:07:97 vlan_id 1446 vlan_ethtype ipv4 src_ip 11.230.33.38 dst_ip 118.31.165.132 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10551 flower src_mac 02:7c:04:50:f3:ee dst_mac 02:74:6c:8c:bc:2d src_ip 84.189.95.219 dst_ip 80.145.179.57 ip_proto tcp src_port 54153 dst_port 4983 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10552 flower src_mac 02:4d:38:a3:b0:26 dst_mac 02:1c:d7:ed:30:27 vlan_id 395 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10553 flower src_mac 02:ca:e2:6c:6a:93 dst_mac 02:20:eb:7b:82:dc vlan_id 3705 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10554 flower src_mac 02:1a:03:83:1f:c6 dst_mac 02:43:d0:54:43:fb src_ip 125.151.9.50 dst_ip 97.189.183.132 ip_proto udp src_port 21657 dst_port 44531 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10555 flower src_mac 02:89:e3:45:9b:42 dst_mac 02:98:3e:6e:4c:61 vlan_id 2025 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10556 flower src_mac 02:08:4b:42:47:76 dst_mac 02:be:9b:8d:eb:dd vlan_id 1056 vlan_ethtype ipv4 src_ip 75.33.194.244 dst_ip 20.240.191.60 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10557 flower src_mac 02:41:cc:f3:03:2f dst_mac 02:6c:60:b1:10:ed vlan_id 2135 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10558 flower src_mac 02:fa:20:f5:67:55 dst_mac 02:70:4d:9b:ab:40 vlan_id 1516 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10559 flower src_mac 02:2e:8a:03:64:3a dst_mac 02:ed:06:65:77:e4 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10560 flower src_mac 02:1f:b1:c0:80:e2 dst_mac 02:ed:3b:df:fc:ab vlan_id 1835 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10561 flower src_mac 02:f4:5b:3d:16:99 dst_mac 02:f6:b0:35:7a:59 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10562 flower src_mac 02:8a:ff:ac:54:b9 dst_mac 02:1e:3f:5e:df:53 src_ip 75.239.89.97 dst_ip 65.164.205.118 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10563 flower src_mac 02:20:f4:04:4d:42 dst_mac 02:2b:95:7b:40:aa src_ip 72.57.10.106 dst_ip 91.42.210.11 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10564 flower src_mac 02:6c:1f:07:38:27 dst_mac 02:c6:45:26:d3:4e action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10565 flower src_mac 02:7a:7e:37:f7:92 dst_mac 02:3e:00:9f:59:71 vlan_id 569 vlan_ethtype ip src_ip 70.228.109.122 dst_ip 97.26.123.9 ip_proto udp src_port 31568 dst_port 16112 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10566 flower src_mac 02:47:fc:b9:15:60 dst_mac 02:25:a4:45:09:10 src_ip 65.150.232.103 dst_ip 21.209.49.126 ip_proto icmp code 101 type 13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10567 flower src_mac 02:3a:ac:1d:ff:f0 dst_mac 02:de:c9:c8:e9:cb vlan_id 3705 vlan_ethtype 0x0800 src_ip 109.18.25.179 dst_ip 114.235.15.164 ip_proto tcp src_port 39017 dst_port 29368 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10568 flower src_mac 02:b4:b2:af:ce:88 dst_mac 02:8b:ba:1f:35:91 vlan_id 533 vlan_ethtype ipv4 src_ip 37.29.51.229 dst_ip 66.255.65.78 action pass && tc filter add dev swp33 ingress protocol ip pref 10569 flower src_mac 02:ff:1e:1a:19:c6 dst_mac 02:68:d2:01:f6:f0 src_ip 27.154.7.241 dst_ip 105.30.121.179 ip_proto icmp code 229 type 12 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10570 flower src_mac 02:05:42:f9:a5:0b dst_mac 02:b2:25:7d:e4:ee action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10571 flower src_mac 02:ce:c2:6b:c9:49 dst_mac 02:9f:28:a6:96:7c vlan_id 3508 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10572 flower src_mac 02:d1:08:2c:e6:0b dst_mac 02:53:c0:e1:16:ea vlan_id 863 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10573 flower src_mac 02:dc:12:18:3a:e7 dst_mac 02:9f:a5:42:2c:c2 vlan_id 3080 vlan_ethtype 0x0800 src_ip 102.242.194.219 dst_ip 84.135.56.249 ip_proto tcp src_port 7647 dst_port 57109 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10574 flower src_mac 02:ff:7a:c5:81:1f dst_mac 02:d1:ce:8c:e9:d1 vlan_id 669 vlan_ethtype ipv4 src_ip 43.146.175.234 dst_ip 33.17.226.213 ip_proto tcp src_port 32302 dst_port 15964 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10575 flower src_mac 02:be:88:18:52:70 dst_mac 02:42:9b:9d:1a:3e src_ip 59.67.90.194 dst_ip 75.91.70.188 ip_proto tcp src_port 31764 dst_port 56411 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10576 flower src_mac 02:0d:37:4a:23:a3 dst_mac 02:f6:ed:82:a7:f2 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10577 flower src_mac 02:2a:f5:e8:04:e3 dst_mac 02:d2:40:cd:34:3d action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10578 flower src_mac 02:5f:7c:43:a5:87 dst_mac 02:e7:fd:95:1a:4a action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10579 flower src_mac 02:4f:76:fe:c2:eb dst_mac 02:c3:c0:97:87:83 vlan_id 357 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10580 flower src_mac 02:52:35:e9:10:bf dst_mac 02:50:bd:b4:54:e0 vlan_id 112 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10581 flower src_mac 02:fb:a7:bf:da:fd dst_mac 02:44:50:8f:14:57 vlan_id 1363 vlan_ethtype ipv4 src_ip 61.116.41.124 dst_ip 115.230.1.37 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10582 flower src_mac 02:74:26:3a:2d:14 dst_mac 02:c3:f4:20:94:66 vlan_id 2524 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10583 flower src_mac 02:ff:fd:78:16:54 dst_mac 02:1e:56:b4:79:f7 vlan_id 2306 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10584 flower src_mac 02:26:fd:4d:e8:78 dst_mac 02:69:8c:fc:c3:1d vlan_id 3961 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10585 flower src_mac 02:a7:52:c1:16:c5 dst_mac 02:7f:38:87:db:90 vlan_id 3460 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10586 flower src_mac 02:d7:89:98:17:25 dst_mac 02:52:41:4f:7c:6f action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10587 flower src_mac 02:01:6b:40:65:d8 dst_mac 02:4f:c5:6e:5a:82 vlan_id 385 vlan_ethtype ip src_ip 64.160.230.70 dst_ip 99.130.60.124 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10588 flower src_mac 02:f6:d1:50:43:92 dst_mac 02:b8:fb:f0:94:b5 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10589 flower src_mac 02:5c:17:3f:00:e8 dst_mac 02:db:a5:31:e4:e5 vlan_id 270 vlan_ethtype 0x0800 src_ip 29.19.59.230 dst_ip 107.73.151.180 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10590 flower src_mac 02:e8:91:86:8f:03 dst_mac 02:df:30:d3:de:58 action pass && tc filter add dev swp33 ingress protocol ip pref 10591 flower src_mac 02:06:de:5b:dc:2a dst_mac 02:6f:b9:ac:65:e1 src_ip 100.234.106.34 dst_ip 27.211.149.40 ip_proto tcp src_port 8579 dst_port 27426 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10592 flower src_mac 02:dc:eb:9d:3c:fc dst_mac 02:05:24:d3:9d:6f action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10593 flower src_mac 02:45:d6:9a:b1:64 dst_mac 02:a3:50:70:38:79 vlan_id 913 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10594 flower src_mac 02:09:2a:94:3c:64 dst_mac 02:9c:96:c5:d2:6d vlan_id 4059 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10595 flower src_mac 02:94:77:03:bc:b0 dst_mac 02:a1:72:d0:b4:00 vlan_id 1646 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10596 flower src_mac 02:72:58:74:bf:7b dst_mac 02:ed:9a:c5:0d:b2 vlan_id 2894 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10597 flower src_mac 02:2e:3b:09:a7:3e dst_mac 02:0b:5f:80:9e:de vlan_id 3981 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10598 flower src_mac 02:c2:eb:ce:2b:e9 dst_mac 02:96:fa:d1:d3:2d src_ip 123.188.15.94 dst_ip 26.247.48.205 ip_proto tcp src_port 48984 dst_port 26985 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10599 flower src_mac 02:73:9b:f7:d1:8e dst_mac 02:6e:c5:75:82:3b action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10600 flower src_mac 02:51:9c:c5:65:dc dst_mac 02:aa:84:18:08:a3 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10601 flower src_mac 02:2b:a3:4d:fd:73 dst_mac 02:a5:eb:71:a8:3c vlan_id 1799 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10602 flower src_mac 02:30:ce:5c:5c:b7 dst_mac 02:59:86:00:32:d9 vlan_id 963 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10603 flower src_mac 02:1f:f4:90:71:f9 dst_mac 02:bb:16:30:de:20 vlan_id 2209 vlan_ethtype ipv4 src_ip 69.64.123.123 dst_ip 115.162.199.157 ip_proto udp src_port 31717 dst_port 48978 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10604 flower src_mac 02:7f:cb:90:42:d6 dst_mac 02:a8:a4:19:c7:32 vlan_id 364 vlan_ethtype ipv4 src_ip 63.195.95.159 dst_ip 21.235.116.242 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10605 flower src_mac 02:9a:d0:f5:59:d9 dst_mac 02:31:c7:83:ed:5e vlan_id 3450 vlan_ethtype ip src_ip 56.249.170.231 dst_ip 98.231.43.154 ip_proto udp src_port 62360 dst_port 57592 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10606 flower src_mac 02:39:53:72:66:f1 dst_mac 02:72:8c:81:e8:40 src_ip 13.156.109.40 dst_ip 111.0.74.210 ip_proto icmp code 198 type 12 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10607 flower src_mac 02:59:d3:8b:5d:36 dst_mac 02:00:b4:aa:f5:9c action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10608 flower src_mac 02:e8:48:5f:ca:3f dst_mac 02:76:7d:a0:41:08 vlan_id 117 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10609 flower src_mac 02:0a:2f:1d:09:0e dst_mac 02:e6:24:9d:c7:e4 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10610 flower src_mac 02:0f:a0:8f:11:87 dst_mac 02:e5:76:b3:82:ff vlan_id 1898 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10611 flower src_mac 02:cf:8b:67:4e:2b dst_mac 02:1e:55:b4:f6:3d vlan_id 2531 vlan_ethtype ip src_ip 81.154.92.188 dst_ip 83.169.68.61 ip_proto udp src_port 16002 dst_port 35692 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10612 flower src_mac 02:1b:41:b8:39:73 dst_mac 02:e3:6a:ff:fd:fe src_ip 14.168.150.240 dst_ip 111.97.10.203 ip_proto udp src_port 2887 dst_port 53689 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10613 flower src_mac 02:ae:45:f6:32:23 dst_mac 02:f0:76:3e:e1:53 src_ip 46.156.121.83 dst_ip 11.205.105.52 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10614 flower src_mac 02:ce:f9:7b:45:2c dst_mac 02:8b:04:8c:f1:5f action drop && tc filter add dev swp33 ingress protocol ip pref 10615 flower src_mac 02:49:e2:8b:f7:74 dst_mac 02:82:fb:16:c6:7d src_ip 12.37.155.230 dst_ip 83.193.47.244 ip_proto icmp code 134 type 17 action drop && tc filter add dev swp33 ingress protocol ip pref 10616 flower src_mac 02:e0:f4:ad:93:74 dst_mac 02:66:fc:e6:cb:c9 src_ip 73.182.39.70 dst_ip 91.178.136.130 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10617 flower src_mac 02:88:02:28:9f:ab dst_mac 02:54:53:6d:1b:92 vlan_id 25 vlan_ethtype ip src_ip 22.215.124.211 dst_ip 26.141.28.17 ip_proto udp src_port 28719 dst_port 36192 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10618 flower src_mac 02:bb:c2:48:e0:0d dst_mac 02:8b:e6:9a:21:de src_ip 32.204.87.15 dst_ip 86.111.157.36 action drop && tc filter add dev swp33 ingress protocol ip pref 10619 flower src_mac 02:26:64:b7:ee:16 dst_mac 02:c7:7a:99:1b:9e src_ip 24.200.52.151 dst_ip 13.225.51.241 ip_proto tcp src_port 12083 dst_port 26068 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10620 flower src_mac 02:36:28:19:d2:dc dst_mac 02:ce:9f:d8:0b:95 vlan_id 481 vlan_ethtype ip src_ip 124.191.71.6 dst_ip 114.142.206.20 ip_proto tcp src_port 3322 dst_port 51103 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10621 flower src_mac 02:f1:db:13:fe:63 dst_mac 02:2b:fb:c3:84:9b vlan_id 3852 vlan_ethtype ip src_ip 72.31.16.146 dst_ip 99.107.119.184 ip_proto tcp src_port 4673 dst_port 58263 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10622 flower src_mac 02:4b:e3:ef:ae:bb dst_mac 02:79:ac:af:3f:5b vlan_id 390 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10623 flower src_mac 02:e2:e8:21:39:79 dst_mac 02:92:34:e3:8b:ab src_ip 37.112.106.150 dst_ip 71.119.239.129 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10624 flower src_mac 02:7b:3d:a1:43:e3 dst_mac 02:ec:79:d0:37:f9 src_ip 95.125.162.158 dst_ip 51.164.243.17 ip_proto icmp code 73 type 16 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10625 flower src_mac 02:b8:b8:8f:40:7e dst_mac 02:39:b5:8a:42:37 src_ip 20.94.151.62 dst_ip 58.37.132.130 ip_proto icmp code 213 type 16 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10626 flower src_mac 02:9c:cf:06:19:e1 dst_mac 02:19:ba:39:45:c4 src_ip 77.86.216.175 dst_ip 39.109.241.142 ip_proto icmp code 95 type 12 action drop && tc filter add dev swp33 ingress protocol ip pref 10627 flower src_mac 02:e4:a2:21:a0:d7 dst_mac 02:d9:85:ef:b1:cf src_ip 52.39.41.14 dst_ip 63.42.53.151 ip_proto udp src_port 7469 dst_port 46132 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10628 flower src_mac 02:0d:8e:72:66:7a dst_mac 02:c3:36:63:1a:a8 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10629 flower src_mac 02:a9:cd:5e:de:fb dst_mac 02:f7:7d:6c:86:84 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10630 flower src_mac 02:8c:9f:fd:d3:b4 dst_mac 02:e1:52:50:75:a2 vlan_id 2111 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10631 flower src_mac 02:b6:6a:e9:22:cc dst_mac 02:e2:57:b4:df:a7 vlan_id 3969 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10632 flower src_mac 02:da:d5:27:03:31 dst_mac 02:84:85:10:96:c2 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10633 flower src_mac 02:93:d7:cb:1c:70 dst_mac 02:62:ee:78:ae:27 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10634 flower src_mac 02:63:b3:6e:f1:14 dst_mac 02:e7:57:6b:b8:85 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10635 flower src_mac 02:d3:59:34:a0:03 dst_mac 02:2c:6b:f0:17:f6 src_ip 120.25.122.18 dst_ip 97.224.216.119 ip_proto udp src_port 33690 dst_port 51036 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10636 flower src_mac 02:26:97:3b:51:ca dst_mac 02:44:ca:c2:85:01 vlan_id 3792 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 10637 flower src_mac 02:b1:a8:e5:c1:75 dst_mac 02:c4:07:72:c3:02 src_ip 115.112.225.88 dst_ip 91.228.151.69 ip_proto icmp code 20 type 14 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10638 flower src_mac 02:fa:f6:a2:e9:54 dst_mac 02:e3:80:26:ec:f2 vlan_id 3647 vlan_ethtype ip src_ip 33.199.69.169 dst_ip 98.61.107.175 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10639 flower src_mac 02:b1:2b:be:64:d2 dst_mac 02:66:bd:db:fe:0c src_ip 70.234.29.244 dst_ip 12.52.137.177 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10640 flower src_mac 02:dd:1e:c8:d6:2a dst_mac 02:61:fd:8d:c2:20 vlan_id 3501 vlan_ethtype 0x0800 src_ip 69.245.116.32 dst_ip 32.129.207.9 ip_proto tcp src_port 16266 dst_port 5904 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10641 flower src_mac 02:cd:e7:07:73:e7 dst_mac 02:97:94:e5:07:f0 vlan_id 2410 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10642 flower src_mac 02:55:cf:d0:43:25 dst_mac 02:b5:06:98:d4:e8 action drop && tc filter add dev swp33 ingress protocol ip pref 10643 flower src_mac 02:4e:76:9a:0f:21 dst_mac 02:de:6e:8c:c0:c2 src_ip 87.217.207.197 dst_ip 14.78.207.245 ip_proto udp src_port 60310 dst_port 52453 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10644 flower src_mac 02:4d:05:84:12:f6 dst_mac 02:a7:be:90:fd:62 action drop && tc filter add dev swp33 ingress protocol ip pref 10645 flower src_mac 02:77:34:c8:aa:f9 dst_mac 02:c4:d7:0b:ca:2c src_ip 63.168.105.68 dst_ip 28.220.138.248 ip_proto udp src_port 36514 dst_port 15658 action pass && tc filter add dev swp33 ingress protocol ip pref 10646 flower src_mac 02:4f:e2:f0:eb:cc dst_mac 02:7c:2f:c7:ba:67 src_ip 28.25.175.222 dst_ip 82.67.224.29 ip_proto tcp src_port 30345 dst_port 14649 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10647 flower src_mac 02:8b:61:7b:09:60 dst_mac 02:39:2c:b7:10:47 src_ip 62.78.153.167 dst_ip 45.58.104.11 ip_proto icmp code 218 type 0 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10648 flower src_mac 02:60:8b:0d:60:6d dst_mac 02:30:0e:4b:44:43 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10649 flower src_mac 02:5f:b3:13:ab:7c dst_mac 02:43:1f:20:b4:44 vlan_id 3508 vlan_ethtype ipv4 src_ip 92.69.40.171 dst_ip 37.86.137.73 ip_proto udp src_port 57042 dst_port 47398 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10650 flower src_mac 02:e9:73:77:84:2b dst_mac 02:ad:8d:c9:29:92 vlan_id 3767 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10651 flower src_mac 02:c8:70:61:81:75 dst_mac 02:d3:66:d9:fe:c4 src_ip 98.238.200.223 dst_ip 96.87.10.76 ip_proto tcp src_port 54381 dst_port 38486 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10652 flower src_mac 02:7c:5f:ca:43:bd dst_mac 02:c9:6e:01:b5:ff vlan_id 424 vlan_ethtype 0x0800 src_ip 73.218.245.184 dst_ip 17.187.92.85 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10653 flower src_mac 02:0a:1b:c7:30:26 dst_mac 02:cb:03:be:61:19 vlan_id 4004 vlan_ethtype ipv4 src_ip 41.175.244.74 dst_ip 103.134.162.138 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10654 flower src_mac 02:3a:6d:ba:03:72 dst_mac 02:14:53:6e:38:34 action drop && tc filter add dev swp33 ingress protocol ip pref 10655 flower src_mac 02:fe:6d:78:6a:b3 dst_mac 02:2c:fd:07:12:11 src_ip 25.153.193.2 dst_ip 85.130.30.10 ip_proto icmp code 29 type 16 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10656 flower src_mac 02:3f:65:a3:41:a0 dst_mac 02:d2:f1:96:22:ef action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10657 flower src_mac 02:22:ab:97:05:75 dst_mac 02:66:42:51:f3:ee action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10658 flower src_mac 02:86:ab:ed:d0:90 dst_mac 02:da:95:dc:76:6f src_ip 56.252.230.26 dst_ip 74.38.51.202 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10659 flower src_mac 02:10:70:08:e2:7b dst_mac 02:ee:38:ae:fe:7d vlan_id 2455 vlan_ethtype ip src_ip 50.240.230.7 dst_ip 108.50.50.218 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10660 flower src_mac 02:13:8c:d0:5a:b1 dst_mac 02:77:e1:1c:f2:f5 vlan_id 2605 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10661 flower src_mac 02:95:58:9b:98:37 dst_mac 02:af:83:10:e4:4a vlan_id 349 vlan_ethtype ip src_ip 105.167.137.12 dst_ip 37.89.117.21 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10662 flower src_mac 02:b0:e6:fa:38:7b dst_mac 02:d4:10:e5:cb:17 vlan_id 3695 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10663 flower src_mac 02:c8:79:1c:b3:6d dst_mac 02:a3:e6:8b:76:4b src_ip 51.163.139.17 dst_ip 117.21.76.179 ip_proto icmp code 15 type 14 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10664 flower src_mac 02:a8:d7:94:4a:7e dst_mac 02:38:54:15:94:30 src_ip 76.154.205.164 dst_ip 110.249.181.192 ip_proto udp src_port 6963 dst_port 2025 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10665 flower src_mac 02:30:dc:d8:ab:e0 dst_mac 02:6a:53:c2:f9:1f src_ip 108.210.186.67 dst_ip 19.142.239.200 ip_proto udp src_port 36459 dst_port 59248 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10666 flower src_mac 02:27:a3:14:29:26 dst_mac 02:16:20:73:68:ba vlan_id 2411 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10667 flower src_mac 02:26:d9:72:33:ab dst_mac 02:6b:26:6d:81:29 vlan_id 2825 vlan_ethtype ipv4 src_ip 63.200.247.127 dst_ip 75.152.81.9 ip_proto tcp src_port 7877 dst_port 51054 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10668 flower src_mac 02:8a:13:11:6b:1e dst_mac 02:9c:08:47:26:88 action trap && tc filter add dev swp33 ingress protocol ip pref 10669 flower src_mac 02:02:83:17:4b:b6 dst_mac 02:50:ba:c0:50:d0 src_ip 124.111.124.1 dst_ip 90.206.152.112 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10670 flower src_mac 02:a5:95:d4:db:61 dst_mac 02:90:2e:26:c9:91 vlan_id 1125 vlan_ethtype 0x0800 src_ip 67.108.91.63 dst_ip 96.8.207.34 ip_proto tcp src_port 40804 dst_port 24610 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10671 flower src_mac 02:7c:08:94:2a:e1 dst_mac 02:ab:23:61:86:d5 vlan_id 3021 vlan_ethtype ip src_ip 115.207.216.223 dst_ip 12.188.193.58 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10672 flower src_mac 02:39:7f:c6:13:37 dst_mac 02:de:1c:88:45:f8 vlan_id 3900 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10673 flower src_mac 02:de:d2:ab:57:15 dst_mac 02:b5:52:50:5d:74 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10674 flower src_mac 02:c0:60:9e:ce:54 dst_mac 02:2e:75:b1:1f:4c action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10675 flower src_mac 02:af:33:c7:d4:b6 dst_mac 02:0b:01:7d:ee:aa action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10676 flower src_mac 02:63:cc:39:94:15 dst_mac 02:00:24:cc:23:fc vlan_id 3592 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10677 flower src_mac 02:e9:e4:c0:37:7f dst_mac 02:88:30:85:0f:aa vlan_id 3015 vlan_ethtype 0x0800 src_ip 107.43.224.168 dst_ip 47.42.210.120 ip_proto udp src_port 2012 dst_port 369 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10678 flower src_mac 02:0b:a0:66:4d:41 dst_mac 02:5e:ce:8a:f9:93 vlan_id 2186 vlan_ethtype ip src_ip 124.237.199.107 dst_ip 114.125.55.102 ip_proto tcp src_port 9856 dst_port 43461 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10679 flower src_mac 02:a4:82:9e:6e:20 dst_mac 02:cd:3e:c8:01:60 src_ip 16.221.206.126 dst_ip 46.57.88.162 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10680 flower src_mac 02:8d:26:87:6b:24 dst_mac 02:40:bc:23:f6:a2 src_ip 35.28.32.36 dst_ip 124.45.141.180 ip_proto udp src_port 34041 dst_port 36797 action trap && tc filter add dev swp33 ingress protocol ip pref 10681 flower src_mac 02:a5:79:54:21:55 dst_mac 02:19:39:71:2b:c5 src_ip 20.75.60.91 dst_ip 28.178.242.171 ip_proto udp src_port 10014 dst_port 53301 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10682 flower src_mac 02:b3:e8:37:77:1d dst_mac 02:6f:5c:a6:f7:d0 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10683 flower src_mac 02:a8:fe:d2:ac:02 dst_mac 02:48:82:6d:2a:17 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10684 flower src_mac 02:76:99:72:79:b6 dst_mac 02:1f:ee:d2:a1:fd src_ip 91.44.137.238 dst_ip 15.227.34.219 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10685 flower src_mac 02:f7:a7:90:01:e8 dst_mac 02:79:15:1e:d7:d5 vlan_id 3850 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10686 flower src_mac 02:8a:87:d0:00:90 dst_mac 02:e3:37:4a:83:31 vlan_id 291 vlan_ethtype ipv4 src_ip 27.4.219.181 dst_ip 113.55.97.60 action drop && tc filter add dev swp33 ingress protocol ip pref 10687 flower src_mac 02:91:74:31:49:08 dst_mac 02:ea:e5:e5:ec:c5 src_ip 100.116.66.210 dst_ip 66.163.32.97 action pass && tc filter add dev swp33 ingress protocol ip pref 10688 flower src_mac 02:42:6c:5e:db:ab dst_mac 02:1c:a6:8a:61:e3 src_ip 123.75.87.16 dst_ip 103.171.176.176 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10689 flower src_mac 02:6e:6c:95:50:e6 dst_mac 02:5b:4f:ee:2d:2d vlan_id 3331 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10690 flower src_mac 02:0f:0c:18:c4:74 dst_mac 02:1e:d9:e2:94:0a action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10691 flower src_mac 02:f1:0d:cc:f4:cd dst_mac 02:7b:b3:18:b0:8d action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10692 flower src_mac 02:a6:b1:f1:b0:0c dst_mac 02:73:75:60:df:fc action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10693 flower src_mac 02:14:d7:30:08:aa dst_mac 02:b8:0c:cc:80:3d vlan_id 636 vlan_ethtype 0x0800 src_ip 100.226.253.9 dst_ip 61.190.33.209 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10694 flower src_mac 02:e0:1c:99:d5:93 dst_mac 02:90:dc:66:f8:8e vlan_id 1060 vlan_ethtype 0x0800 src_ip 34.127.85.69 dst_ip 29.138.83.201 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10695 flower src_mac 02:ef:5e:5b:e9:15 dst_mac 02:e5:e8:d0:7c:fb action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10696 flower src_mac 02:e5:04:b6:8a:fb dst_mac 02:71:bc:56:aa:21 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10697 flower src_mac 02:44:b3:23:92:33 dst_mac 02:66:3a:52:51:15 src_ip 91.214.198.249 dst_ip 117.164.242.50 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10698 flower src_mac 02:dd:38:e3:39:70 dst_mac 02:7d:77:7f:b2:58 vlan_id 3525 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10699 flower src_mac 02:0d:7b:3b:30:55 dst_mac 02:19:f7:f5:10:8f vlan_id 2339 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10700 flower src_mac 02:cd:64:18:3c:52 dst_mac 02:09:5e:8f:d3:ca action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10701 flower src_mac 02:0c:7a:90:04:ae dst_mac 02:e7:fe:06:bd:a3 src_ip 16.21.128.81 dst_ip 112.9.164.176 ip_proto udp src_port 6245 dst_port 64405 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10702 flower src_mac 02:6a:33:4e:f5:04 dst_mac 02:38:95:88:41:63 vlan_id 309 vlan_ethtype ipv4 src_ip 96.2.240.148 dst_ip 94.229.222.22 ip_proto tcp src_port 58661 dst_port 22355 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10703 flower src_mac 02:4f:7f:77:59:ef dst_mac 02:73:0d:e6:2f:f7 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10704 flower src_mac 02:ec:28:2a:2e:66 dst_mac 02:16:48:c6:39:7d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10705 flower src_mac 02:78:bb:a9:04:a2 dst_mac 02:65:31:b3:43:b6 vlan_id 3612 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10706 flower src_mac 02:60:5b:f8:ef:7e dst_mac 02:4e:83:9a:f3:10 src_ip 58.120.153.221 dst_ip 121.48.244.8 ip_proto udp src_port 17884 dst_port 24145 action drop && tc filter add dev swp33 ingress protocol ip pref 10707 flower src_mac 02:90:06:5d:32:51 dst_mac 02:dd:26:bf:21:7b src_ip 96.122.135.241 dst_ip 66.138.110.234 ip_proto icmp code 111 type 13 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10708 flower src_mac 02:1b:74:f0:57:1f dst_mac 02:02:3a:aa:4a:20 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10709 flower src_mac 02:00:34:e7:64:6f dst_mac 02:a2:fe:0b:b1:9b vlan_id 3234 vlan_ethtype ip src_ip 38.86.237.7 dst_ip 52.123.113.224 ip_proto udp src_port 53287 dst_port 45667 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10710 flower src_mac 02:56:59:22:34:1d dst_mac 02:dd:8c:71:5b:b5 vlan_id 1247 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10711 flower src_mac 02:6f:13:8a:1a:f6 dst_mac 02:db:00:5f:6c:3c vlan_id 1856 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10712 flower src_mac 02:f7:53:82:1d:42 dst_mac 02:ed:df:43:82:4b src_ip 95.92.209.172 dst_ip 67.98.129.66 ip_proto udp src_port 1789 dst_port 9513 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10713 flower src_mac 02:50:da:70:33:58 dst_mac 02:9b:e3:65:10:59 vlan_id 2295 vlan_ethtype ipv4 src_ip 46.87.184.243 dst_ip 108.190.144.72 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10714 flower src_mac 02:08:08:18:e9:02 dst_mac 02:ea:cb:5b:7b:55 vlan_id 3162 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10715 flower src_mac 02:1e:f0:dd:cf:b1 dst_mac 02:52:63:75:8e:22 vlan_id 3501 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10716 flower src_mac 02:2d:9c:27:22:7d dst_mac 02:1b:c0:a5:f6:c3 vlan_id 4081 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10717 flower src_mac 02:88:b5:9d:95:62 dst_mac 02:4a:69:92:82:82 vlan_id 839 vlan_ethtype ipv4 src_ip 122.211.132.236 dst_ip 32.180.83.178 action trap && tc filter add dev swp33 ingress protocol ip pref 10718 flower src_mac 02:91:1a:6b:15:2d dst_mac 02:a5:51:cb:4b:83 src_ip 101.152.231.31 dst_ip 108.12.244.235 ip_proto tcp src_port 23140 dst_port 19539 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10719 flower src_mac 02:66:dc:cb:2f:1b dst_mac 02:3b:cf:08:93:cd src_ip 77.92.189.7 dst_ip 98.137.101.219 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10720 flower src_mac 02:0f:db:7a:9c:ce dst_mac 02:f6:ec:79:3a:30 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10721 flower src_mac 02:00:48:4a:05:64 dst_mac 02:5b:f4:05:6a:89 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10722 flower src_mac 02:8c:7d:ae:c9:ce dst_mac 02:ab:dd:36:4f:85 vlan_id 1875 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10723 flower src_mac 02:7f:fb:da:e5:c2 dst_mac 02:51:86:f0:45:5a vlan_id 3232 vlan_ethtype 0x0800 src_ip 70.114.172.243 dst_ip 13.58.173.100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10724 flower src_mac 02:c9:94:70:0e:b1 dst_mac 02:b9:49:79:75:ad vlan_id 1589 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10725 flower src_mac 02:04:2b:04:33:d1 dst_mac 02:67:45:bb:74:9f vlan_id 2629 vlan_ethtype ipv4 src_ip 40.90.92.46 dst_ip 65.59.40.207 ip_proto udp src_port 5971 dst_port 25799 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10726 flower src_mac 02:43:93:16:d8:af dst_mac 02:8b:44:ae:68:ec vlan_id 3433 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10727 flower src_mac 02:2c:38:ba:c8:af dst_mac 02:cc:d1:7c:2f:25 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10728 flower src_mac 02:91:33:84:65:f0 dst_mac 02:a2:9a:5f:a4:9a action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10729 flower src_mac 02:75:fc:dd:48:15 dst_mac 02:67:e1:20:46:03 vlan_id 2013 vlan_ethtype ip src_ip 91.219.17.164 dst_ip 53.34.70.157 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10730 flower src_mac 02:6d:b9:e7:13:79 dst_mac 02:54:b4:c3:bb:1c vlan_id 788 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10731 flower src_mac 02:ba:57:49:13:8f dst_mac 02:22:be:07:e8:db src_ip 124.249.197.238 dst_ip 68.61.17.5 ip_proto tcp src_port 22442 dst_port 59538 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10732 flower src_mac 02:cf:e8:72:06:6d dst_mac 02:33:b7:1d:f4:99 vlan_id 962 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10733 flower src_mac 02:0d:e6:2c:c0:a3 dst_mac 02:15:d8:ef:e2:bb vlan_id 767 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10734 flower src_mac 02:af:08:fb:ed:29 dst_mac 02:27:1e:5f:4f:4b vlan_id 723 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10735 flower src_mac 02:76:74:bb:9b:27 dst_mac 02:0f:4d:bb:ff:d1 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10736 flower src_mac 02:dd:82:43:c8:3e dst_mac 02:ee:36:c8:67:e6 vlan_id 3521 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10737 flower src_mac 02:26:cd:ca:03:b6 dst_mac 02:ed:8b:39:57:24 vlan_id 4076 vlan_ethtype ip src_ip 95.61.93.154 dst_ip 72.141.34.61 ip_proto udp src_port 51660 dst_port 29997 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10738 flower src_mac 02:36:38:fd:15:cf dst_mac 02:93:1c:ab:81:4c action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10739 flower src_mac 02:58:c7:98:d3:9b dst_mac 02:6c:d7:08:fb:64 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10740 flower src_mac 02:67:55:96:53:d3 dst_mac 02:ba:81:fa:72:59 vlan_id 528 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10741 flower src_mac 02:cf:03:6c:89:78 dst_mac 02:34:24:9a:b3:d3 vlan_id 1848 vlan_ethtype 0x0800 src_ip 85.186.215.228 dst_ip 26.150.204.225 ip_proto udp src_port 46566 dst_port 22045 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10742 flower src_mac 02:55:b0:8a:3c:79 dst_mac 02:36:f3:46:56:04 vlan_id 3958 vlan_ethtype ip src_ip 17.130.136.210 dst_ip 20.14.149.63 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10743 flower src_mac 02:80:4d:16:44:7b dst_mac 02:37:b3:8c:e4:08 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10744 flower src_mac 02:df:cd:99:e4:c2 dst_mac 02:fa:7b:f5:3f:32 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10745 flower src_mac 02:38:48:35:02:45 dst_mac 02:2d:58:ad:aa:f7 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10746 flower src_mac 02:ec:6e:94:c3:ec dst_mac 02:fa:09:34:cb:18 vlan_id 1012 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10747 flower src_mac 02:57:96:b6:ea:a8 dst_mac 02:aa:5f:81:b8:6a vlan_id 382 vlan_ethtype ipv4 src_ip 43.146.237.246 dst_ip 94.191.200.139 ip_proto tcp src_port 4230 dst_port 6426 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10748 flower src_mac 02:03:4b:9d:4e:90 dst_mac 02:ed:89:a2:21:2e vlan_id 3584 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10749 flower src_mac 02:d9:24:c2:d6:84 dst_mac 02:10:41:4f:74:43 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10750 flower src_mac 02:26:7d:d5:c5:7a dst_mac 02:e6:c8:21:bb:69 src_ip 123.118.100.191 dst_ip 72.13.210.152 ip_proto udp src_port 39080 dst_port 27108 action drop && tc filter add dev swp33 ingress protocol ip pref 10751 flower src_mac 02:53:c3:fb:61:05 dst_mac 02:21:0e:61:84:5f src_ip 68.220.119.32 dst_ip 24.63.241.247 ip_proto udp src_port 53090 dst_port 40715 action trap && tc filter add dev swp33 ingress protocol ip pref 10752 flower src_mac 02:76:ba:02:ac:16 dst_mac 02:8d:21:ff:d4:f9 src_ip 19.176.81.100 dst_ip 94.248.26.178 ip_proto icmp code 64 type 15 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10753 flower src_mac 02:5f:b5:62:f4:5e dst_mac 02:b7:af:d2:69:7d vlan_id 183 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10754 flower src_mac 02:d1:67:34:f8:50 dst_mac 02:b2:15:9e:b1:33 vlan_id 2183 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10755 flower src_mac 02:62:dd:dd:0c:d2 dst_mac 02:c8:bb:ac:fb:54 src_ip 84.243.23.204 dst_ip 106.97.30.131 ip_proto tcp src_port 23775 dst_port 2963 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10756 flower src_mac 02:e1:8c:69:96:32 dst_mac 02:41:18:db:11:ef vlan_id 4083 vlan_ethtype ipv4 src_ip 41.243.138.158 dst_ip 75.208.102.140 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10757 flower src_mac 02:c5:cf:c1:08:31 dst_mac 02:6d:3e:8d:8c:02 vlan_id 2273 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10758 flower src_mac 02:29:71:e9:d4:60 dst_mac 02:18:9c:92:d0:42 src_ip 108.226.115.175 dst_ip 84.253.147.250 ip_proto tcp src_port 56371 dst_port 56188 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10759 flower src_mac 02:18:54:64:38:39 dst_mac 02:7b:c2:7f:92:98 src_ip 116.36.19.240 dst_ip 72.77.89.62 ip_proto icmp code 125 type 17 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10760 flower src_mac 02:f5:07:9c:15:d8 dst_mac 02:5e:ee:74:90:06 src_ip 80.195.206.161 dst_ip 89.73.45.190 ip_proto tcp src_port 49258 dst_port 57514 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10761 flower src_mac 02:50:05:46:12:ed dst_mac 02:fe:14:13:d0:ae action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10762 flower src_mac 02:fc:90:65:12:8d dst_mac 02:74:1e:1e:ff:c4 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10763 flower src_mac 02:d0:b7:3d:e9:1a dst_mac 02:a6:06:62:1b:2c src_ip 109.106.62.140 dst_ip 87.98.48.220 ip_proto udp src_port 1125 dst_port 9059 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10764 flower src_mac 02:ae:ca:98:7b:32 dst_mac 02:ca:c1:65:7f:c6 src_ip 77.63.216.129 dst_ip 19.180.17.73 ip_proto tcp src_port 12160 dst_port 32543 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10765 flower src_mac 02:de:62:d4:59:de dst_mac 02:10:59:6f:e6:94 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10766 flower src_mac 02:3e:19:f6:60:af dst_mac 02:32:9a:15:cf:03 vlan_id 1837 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10767 flower src_mac 02:4f:6f:29:b7:dd dst_mac 02:92:7a:4b:c8:8f vlan_id 1984 vlan_ethtype ipv4 src_ip 86.6.207.203 dst_ip 26.191.125.13 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10768 flower src_mac 02:f5:81:a4:e9:15 dst_mac 02:ab:85:25:6d:d3 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10769 flower src_mac 02:04:f2:22:e4:be dst_mac 02:96:06:27:2e:bf action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10770 flower src_mac 02:c8:63:12:11:df dst_mac 02:03:ea:9d:2b:5a vlan_id 1258 vlan_ethtype 0x0800 src_ip 119.197.255.71 dst_ip 80.90.239.40 ip_proto tcp src_port 19696 dst_port 55072 action pass && tc filter add dev swp33 ingress protocol ip pref 10771 flower src_mac 02:a5:c7:c3:d6:a5 dst_mac 02:8d:0e:8d:65:6d src_ip 98.222.43.225 dst_ip 27.171.202.116 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10772 flower src_mac 02:6b:88:87:8e:98 dst_mac 02:56:65:0c:11:43 vlan_id 3407 vlan_ethtype 0x0800 src_ip 35.30.227.34 dst_ip 41.127.202.43 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10773 flower src_mac 02:00:0d:cf:16:b9 dst_mac 02:72:bd:e4:d1:e2 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10774 flower src_mac 02:58:b7:57:26:81 dst_mac 02:cd:ac:6d:27:24 vlan_id 2782 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10775 flower src_mac 02:12:a7:46:79:27 dst_mac 02:67:e2:3c:7a:b0 src_ip 34.46.152.201 dst_ip 34.68.167.93 ip_proto udp src_port 62990 dst_port 32952 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10776 flower src_mac 02:ba:f2:4e:b8:4d dst_mac 02:3b:89:b7:4e:d5 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10777 flower src_mac 02:77:c1:f2:46:93 dst_mac 02:ce:93:60:61:d1 vlan_id 2934 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10778 flower src_mac 02:06:4a:00:b4:12 dst_mac 02:0c:1f:4a:26:0a action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10779 flower src_mac 02:6d:7f:1f:fa:58 dst_mac 02:14:10:15:73:8d src_ip 53.59.139.163 dst_ip 81.154.23.52 ip_proto tcp src_port 6857 dst_port 52632 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10780 flower src_mac 02:dc:66:0b:95:5d dst_mac 02:b8:4d:cb:6b:72 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10781 flower src_mac 02:1b:f9:e6:a1:67 dst_mac 02:87:db:1e:fa:19 vlan_id 1128 vlan_ethtype ipv4 src_ip 46.55.30.218 dst_ip 21.98.1.86 ip_proto udp src_port 44065 dst_port 39665 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10782 flower src_mac 02:42:26:9b:c5:21 dst_mac 02:18:67:6a:28:62 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10783 flower src_mac 02:ac:20:8c:3f:22 dst_mac 02:5a:5d:23:ca:fb vlan_id 3867 vlan_ethtype ip src_ip 14.190.82.61 dst_ip 50.189.175.249 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10784 flower src_mac 02:57:2d:f2:17:75 dst_mac 02:7d:fd:0d:63:7f src_ip 51.2.240.39 dst_ip 64.84.214.148 ip_proto icmp code 0 type 3 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10785 flower src_mac 02:d6:d9:59:df:6e dst_mac 02:51:bc:68:5c:85 vlan_id 1250 vlan_ethtype 0x0800 src_ip 35.218.196.69 dst_ip 29.157.118.77 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10786 flower src_mac 02:2e:fe:b9:6f:43 dst_mac 02:35:3f:9b:fe:f4 vlan_id 3314 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10787 flower src_mac 02:5a:fe:c7:13:dd dst_mac 02:64:62:30:b8:3d vlan_id 2540 vlan_ethtype 0x0800 src_ip 38.52.175.22 dst_ip 52.50.101.73 ip_proto tcp src_port 31495 dst_port 5898 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10788 flower src_mac 02:7b:9a:d8:0d:73 dst_mac 02:fd:14:9b:1d:9e vlan_id 2812 vlan_ethtype ipv4 src_ip 62.39.56.100 dst_ip 21.143.17.221 ip_proto tcp src_port 27320 dst_port 17872 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10789 flower src_mac 02:e2:15:fb:5b:f7 dst_mac 02:8c:ec:ff:eb:0e vlan_id 1044 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10790 flower src_mac 02:23:b0:ea:f0:dd dst_mac 02:e1:9c:12:cf:46 vlan_id 1611 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10791 flower src_mac 02:3f:24:76:f4:44 dst_mac 02:06:8d:72:c6:42 src_ip 64.72.136.196 dst_ip 51.246.247.102 ip_proto tcp src_port 53552 dst_port 11252 action pass && tc filter add dev swp33 ingress protocol ip pref 10792 flower src_mac 02:20:08:14:df:c1 dst_mac 02:c1:79:f3:7e:e9 src_ip 78.205.170.244 dst_ip 101.179.242.85 ip_proto icmp code 144 type 12 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10793 flower src_mac 02:cd:7f:74:ec:35 dst_mac 02:86:6d:31:de:39 vlan_id 2570 vlan_ethtype 0x0800 src_ip 76.59.42.244 dst_ip 15.126.67.15 ip_proto udp src_port 65115 dst_port 46138 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10794 flower src_mac 02:fe:7a:3d:58:5a dst_mac 02:ac:3e:a4:29:7b src_ip 51.135.114.129 dst_ip 16.168.83.17 ip_proto udp src_port 29038 dst_port 53974 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10795 flower src_mac 02:d2:25:3e:4d:08 dst_mac 02:1b:88:56:f9:c2 vlan_id 3973 vlan_ethtype ipv4 src_ip 60.61.120.95 dst_ip 43.86.73.215 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10796 flower src_mac 02:f6:e1:1a:32:7c dst_mac 02:65:8c:93:7c:df src_ip 70.98.220.198 dst_ip 12.118.137.54 ip_proto icmp code 222 type 15 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10797 flower src_mac 02:0b:cc:1e:d2:44 dst_mac 02:ca:07:8b:4b:e6 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10798 flower src_mac 02:71:d8:5b:06:0e dst_mac 02:89:a9:84:3d:1f vlan_id 3300 vlan_ethtype ip src_ip 94.11.20.118 dst_ip 107.178.137.101 ip_proto udp src_port 58008 dst_port 60100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10799 flower src_mac 02:de:cf:bc:22:e0 dst_mac 02:3e:e6:86:5c:cb vlan_id 2968 vlan_ethtype 0x9300 action drop INFO asyncssh:logging.py:92 [conn=24, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=6] Command: tc filter add dev swp33 ingress protocol 802.1q pref 10400 flower src_mac 02:11:6d:31:e8:58 dst_mac 02:12:32:74:b0:ee vlan_id 128 vlan_ethtype 0x0800 src_ip 37.208.133.210 dst_ip 15.122.125.169 ip_proto udp src_port 19280 dst_port 32837 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10401 flower src_mac 02:d0:bc:d4:c2:c6 dst_mac 02:5e:5f:2d:36:37 vlan_id 1950 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10402 flower src_mac 02:73:cb:b4:7e:47 dst_mac 02:24:a9:6c:cb:51 vlan_id 2047 vlan_ethtype ip src_ip 52.33.169.133 dst_ip 84.220.88.9 ip_proto tcp src_port 37057 dst_port 4033 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10403 flower src_mac 02:19:7e:41:06:bc dst_mac 02:0b:d7:20:cd:06 vlan_id 3823 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10404 flower src_mac 02:10:29:99:7b:4a dst_mac 02:8a:4a:a3:17:43 src_ip 53.160.156.218 dst_ip 53.85.139.156 ip_proto icmp code 150 type 13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10405 flower src_mac 02:73:59:a7:10:77 dst_mac 02:92:05:74:1e:0d vlan_id 2331 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10406 flower src_mac 02:7a:db:d8:53:f2 dst_mac 02:f9:83:4d:b7:45 vlan_id 568 vlan_ethtype 0x0800 src_ip 113.235.55.114 dst_ip 44.114.10.158 ip_proto udp src_port 42031 dst_port 62270 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10407 flower src_mac 02:96:c6:2e:4d:87 dst_mac 02:a0:96:04:91:a7 vlan_id 2313 vlan_ethtype ip src_ip 95.48.168.43 dst_ip 102.22.47.145 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10408 flower src_mac 02:bb:9f:6f:77:cf dst_mac 02:3a:1e:c1:81:95 vlan_id 3577 vlan_ethtype ipv4 src_ip 25.144.24.107 dst_ip 62.19.179.106 ip_proto udp src_port 57164 dst_port 48890 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10409 flower src_mac 02:7f:c2:c1:56:f3 dst_mac 02:b0:1f:24:1c:d6 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10410 flower src_mac 02:4e:d4:3e:41:3f dst_mac 02:01:0c:f7:14:55 vlan_id 2798 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10411 flower src_mac 02:95:c1:53:7f:0c dst_mac 02:0a:3a:53:24:de vlan_id 4014 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10412 flower src_mac 02:d7:15:0c:40:ad dst_mac 02:4e:df:28:c6:f5 action pass && tc filter add dev swp33 ingress protocol ip pref 10413 flower src_mac 02:69:6d:b9:a1:4f dst_mac 02:67:3b:16:2a:eb src_ip 105.15.9.135 dst_ip 119.64.251.55 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10414 flower src_mac 02:6e:fc:d5:df:ed dst_mac 02:6b:1b:ca:77:46 vlan_id 4050 vlan_ethtype ipv4 src_ip 91.241.154.143 dst_ip 111.120.169.227 ip_proto udp src_port 43898 dst_port 810 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10415 flower src_mac 02:7a:9d:4f:a7:b2 dst_mac 02:8d:3e:62:73:09 vlan_id 3529 vlan_ethtype ipv4 src_ip 43.106.23.27 dst_ip 11.46.196.32 ip_proto udp src_port 25697 dst_port 54479 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10416 flower src_mac 02:df:09:6d:06:b4 dst_mac 02:b0:7d:41:24:1d vlan_id 3904 vlan_ethtype ip src_ip 68.175.214.114 dst_ip 68.51.214.223 ip_proto tcp src_port 21005 dst_port 31466 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10417 flower src_mac 02:38:52:7c:17:49 dst_mac 02:10:b2:65:28:15 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10418 flower src_mac 02:17:6e:30:e1:de dst_mac 02:09:15:5c:d4:47 src_ip 17.159.63.104 dst_ip 90.221.9.195 ip_proto udp src_port 55102 dst_port 23169 action pass && tc filter add dev swp33 ingress protocol ip pref 10419 flower src_mac 02:d3:37:6d:81:c5 dst_mac 02:36:1d:5c:8d:de src_ip 23.154.18.200 dst_ip 55.213.153.223 ip_proto tcp src_port 56218 dst_port 463 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10420 flower src_mac 02:c1:b1:62:10:17 dst_mac 02:fd:00:8a:81:8a action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10421 flower src_mac 02:b1:39:a2:e3:df dst_mac 02:0f:d9:69:e3:24 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10422 flower src_mac 02:b5:88:73:a2:d3 dst_mac 02:53:53:1e:d5:d5 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10423 flower src_mac 02:7c:ef:87:63:c4 dst_mac 02:b9:39:29:14:44 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10424 flower src_mac 02:dd:c1:c8:6e:f4 dst_mac 02:06:b3:8d:ac:64 vlan_id 2615 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10425 flower src_mac 02:01:10:39:34:77 dst_mac 02:a3:69:45:fe:48 src_ip 66.109.194.234 dst_ip 31.59.157.224 ip_proto tcp src_port 14520 dst_port 56564 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10426 flower src_mac 02:98:db:3a:46:25 dst_mac 02:38:a1:da:b0:1a vlan_id 2898 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10427 flower src_mac 02:8c:d4:f2:c3:83 dst_mac 02:a6:91:26:23:96 vlan_id 2561 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10428 flower src_mac 02:19:41:77:dc:d3 dst_mac 02:c3:7e:9b:81:6c action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10429 flower src_mac 02:ed:c3:ff:ed:68 dst_mac 02:50:49:01:06:e7 src_ip 18.75.66.84 dst_ip 50.64.227.163 ip_proto udp src_port 63377 dst_port 9033 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10430 flower src_mac 02:7d:d7:76:7c:8f dst_mac 02:cd:36:69:c7:ed action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10431 flower src_mac 02:90:ea:ce:b7:e6 dst_mac 02:65:57:f6:e3:73 src_ip 111.80.91.187 dst_ip 21.231.229.31 ip_proto tcp src_port 11975 dst_port 31403 action trap && tc filter add dev swp33 ingress protocol ip pref 10432 flower src_mac 02:58:28:21:b9:71 dst_mac 02:f0:a6:23:c7:3b src_ip 50.156.160.118 dst_ip 39.79.83.77 ip_proto icmp code 167 type 8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10433 flower src_mac 02:b8:53:4d:bd:a4 dst_mac 02:91:d2:fa:09:7e vlan_id 3892 vlan_ethtype 0x0800 src_ip 124.66.83.30 dst_ip 71.15.92.248 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10434 flower src_mac 02:86:7b:01:68:ec dst_mac 02:91:d6:8c:18:90 vlan_id 3616 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10435 flower src_mac 02:ec:05:fd:fd:13 dst_mac 02:9d:12:56:00:83 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10436 flower src_mac 02:34:ad:50:79:67 dst_mac 02:4f:e1:06:9d:68 vlan_id 3380 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10437 flower src_mac 02:fa:74:5e:92:23 dst_mac 02:08:6a:ca:6a:e0 vlan_id 3896 vlan_ethtype 0x0800 src_ip 24.56.180.164 dst_ip 51.158.53.45 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10438 flower src_mac 02:88:48:94:6f:03 dst_mac 02:33:00:af:1f:ff vlan_id 527 vlan_ethtype 0x0800 src_ip 57.92.241.110 dst_ip 32.96.122.78 ip_proto udp src_port 36683 dst_port 10563 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10439 flower src_mac 02:4f:e7:98:f9:a8 dst_mac 02:d2:df:28:cf:96 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10440 flower src_mac 02:9d:98:c2:ea:72 dst_mac 02:36:67:ed:29:b8 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10441 flower src_mac 02:31:0c:b7:e6:55 dst_mac 02:b5:d0:f6:33:1f action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10442 flower src_mac 02:4d:27:6e:01:de dst_mac 02:84:5d:8e:fa:e0 src_ip 37.190.140.70 dst_ip 82.113.247.69 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10443 flower src_mac 02:c3:5a:0e:ee:aa dst_mac 02:ce:31:5d:d0:89 src_ip 50.96.67.181 dst_ip 37.204.119.79 ip_proto udp src_port 31492 dst_port 51730 action trap && tc filter add dev swp33 ingress protocol ip pref 10444 flower src_mac 02:9d:26:dc:fd:a1 dst_mac 02:a1:a0:e6:3f:62 src_ip 42.48.134.39 dst_ip 11.129.46.246 ip_proto tcp src_port 50622 dst_port 7093 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10445 flower src_mac 02:81:0c:fc:bc:13 dst_mac 02:1c:90:d3:e2:17 vlan_id 2974 vlan_ethtype 0x0800 src_ip 75.183.236.3 dst_ip 61.171.93.250 ip_proto tcp src_port 1802 dst_port 14449 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10446 flower src_mac 02:21:6c:45:00:a3 dst_mac 02:36:a8:e5:a1:a9 vlan_id 822 vlan_ethtype ip src_ip 110.58.206.120 dst_ip 76.2.222.75 ip_proto tcp src_port 52498 dst_port 59725 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10447 flower src_mac 02:c1:2c:a9:7f:a6 dst_mac 02:ba:31:79:82:67 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10448 flower src_mac 02:ba:36:5f:3b:71 dst_mac 02:a8:6e:61:78:d5 src_ip 38.212.70.162 dst_ip 101.131.228.152 ip_proto icmp code 119 type 12 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10449 flower src_mac 02:05:f6:b4:68:80 dst_mac 02:30:2a:d7:51:f7 vlan_id 1077 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10450 flower src_mac 02:36:66:de:88:22 dst_mac 02:48:ea:ae:fc:86 vlan_id 3418 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10451 flower src_mac 02:c1:8d:28:e3:8d dst_mac 02:50:ee:33:72:52 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10452 flower src_mac 02:22:d1:69:29:cf dst_mac 02:73:11:00:5f:22 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10453 flower src_mac 02:7c:fe:af:1c:48 dst_mac 02:63:f2:30:54:c3 src_ip 121.239.116.38 dst_ip 120.238.250.154 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10454 flower src_mac 02:77:91:47:ab:06 dst_mac 02:81:a8:26:e7:34 vlan_id 3418 vlan_ethtype ip src_ip 52.132.181.46 dst_ip 89.71.186.9 ip_proto tcp src_port 26699 dst_port 39724 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10455 flower src_mac 02:a4:75:24:2e:c0 dst_mac 02:a0:32:6f:fd:03 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10456 flower src_mac 02:b9:47:48:0e:30 dst_mac 02:98:1b:23:8c:18 src_ip 25.40.160.239 dst_ip 97.110.21.56 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10457 flower src_mac 02:8b:32:a2:26:45 dst_mac 02:45:c2:93:ac:46 vlan_id 239 vlan_ethtype ip src_ip 34.81.238.5 dst_ip 69.74.209.124 ip_proto tcp src_port 48978 dst_port 50032 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10458 flower src_mac 02:43:4f:99:73:29 dst_mac 02:f6:aa:9d:e7:32 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10459 flower src_mac 02:ba:ee:be:22:fe dst_mac 02:af:d8:98:1d:b5 vlan_id 1442 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10460 flower src_mac 02:28:f7:ae:2d:61 dst_mac 02:9f:9b:e6:86:18 vlan_id 3548 vlan_ethtype ipv4 src_ip 25.153.17.115 dst_ip 76.166.143.138 ip_proto udp src_port 25083 dst_port 47256 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10461 flower src_mac 02:8c:04:cc:fd:b6 dst_mac 02:fb:54:f2:52:20 vlan_id 1553 vlan_ethtype ip src_ip 87.170.245.116 dst_ip 88.164.93.75 action trap && tc filter add dev swp33 ingress protocol ip pref 10462 flower src_mac 02:0a:5b:d4:b2:15 dst_mac 02:77:f7:4d:4b:78 src_ip 99.14.68.10 dst_ip 120.251.72.71 ip_proto udp src_port 64289 dst_port 43245 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10463 flower src_mac 02:09:37:c7:2f:91 dst_mac 02:f5:5a:66:53:31 vlan_id 2273 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10464 flower src_mac 02:eb:d2:41:01:88 dst_mac 02:c2:c5:2f:0f:15 vlan_id 9 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10465 flower src_mac 02:59:4f:e4:d6:06 dst_mac 02:30:f1:a7:ab:78 src_ip 115.137.120.54 dst_ip 40.9.10.229 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10466 flower src_mac 02:99:0d:9c:6c:19 dst_mac 02:99:1e:99:d6:39 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10467 flower src_mac 02:b0:39:25:85:2b dst_mac 02:f8:1e:c5:f3:1b vlan_id 2148 vlan_ethtype ip src_ip 115.171.62.151 dst_ip 40.240.19.211 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10468 flower src_mac 02:7b:9b:2d:b1:1d dst_mac 02:62:93:ae:c4:7d src_ip 12.82.219.90 dst_ip 123.122.12.231 ip_proto udp src_port 25745 dst_port 14611 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10469 flower src_mac 02:c8:40:e0:72:9a dst_mac 02:c5:ff:de:f3:f2 src_ip 22.173.246.188 dst_ip 71.159.130.109 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10470 flower src_mac 02:3c:e3:b7:e6:f1 dst_mac 02:a3:e8:ee:6f:01 vlan_id 593 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10471 flower src_mac 02:9b:c7:65:a2:f5 dst_mac 02:79:2c:a9:58:82 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10472 flower src_mac 02:e4:a9:e7:05:3b dst_mac 02:4f:5e:49:12:db vlan_id 937 vlan_ethtype 0x0800 src_ip 109.105.117.39 dst_ip 102.54.64.173 ip_proto tcp src_port 59503 dst_port 32419 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10473 flower src_mac 02:5f:2b:92:0f:54 dst_mac 02:ed:35:e2:6c:0f action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10474 flower src_mac 02:91:6f:cd:c0:8a dst_mac 02:06:4c:e8:92:e2 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10475 flower src_mac 02:c7:c7:6a:d1:10 dst_mac 02:58:b6:2e:17:13 src_ip 34.217.140.234 dst_ip 24.11.236.244 ip_proto tcp src_port 5633 dst_port 27864 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10476 flower src_mac 02:7b:f1:54:1c:af dst_mac 02:4f:3c:1f:96:4c vlan_id 2645 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10477 flower src_mac 02:a9:57:3c:48:97 dst_mac 02:23:a5:38:b2:0d vlan_id 2080 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10478 flower src_mac 02:42:47:d5:43:8f dst_mac 02:8c:94:2c:8e:0b action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10479 flower src_mac 02:cd:0b:8e:42:9e dst_mac 02:10:7c:6b:2a:a1 vlan_id 200 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10480 flower src_mac 02:b3:aa:d8:c7:93 dst_mac 02:b5:59:59:7b:3d vlan_id 2889 vlan_ethtype 0x0800 src_ip 99.253.241.41 dst_ip 46.82.220.59 ip_proto udp src_port 52386 dst_port 25167 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10481 flower src_mac 02:f3:56:a3:1c:e7 dst_mac 02:98:5e:8d:aa:f7 src_ip 100.2.157.182 dst_ip 116.155.12.180 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10482 flower src_mac 02:eb:52:0b:3b:3e dst_mac 02:68:b8:17:3c:c5 vlan_id 1494 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10483 flower src_mac 02:94:08:de:e1:6d dst_mac 02:84:63:a3:8c:40 vlan_id 299 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10484 flower src_mac 02:bf:6c:2a:6a:ac dst_mac 02:23:0f:13:12:ca src_ip 109.164.254.214 dst_ip 114.102.240.126 ip_proto icmp code 92 type 18 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10485 flower src_mac 02:59:2b:b3:d2:21 dst_mac 02:a5:6d:df:59:8d vlan_id 1097 vlan_ethtype 0x0800 src_ip 56.181.62.145 dst_ip 98.184.5.75 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10486 flower src_mac 02:e1:9a:75:cd:86 dst_mac 02:81:d8:36:49:f3 vlan_id 1705 vlan_ethtype 0x0800 src_ip 35.110.161.31 dst_ip 82.50.208.68 ip_proto udp src_port 42845 dst_port 58451 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10487 flower src_mac 02:c6:dd:07:d0:45 dst_mac 02:2a:ca:dd:4b:07 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10488 flower src_mac 02:bf:79:d1:00:ca dst_mac 02:eb:2a:98:cc:36 vlan_id 2985 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10489 flower src_mac 02:ca:52:9e:df:29 dst_mac 02:8f:f0:22:fe:2c src_ip 112.218.35.69 dst_ip 36.34.126.152 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10490 flower src_mac 02:67:93:d3:48:37 dst_mac 02:0e:78:ad:cd:8e src_ip 35.87.197.220 dst_ip 118.198.18.237 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10491 flower src_mac 02:8b:fe:59:da:21 dst_mac 02:98:8d:d3:32:87 vlan_id 1179 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10492 flower src_mac 02:8a:3a:ff:6a:ba dst_mac 02:8e:48:57:10:a3 vlan_id 1812 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10493 flower src_mac 02:06:0d:df:3f:97 dst_mac 02:26:78:1a:d8:27 vlan_id 3746 vlan_ethtype 0x0800 src_ip 115.194.85.33 dst_ip 54.59.76.241 ip_proto udp src_port 54858 dst_port 48622 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10494 flower src_mac 02:82:a9:8b:f4:02 dst_mac 02:0c:bf:7f:1a:09 vlan_id 1517 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10495 flower src_mac 02:ff:f7:5c:ee:13 dst_mac 02:ac:f3:96:01:13 vlan_id 1405 vlan_ethtype ipv4 src_ip 124.163.127.225 dst_ip 97.115.120.24 ip_proto tcp src_port 59257 dst_port 4424 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10496 flower src_mac 02:8a:7f:93:0f:5a dst_mac 02:32:22:d6:78:f8 src_ip 77.14.3.144 dst_ip 106.99.12.186 ip_proto tcp src_port 20778 dst_port 8667 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10497 flower src_mac 02:d6:fe:46:23:cb dst_mac 02:e8:75:00:7d:64 action pass && tc filter add dev swp33 ingress protocol ip pref 10498 flower src_mac 02:b6:df:f6:c0:b7 dst_mac 02:44:0b:06:54:e1 src_ip 112.53.99.63 dst_ip 39.190.8.135 ip_proto udp src_port 28115 dst_port 62799 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10499 flower src_mac 02:7b:b2:90:2d:d2 dst_mac 02:7e:5d:e8:9d:d8 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10500 flower src_mac 02:e8:89:61:08:4b dst_mac 02:12:38:f4:04:89 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10501 flower src_mac 02:1b:3a:95:52:4b dst_mac 02:0d:ff:55:dc:a0 vlan_id 939 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10502 flower src_mac 02:1e:75:2f:5e:13 dst_mac 02:8e:d2:5d:8f:b1 src_ip 120.161.194.223 dst_ip 59.233.181.93 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10503 flower src_mac 02:0e:3d:08:95:f1 dst_mac 02:bd:6a:3b:21:22 vlan_id 973 vlan_ethtype 0x0800 src_ip 51.70.241.219 dst_ip 42.247.221.210 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10504 flower src_mac 02:e3:da:66:42:ba dst_mac 02:83:6b:dd:5f:d4 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10505 flower src_mac 02:6a:d9:37:9d:6c dst_mac 02:d1:f1:73:b5:36 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10506 flower src_mac 02:97:58:7f:bc:5f dst_mac 02:f8:4c:67:f6:1e action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10507 flower src_mac 02:60:e8:3d:20:e8 dst_mac 02:71:72:07:73:8d src_ip 34.127.219.204 dst_ip 95.33.211.141 ip_proto icmp code 111 type 0 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10508 flower src_mac 02:80:75:a7:5a:d0 dst_mac 02:77:94:93:f6:cc action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10509 flower src_mac 02:d1:bf:72:53:72 dst_mac 02:5a:c7:f9:40:36 vlan_id 3938 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10510 flower src_mac 02:5c:61:76:9c:47 dst_mac 02:7c:4a:ad:a6:0e action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10511 flower src_mac 02:5e:de:2b:74:0e dst_mac 02:bb:fa:af:14:39 src_ip 53.84.205.117 dst_ip 26.4.124.155 ip_proto udp src_port 9091 dst_port 21397 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10512 flower src_mac 02:b2:b8:1c:44:f0 dst_mac 02:71:3d:d7:f1:1a src_ip 72.230.170.73 dst_ip 113.8.126.101 ip_proto udp src_port 20551 dst_port 37841 action trap && tc filter add dev swp33 ingress protocol ip pref 10513 flower src_mac 02:ef:b0:e9:61:53 dst_mac 02:78:6d:c8:59:28 src_ip 85.80.128.63 dst_ip 33.180.123.141 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10514 flower src_mac 02:00:fa:24:ac:fa dst_mac 02:05:ba:54:89:95 vlan_id 1037 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10515 flower src_mac 02:71:89:a6:8f:09 dst_mac 02:f2:aa:67:6b:db vlan_id 36 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10516 flower src_mac 02:34:4a:97:e7:49 dst_mac 02:d7:f2:e1:69:e8 src_ip 110.35.158.170 dst_ip 105.109.94.122 ip_proto tcp src_port 55936 dst_port 57064 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10517 flower src_mac 02:57:0b:2a:e5:4e dst_mac 02:03:9f:46:09:6b vlan_id 2085 vlan_ethtype 0x0800 src_ip 46.191.49.191 dst_ip 28.9.22.70 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10518 flower src_mac 02:56:55:08:0a:cc dst_mac 02:09:f3:23:68:8a src_ip 12.42.33.180 dst_ip 48.8.169.136 ip_proto tcp src_port 35634 dst_port 37611 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10519 flower src_mac 02:b1:ed:86:66:a7 dst_mac 02:d6:b9:46:c7:10 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10520 flower src_mac 02:05:73:d8:be:ea dst_mac 02:84:55:de:f3:4c vlan_id 1324 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10521 flower src_mac 02:d2:27:26:68:53 dst_mac 02:a8:e2:bd:eb:4c vlan_id 2750 vlan_ethtype ipv4 src_ip 13.213.201.1 dst_ip 35.15.227.191 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10522 flower src_mac 02:98:a3:f5:24:79 dst_mac 02:63:65:45:68:e3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10523 flower src_mac 02:33:45:a1:95:ac dst_mac 02:b0:c1:d2:bd:e0 vlan_id 3644 vlan_ethtype 0x0800 src_ip 40.136.146.118 dst_ip 114.84.157.63 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10524 flower src_mac 02:2e:78:5c:94:50 dst_mac 02:85:49:9e:0d:cf vlan_id 702 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10525 flower src_mac 02:c1:2a:72:24:5b dst_mac 02:a7:16:7b:c1:d3 vlan_id 3397 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10526 flower src_mac 02:10:86:02:a3:e7 dst_mac 02:2f:db:6b:98:fe action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10527 flower src_mac 02:41:0b:67:35:18 dst_mac 02:3c:30:84:63:1d src_ip 52.65.229.173 dst_ip 58.194.104.92 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10528 flower src_mac 02:b8:6b:9d:76:2f dst_mac 02:d2:b8:b5:6f:d3 vlan_id 3974 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10529 flower src_mac 02:c1:99:c4:37:e0 dst_mac 02:17:58:0b:c4:09 src_ip 33.111.236.35 dst_ip 96.215.71.213 ip_proto icmp code 223 type 3 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10530 flower src_mac 02:df:57:18:06:41 dst_mac 02:55:36:3a:54:9e action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10531 flower src_mac 02:50:b3:43:05:a3 dst_mac 02:ea:af:27:7b:6b vlan_id 374 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10532 flower src_mac 02:12:a2:a3:d8:3b dst_mac 02:6d:59:47:39:5a vlan_id 3649 vlan_ethtype ip src_ip 77.194.197.92 dst_ip 20.254.85.13 ip_proto udp src_port 14074 dst_port 7725 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10533 flower src_mac 02:65:8e:5b:8c:86 dst_mac 02:d9:97:21:b0:d6 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10534 flower src_mac 02:f0:1d:d3:59:84 dst_mac 02:e1:f4:02:72:83 vlan_id 3436 vlan_ethtype ipv4 src_ip 11.111.30.228 dst_ip 55.244.151.54 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10535 flower src_mac 02:0e:84:81:ce:54 dst_mac 02:fd:1a:20:f1:75 src_ip 116.127.63.96 dst_ip 109.33.163.223 ip_proto udp src_port 21065 dst_port 14727 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10536 flower src_mac 02:e1:77:c3:66:df dst_mac 02:a0:d4:ee:37:1f vlan_id 296 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10537 flower src_mac 02:73:f1:b6:d3:67 dst_mac 02:e9:6e:b6:a1:b4 vlan_id 1164 vlan_ethtype ipv4 src_ip 18.135.128.16 dst_ip 126.91.80.193 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10538 flower src_mac 02:95:6a:a2:d7:5f dst_mac 02:a7:e6:56:06:22 vlan_id 1899 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10539 flower src_mac 02:3a:6a:ff:fe:47 dst_mac 02:90:e2:ac:8d:d6 src_ip 123.68.248.61 dst_ip 64.126.77.223 ip_proto udp src_port 24249 dst_port 46278 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10540 flower src_mac 02:b3:49:c6:5d:84 dst_mac 02:3f:70:d4:e5:8f vlan_id 3106 vlan_ethtype 0x0800 src_ip 55.133.199.18 dst_ip 28.147.147.211 ip_proto udp src_port 2454 dst_port 42194 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10541 flower src_mac 02:a9:1a:3d:bb:61 dst_mac 02:aa:0b:e8:e7:48 vlan_id 1753 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10542 flower src_mac 02:2b:c8:70:15:59 dst_mac 02:f4:e3:9a:cf:27 vlan_id 2639 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10543 flower src_mac 02:52:80:1b:9b:b4 dst_mac 02:7d:cc:ed:33:58 vlan_id 2727 vlan_ethtype ipv4 src_ip 69.192.123.32 dst_ip 76.184.187.72 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10544 flower src_mac 02:20:5c:9d:e6:c4 dst_mac 02:fe:5d:a0:6e:3b action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10545 flower src_mac 02:39:dc:1a:df:e9 dst_mac 02:44:62:73:89:f5 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10546 flower src_mac 02:1c:ff:8d:71:ed dst_mac 02:57:03:57:93:60 vlan_id 319 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10547 flower src_mac 02:ed:3f:55:b0:31 dst_mac 02:93:e8:02:9c:27 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10548 flower src_mac 02:77:a0:e4:a3:af dst_mac 02:4f:5c:c0:0c:ce vlan_id 1241 vlan_ethtype ipv4 src_ip 97.26.203.3 dst_ip 11.235.209.165 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10549 flower src_mac 02:44:17:40:ac:47 dst_mac 02:59:99:a2:21:00 vlan_id 72 vlan_ethtype ipv4 src_ip 79.182.119.47 dst_ip 60.51.143.19 ip_proto udp src_port 7011 dst_port 7460 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10550 flower src_mac 02:48:e7:51:6d:17 dst_mac 02:f8:62:63:07:97 vlan_id 1446 vlan_ethtype ipv4 src_ip 11.230.33.38 dst_ip 118.31.165.132 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10551 flower src_mac 02:7c:04:50:f3:ee dst_mac 02:74:6c:8c:bc:2d src_ip 84.189.95.219 dst_ip 80.145.179.57 ip_proto tcp src_port 54153 dst_port 4983 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10552 flower src_mac 02:4d:38:a3:b0:26 dst_mac 02:1c:d7:ed:30:27 vlan_id 395 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10553 flower src_mac 02:ca:e2:6c:6a:93 dst_mac 02:20:eb:7b:82:dc vlan_id 3705 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10554 flower src_mac 02:1a:03:83:1f:c6 dst_mac 02:43:d0:54:43:fb src_ip 125.151.9.50 dst_ip 97.189.183.132 ip_proto udp src_port 21657 dst_port 44531 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10555 flower src_mac 02:89:e3:45:9b:42 dst_mac 02:98:3e:6e:4c:61 vlan_id 2025 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10556 flower src_mac 02:08:4b:42:47:76 dst_mac 02:be:9b:8d:eb:dd vlan_id 1056 vlan_ethtype ipv4 src_ip 75.33.194.244 dst_ip 20.240.191.60 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10557 flower src_mac 02:41:cc:f3:03:2f dst_mac 02:6c:60:b1:10:ed vlan_id 2135 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10558 flower src_mac 02:fa:20:f5:67:55 dst_mac 02:70:4d:9b:ab:40 vlan_id 1516 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10559 flower src_mac 02:2e:8a:03:64:3a dst_mac 02:ed:06:65:77:e4 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10560 flower src_mac 02:1f:b1:c0:80:e2 dst_mac 02:ed:3b:df:fc:ab vlan_id 1835 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10561 flower src_mac 02:f4:5b:3d:16:99 dst_mac 02:f6:b0:35:7a:59 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10562 flower src_mac 02:8a:ff:ac:54:b9 dst_mac 02:1e:3f:5e:df:53 src_ip 75.239.89.97 dst_ip 65.164.205.118 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10563 flower src_mac 02:20:f4:04:4d:42 dst_mac 02:2b:95:7b:40:aa src_ip 72.57.10.106 dst_ip 91.42.210.11 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10564 flower src_mac 02:6c:1f:07:38:27 dst_mac 02:c6:45:26:d3:4e action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10565 flower src_mac 02:7a:7e:37:f7:92 dst_mac 02:3e:00:9f:59:71 vlan_id 569 vlan_ethtype ip src_ip 70.228.109.122 dst_ip 97.26.123.9 ip_proto udp src_port 31568 dst_port 16112 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10566 flower src_mac 02:47:fc:b9:15:60 dst_mac 02:25:a4:45:09:10 src_ip 65.150.232.103 dst_ip 21.209.49.126 ip_proto icmp code 101 type 13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10567 flower src_mac 02:3a:ac:1d:ff:f0 dst_mac 02:de:c9:c8:e9:cb vlan_id 3705 vlan_ethtype 0x0800 src_ip 109.18.25.179 dst_ip 114.235.15.164 ip_proto tcp src_port 39017 dst_port 29368 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10568 flower src_mac 02:b4:b2:af:ce:88 dst_mac 02:8b:ba:1f:35:91 vlan_id 533 vlan_ethtype ipv4 src_ip 37.29.51.229 dst_ip 66.255.65.78 action pass && tc filter add dev swp33 ingress protocol ip pref 10569 flower src_mac 02:ff:1e:1a:19:c6 dst_mac 02:68:d2:01:f6:f0 src_ip 27.154.7.241 dst_ip 105.30.121.179 ip_proto icmp code 229 type 12 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10570 flower src_mac 02:05:42:f9:a5:0b dst_mac 02:b2:25:7d:e4:ee action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10571 flower src_mac 02:ce:c2:6b:c9:49 dst_mac 02:9f:28:a6:96:7c vlan_id 3508 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10572 flower src_mac 02:d1:08:2c:e6:0b dst_mac 02:53:c0:e1:16:ea vlan_id 863 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10573 flower src_mac 02:dc:12:18:3a:e7 dst_mac 02:9f:a5:42:2c:c2 vlan_id 3080 vlan_ethtype 0x0800 src_ip 102.242.194.219 dst_ip 84.135.56.249 ip_proto tcp src_port 7647 dst_port 57109 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10574 flower src_mac 02:ff:7a:c5:81:1f dst_mac 02:d1:ce:8c:e9:d1 vlan_id 669 vlan_ethtype ipv4 src_ip 43.146.175.234 dst_ip 33.17.226.213 ip_proto tcp src_port 32302 dst_port 15964 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10575 flower src_mac 02:be:88:18:52:70 dst_mac 02:42:9b:9d:1a:3e src_ip 59.67.90.194 dst_ip 75.91.70.188 ip_proto tcp src_port 31764 dst_port 56411 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10576 flower src_mac 02:0d:37:4a:23:a3 dst_mac 02:f6:ed:82:a7:f2 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10577 flower src_mac 02:2a:f5:e8:04:e3 dst_mac 02:d2:40:cd:34:3d action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10578 flower src_mac 02:5f:7c:43:a5:87 dst_mac 02:e7:fd:95:1a:4a action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10579 flower src_mac 02:4f:76:fe:c2:eb dst_mac 02:c3:c0:97:87:83 vlan_id 357 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10580 flower src_mac 02:52:35:e9:10:bf dst_mac 02:50:bd:b4:54:e0 vlan_id 112 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10581 flower src_mac 02:fb:a7:bf:da:fd dst_mac 02:44:50:8f:14:57 vlan_id 1363 vlan_ethtype ipv4 src_ip 61.116.41.124 dst_ip 115.230.1.37 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10582 flower src_mac 02:74:26:3a:2d:14 dst_mac 02:c3:f4:20:94:66 vlan_id 2524 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10583 flower src_mac 02:ff:fd:78:16:54 dst_mac 02:1e:56:b4:79:f7 vlan_id 2306 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10584 flower src_mac 02:26:fd:4d:e8:78 dst_mac 02:69:8c:fc:c3:1d vlan_id 3961 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10585 flower src_mac 02:a7:52:c1:16:c5 dst_mac 02:7f:38:87:db:90 vlan_id 3460 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10586 flower src_mac 02:d7:89:98:17:25 dst_mac 02:52:41:4f:7c:6f action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10587 flower src_mac 02:01:6b:40:65:d8 dst_mac 02:4f:c5:6e:5a:82 vlan_id 385 vlan_ethtype ip src_ip 64.160.230.70 dst_ip 99.130.60.124 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10588 flower src_mac 02:f6:d1:50:43:92 dst_mac 02:b8:fb:f0:94:b5 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10589 flower src_mac 02:5c:17:3f:00:e8 dst_mac 02:db:a5:31:e4:e5 vlan_id 270 vlan_ethtype 0x0800 src_ip 29.19.59.230 dst_ip 107.73.151.180 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10590 flower src_mac 02:e8:91:86:8f:03 dst_mac 02:df:30:d3:de:58 action pass && tc filter add dev swp33 ingress protocol ip pref 10591 flower src_mac 02:06:de:5b:dc:2a dst_mac 02:6f:b9:ac:65:e1 src_ip 100.234.106.34 dst_ip 27.211.149.40 ip_proto tcp src_port 8579 dst_port 27426 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10592 flower src_mac 02:dc:eb:9d:3c:fc dst_mac 02:05:24:d3:9d:6f action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10593 flower src_mac 02:45:d6:9a:b1:64 dst_mac 02:a3:50:70:38:79 vlan_id 913 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10594 flower src_mac 02:09:2a:94:3c:64 dst_mac 02:9c:96:c5:d2:6d vlan_id 4059 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10595 flower src_mac 02:94:77:03:bc:b0 dst_mac 02:a1:72:d0:b4:00 vlan_id 1646 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10596 flower src_mac 02:72:58:74:bf:7b dst_mac 02:ed:9a:c5:0d:b2 vlan_id 2894 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10597 flower src_mac 02:2e:3b:09:a7:3e dst_mac 02:0b:5f:80:9e:de vlan_id 3981 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10598 flower src_mac 02:c2:eb:ce:2b:e9 dst_mac 02:96:fa:d1:d3:2d src_ip 123.188.15.94 dst_ip 26.247.48.205 ip_proto tcp src_port 48984 dst_port 26985 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10599 flower src_mac 02:73:9b:f7:d1:8e dst_mac 02:6e:c5:75:82:3b action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10600 flower src_mac 02:51:9c:c5:65:dc dst_mac 02:aa:84:18:08:a3 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10601 flower src_mac 02:2b:a3:4d:fd:73 dst_mac 02:a5:eb:71:a8:3c vlan_id 1799 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10602 flower src_mac 02:30:ce:5c:5c:b7 dst_mac 02:59:86:00:32:d9 vlan_id 963 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10603 flower src_mac 02:1f:f4:90:71:f9 dst_mac 02:bb:16:30:de:20 vlan_id 2209 vlan_ethtype ipv4 src_ip 69.64.123.123 dst_ip 115.162.199.157 ip_proto udp src_port 31717 dst_port 48978 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10604 flower src_mac 02:7f:cb:90:42:d6 dst_mac 02:a8:a4:19:c7:32 vlan_id 364 vlan_ethtype ipv4 src_ip 63.195.95.159 dst_ip 21.235.116.242 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10605 flower src_mac 02:9a:d0:f5:59:d9 dst_mac 02:31:c7:83:ed:5e vlan_id 3450 vlan_ethtype ip src_ip 56.249.170.231 dst_ip 98.231.43.154 ip_proto udp src_port 62360 dst_port 57592 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10606 flower src_mac 02:39:53:72:66:f1 dst_mac 02:72:8c:81:e8:40 src_ip 13.156.109.40 dst_ip 111.0.74.210 ip_proto icmp code 198 type 12 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10607 flower src_mac 02:59:d3:8b:5d:36 dst_mac 02:00:b4:aa:f5:9c action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10608 flower src_mac 02:e8:48:5f:ca:3f dst_mac 02:76:7d:a0:41:08 vlan_id 117 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10609 flower src_mac 02:0a:2f:1d:09:0e dst_mac 02:e6:24:9d:c7:e4 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10610 flower src_mac 02:0f:a0:8f:11:87 dst_mac 02:e5:76:b3:82:ff vlan_id 1898 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10611 flower src_mac 02:cf:8b:67:4e:2b dst_mac 02:1e:55:b4:f6:3d vlan_id 2531 vlan_ethtype ip src_ip 81.154.92.188 dst_ip 83.169.68.61 ip_proto udp src_port 16002 dst_port 35692 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10612 flower src_mac 02:1b:41:b8:39:73 dst_mac 02:e3:6a:ff:fd:fe src_ip 14.168.150.240 dst_ip 111.97.10.203 ip_proto udp src_port 2887 dst_port 53689 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10613 flower src_mac 02:ae:45:f6:32:23 dst_mac 02:f0:76:3e:e1:53 src_ip 46.156.121.83 dst_ip 11.205.105.52 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10614 flower src_mac 02:ce:f9:7b:45:2c dst_mac 02:8b:04:8c:f1:5f action drop && tc filter add dev swp33 ingress protocol ip pref 10615 flower src_mac 02:49:e2:8b:f7:74 dst_mac 02:82:fb:16:c6:7d src_ip 12.37.155.230 dst_ip 83.193.47.244 ip_proto icmp code 134 type 17 action drop && tc filter add dev swp33 ingress protocol ip pref 10616 flower src_mac 02:e0:f4:ad:93:74 dst_mac 02:66:fc:e6:cb:c9 src_ip 73.182.39.70 dst_ip 91.178.136.130 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10617 flower src_mac 02:88:02:28:9f:ab dst_mac 02:54:53:6d:1b:92 vlan_id 25 vlan_ethtype ip src_ip 22.215.124.211 dst_ip 26.141.28.17 ip_proto udp src_port 28719 dst_port 36192 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10618 flower src_mac 02:bb:c2:48:e0:0d dst_mac 02:8b:e6:9a:21:de src_ip 32.204.87.15 dst_ip 86.111.157.36 action drop && tc filter add dev swp33 ingress protocol ip pref 10619 flower src_mac 02:26:64:b7:ee:16 dst_mac 02:c7:7a:99:1b:9e src_ip 24.200.52.151 dst_ip 13.225.51.241 ip_proto tcp src_port 12083 dst_port 26068 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10620 flower src_mac 02:36:28:19:d2:dc dst_mac 02:ce:9f:d8:0b:95 vlan_id 481 vlan_ethtype ip src_ip 124.191.71.6 dst_ip 114.142.206.20 ip_proto tcp src_port 3322 dst_port 51103 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10621 flower src_mac 02:f1:db:13:fe:63 dst_mac 02:2b:fb:c3:84:9b vlan_id 3852 vlan_ethtype ip src_ip 72.31.16.146 dst_ip 99.107.119.184 ip_proto tcp src_port 4673 dst_port 58263 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10622 flower src_mac 02:4b:e3:ef:ae:bb dst_mac 02:79:ac:af:3f:5b vlan_id 390 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10623 flower src_mac 02:e2:e8:21:39:79 dst_mac 02:92:34:e3:8b:ab src_ip 37.112.106.150 dst_ip 71.119.239.129 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10624 flower src_mac 02:7b:3d:a1:43:e3 dst_mac 02:ec:79:d0:37:f9 src_ip 95.125.162.158 dst_ip 51.164.243.17 ip_proto icmp code 73 type 16 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10625 flower src_mac 02:b8:b8:8f:40:7e dst_mac 02:39:b5:8a:42:37 src_ip 20.94.151.62 dst_ip 58.37.132.130 ip_proto icmp code 213 type 16 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10626 flower src_mac 02:9c:cf:06:19:e1 dst_mac 02:19:ba:39:45:c4 src_ip 77.86.216.175 dst_ip 39.109.241.142 ip_proto icmp code 95 type 12 action drop && tc filter add dev swp33 ingress protocol ip pref 10627 flower src_mac 02:e4:a2:21:a0:d7 dst_mac 02:d9:85:ef:b1:cf src_ip 52.39.41.14 dst_ip 63.42.53.151 ip_proto udp src_port 7469 dst_port 46132 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10628 flower src_mac 02:0d:8e:72:66:7a dst_mac 02:c3:36:63:1a:a8 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10629 flower src_mac 02:a9:cd:5e:de:fb dst_mac 02:f7:7d:6c:86:84 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10630 flower src_mac 02:8c:9f:fd:d3:b4 dst_mac 02:e1:52:50:75:a2 vlan_id 2111 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10631 flower src_mac 02:b6:6a:e9:22:cc dst_mac 02:e2:57:b4:df:a7 vlan_id 3969 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10632 flower src_mac 02:da:d5:27:03:31 dst_mac 02:84:85:10:96:c2 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10633 flower src_mac 02:93:d7:cb:1c:70 dst_mac 02:62:ee:78:ae:27 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10634 flower src_mac 02:63:b3:6e:f1:14 dst_mac 02:e7:57:6b:b8:85 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10635 flower src_mac 02:d3:59:34:a0:03 dst_mac 02:2c:6b:f0:17:f6 src_ip 120.25.122.18 dst_ip 97.224.216.119 ip_proto udp src_port 33690 dst_port 51036 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10636 flower src_mac 02:26:97:3b:51:ca dst_mac 02:44:ca:c2:85:01 vlan_id 3792 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 10637 flower src_mac 02:b1:a8:e5:c1:75 dst_mac 02:c4:07:72:c3:02 src_ip 115.112.225.88 dst_ip 91.228.151.69 ip_proto icmp code 20 type 14 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10638 flower src_mac 02:fa:f6:a2:e9:54 dst_mac 02:e3:80:26:ec:f2 vlan_id 3647 vlan_ethtype ip src_ip 33.199.69.169 dst_ip 98.61.107.175 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10639 flower src_mac 02:b1:2b:be:64:d2 dst_mac 02:66:bd:db:fe:0c src_ip 70.234.29.244 dst_ip 12.52.137.177 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10640 flower src_mac 02:dd:1e:c8:d6:2a dst_mac 02:61:fd:8d:c2:20 vlan_id 3501 vlan_ethtype 0x0800 src_ip 69.245.116.32 dst_ip 32.129.207.9 ip_proto tcp src_port 16266 dst_port 5904 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10641 flower src_mac 02:cd:e7:07:73:e7 dst_mac 02:97:94:e5:07:f0 vlan_id 2410 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10642 flower src_mac 02:55:cf:d0:43:25 dst_mac 02:b5:06:98:d4:e8 action drop && tc filter add dev swp33 ingress protocol ip pref 10643 flower src_mac 02:4e:76:9a:0f:21 dst_mac 02:de:6e:8c:c0:c2 src_ip 87.217.207.197 dst_ip 14.78.207.245 ip_proto udp src_port 60310 dst_port 52453 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10644 flower src_mac 02:4d:05:84:12:f6 dst_mac 02:a7:be:90:fd:62 action drop && tc filter add dev swp33 ingress protocol ip pref 10645 flower src_mac 02:77:34:c8:aa:f9 dst_mac 02:c4:d7:0b:ca:2c src_ip 63.168.105.68 dst_ip 28.220.138.248 ip_proto udp src_port 36514 dst_port 15658 action pass && tc filter add dev swp33 ingress protocol ip pref 10646 flower src_mac 02:4f:e2:f0:eb:cc dst_mac 02:7c:2f:c7:ba:67 src_ip 28.25.175.222 dst_ip 82.67.224.29 ip_proto tcp src_port 30345 dst_port 14649 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10647 flower src_mac 02:8b:61:7b:09:60 dst_mac 02:39:2c:b7:10:47 src_ip 62.78.153.167 dst_ip 45.58.104.11 ip_proto icmp code 218 type 0 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10648 flower src_mac 02:60:8b:0d:60:6d dst_mac 02:30:0e:4b:44:43 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10649 flower src_mac 02:5f:b3:13:ab:7c dst_mac 02:43:1f:20:b4:44 vlan_id 3508 vlan_ethtype ipv4 src_ip 92.69.40.171 dst_ip 37.86.137.73 ip_proto udp src_port 57042 dst_port 47398 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10650 flower src_mac 02:e9:73:77:84:2b dst_mac 02:ad:8d:c9:29:92 vlan_id 3767 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10651 flower src_mac 02:c8:70:61:81:75 dst_mac 02:d3:66:d9:fe:c4 src_ip 98.238.200.223 dst_ip 96.87.10.76 ip_proto tcp src_port 54381 dst_port 38486 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10652 flower src_mac 02:7c:5f:ca:43:bd dst_mac 02:c9:6e:01:b5:ff vlan_id 424 vlan_ethtype 0x0800 src_ip 73.218.245.184 dst_ip 17.187.92.85 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10653 flower src_mac 02:0a:1b:c7:30:26 dst_mac 02:cb:03:be:61:19 vlan_id 4004 vlan_ethtype ipv4 src_ip 41.175.244.74 dst_ip 103.134.162.138 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10654 flower src_mac 02:3a:6d:ba:03:72 dst_mac 02:14:53:6e:38:34 action drop && tc filter add dev swp33 ingress protocol ip pref 10655 flower src_mac 02:fe:6d:78:6a:b3 dst_mac 02:2c:fd:07:12:11 src_ip 25.153.193.2 dst_ip 85.130.30.10 ip_proto icmp code 29 type 16 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10656 flower src_mac 02:3f:65:a3:41:a0 dst_mac 02:d2:f1:96:22:ef action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10657 flower src_mac 02:22:ab:97:05:75 dst_mac 02:66:42:51:f3:ee action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10658 flower src_mac 02:86:ab:ed:d0:90 dst_mac 02:da:95:dc:76:6f src_ip 56.252.230.26 dst_ip 74.38.51.202 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10659 flower src_mac 02:10:70:08:e2:7b dst_mac 02:ee:38:ae:fe:7d vlan_id 2455 vlan_ethtype ip src_ip 50.240.230.7 dst_ip 108.50.50.218 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10660 flower src_mac 02:13:8c:d0:5a:b1 dst_mac 02:77:e1:1c:f2:f5 vlan_id 2605 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10661 flower src_mac 02:95:58:9b:98:37 dst_mac 02:af:83:10:e4:4a vlan_id 349 vlan_ethtype ip src_ip 105.167.137.12 dst_ip 37.89.117.21 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10662 flower src_mac 02:b0:e6:fa:38:7b dst_mac 02:d4:10:e5:cb:17 vlan_id 3695 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10663 flower src_mac 02:c8:79:1c:b3:6d dst_mac 02:a3:e6:8b:76:4b src_ip 51.163.139.17 dst_ip 117.21.76.179 ip_proto icmp code 15 type 14 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10664 flower src_mac 02:a8:d7:94:4a:7e dst_mac 02:38:54:15:94:30 src_ip 76.154.205.164 dst_ip 110.249.181.192 ip_proto udp src_port 6963 dst_port 2025 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10665 flower src_mac 02:30:dc:d8:ab:e0 dst_mac 02:6a:53:c2:f9:1f src_ip 108.210.186.67 dst_ip 19.142.239.200 ip_proto udp src_port 36459 dst_port 59248 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10666 flower src_mac 02:27:a3:14:29:26 dst_mac 02:16:20:73:68:ba vlan_id 2411 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10667 flower src_mac 02:26:d9:72:33:ab dst_mac 02:6b:26:6d:81:29 vlan_id 2825 vlan_ethtype ipv4 src_ip 63.200.247.127 dst_ip 75.152.81.9 ip_proto tcp src_port 7877 dst_port 51054 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10668 flower src_mac 02:8a:13:11:6b:1e dst_mac 02:9c:08:47:26:88 action trap && tc filter add dev swp33 ingress protocol ip pref 10669 flower src_mac 02:02:83:17:4b:b6 dst_mac 02:50:ba:c0:50:d0 src_ip 124.111.124.1 dst_ip 90.206.152.112 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10670 flower src_mac 02:a5:95:d4:db:61 dst_mac 02:90:2e:26:c9:91 vlan_id 1125 vlan_ethtype 0x0800 src_ip 67.108.91.63 dst_ip 96.8.207.34 ip_proto tcp src_port 40804 dst_port 24610 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10671 flower src_mac 02:7c:08:94:2a:e1 dst_mac 02:ab:23:61:86:d5 vlan_id 3021 vlan_ethtype ip src_ip 115.207.216.223 dst_ip 12.188.193.58 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10672 flower src_mac 02:39:7f:c6:13:37 dst_mac 02:de:1c:88:45:f8 vlan_id 3900 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10673 flower src_mac 02:de:d2:ab:57:15 dst_mac 02:b5:52:50:5d:74 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10674 flower src_mac 02:c0:60:9e:ce:54 dst_mac 02:2e:75:b1:1f:4c action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10675 flower src_mac 02:af:33:c7:d4:b6 dst_mac 02:0b:01:7d:ee:aa action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10676 flower src_mac 02:63:cc:39:94:15 dst_mac 02:00:24:cc:23:fc vlan_id 3592 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10677 flower src_mac 02:e9:e4:c0:37:7f dst_mac 02:88:30:85:0f:aa vlan_id 3015 vlan_ethtype 0x0800 src_ip 107.43.224.168 dst_ip 47.42.210.120 ip_proto udp src_port 2012 dst_port 369 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10678 flower src_mac 02:0b:a0:66:4d:41 dst_mac 02:5e:ce:8a:f9:93 vlan_id 2186 vlan_ethtype ip src_ip 124.237.199.107 dst_ip 114.125.55.102 ip_proto tcp src_port 9856 dst_port 43461 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10679 flower src_mac 02:a4:82:9e:6e:20 dst_mac 02:cd:3e:c8:01:60 src_ip 16.221.206.126 dst_ip 46.57.88.162 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10680 flower src_mac 02:8d:26:87:6b:24 dst_mac 02:40:bc:23:f6:a2 src_ip 35.28.32.36 dst_ip 124.45.141.180 ip_proto udp src_port 34041 dst_port 36797 action trap && tc filter add dev swp33 ingress protocol ip pref 10681 flower src_mac 02:a5:79:54:21:55 dst_mac 02:19:39:71:2b:c5 src_ip 20.75.60.91 dst_ip 28.178.242.171 ip_proto udp src_port 10014 dst_port 53301 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10682 flower src_mac 02:b3:e8:37:77:1d dst_mac 02:6f:5c:a6:f7:d0 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10683 flower src_mac 02:a8:fe:d2:ac:02 dst_mac 02:48:82:6d:2a:17 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10684 flower src_mac 02:76:99:72:79:b6 dst_mac 02:1f:ee:d2:a1:fd src_ip 91.44.137.238 dst_ip 15.227.34.219 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10685 flower src_mac 02:f7:a7:90:01:e8 dst_mac 02:79:15:1e:d7:d5 vlan_id 3850 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10686 flower src_mac 02:8a:87:d0:00:90 dst_mac 02:e3:37:4a:83:31 vlan_id 291 vlan_ethtype ipv4 src_ip 27.4.219.181 dst_ip 113.55.97.60 action drop && tc filter add dev swp33 ingress protocol ip pref 10687 flower src_mac 02:91:74:31:49:08 dst_mac 02:ea:e5:e5:ec:c5 src_ip 100.116.66.210 dst_ip 66.163.32.97 action pass && tc filter add dev swp33 ingress protocol ip pref 10688 flower src_mac 02:42:6c:5e:db:ab dst_mac 02:1c:a6:8a:61:e3 src_ip 123.75.87.16 dst_ip 103.171.176.176 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10689 flower src_mac 02:6e:6c:95:50:e6 dst_mac 02:5b:4f:ee:2d:2d vlan_id 3331 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10690 flower src_mac 02:0f:0c:18:c4:74 dst_mac 02:1e:d9:e2:94:0a action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10691 flower src_mac 02:f1:0d:cc:f4:cd dst_mac 02:7b:b3:18:b0:8d action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10692 flower src_mac 02:a6:b1:f1:b0:0c dst_mac 02:73:75:60:df:fc action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10693 flower src_mac 02:14:d7:30:08:aa dst_mac 02:b8:0c:cc:80:3d vlan_id 636 vlan_ethtype 0x0800 src_ip 100.226.253.9 dst_ip 61.190.33.209 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10694 flower src_mac 02:e0:1c:99:d5:93 dst_mac 02:90:dc:66:f8:8e vlan_id 1060 vlan_ethtype 0x0800 src_ip 34.127.85.69 dst_ip 29.138.83.201 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10695 flower src_mac 02:ef:5e:5b:e9:15 dst_mac 02:e5:e8:d0:7c:fb action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10696 flower src_mac 02:e5:04:b6:8a:fb dst_mac 02:71:bc:56:aa:21 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10697 flower src_mac 02:44:b3:23:92:33 dst_mac 02:66:3a:52:51:15 src_ip 91.214.198.249 dst_ip 117.164.242.50 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10698 flower src_mac 02:dd:38:e3:39:70 dst_mac 02:7d:77:7f:b2:58 vlan_id 3525 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10699 flower src_mac 02:0d:7b:3b:30:55 dst_mac 02:19:f7:f5:10:8f vlan_id 2339 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10700 flower src_mac 02:cd:64:18:3c:52 dst_mac 02:09:5e:8f:d3:ca action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10701 flower src_mac 02:0c:7a:90:04:ae dst_mac 02:e7:fe:06:bd:a3 src_ip 16.21.128.81 dst_ip 112.9.164.176 ip_proto udp src_port 6245 dst_port 64405 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10702 flower src_mac 02:6a:33:4e:f5:04 dst_mac 02:38:95:88:41:63 vlan_id 309 vlan_ethtype ipv4 src_ip 96.2.240.148 dst_ip 94.229.222.22 ip_proto tcp src_port 58661 dst_port 22355 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10703 flower src_mac 02:4f:7f:77:59:ef dst_mac 02:73:0d:e6:2f:f7 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10704 flower src_mac 02:ec:28:2a:2e:66 dst_mac 02:16:48:c6:39:7d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10705 flower src_mac 02:78:bb:a9:04:a2 dst_mac 02:65:31:b3:43:b6 vlan_id 3612 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10706 flower src_mac 02:60:5b:f8:ef:7e dst_mac 02:4e:83:9a:f3:10 src_ip 58.120.153.221 dst_ip 121.48.244.8 ip_proto udp src_port 17884 dst_port 24145 action drop && tc filter add dev swp33 ingress protocol ip pref 10707 flower src_mac 02:90:06:5d:32:51 dst_mac 02:dd:26:bf:21:7b src_ip 96.122.135.241 dst_ip 66.138.110.234 ip_proto icmp code 111 type 13 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10708 flower src_mac 02:1b:74:f0:57:1f dst_mac 02:02:3a:aa:4a:20 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10709 flower src_mac 02:00:34:e7:64:6f dst_mac 02:a2:fe:0b:b1:9b vlan_id 3234 vlan_ethtype ip src_ip 38.86.237.7 dst_ip 52.123.113.224 ip_proto udp src_port 53287 dst_port 45667 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10710 flower src_mac 02:56:59:22:34:1d dst_mac 02:dd:8c:71:5b:b5 vlan_id 1247 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10711 flower src_mac 02:6f:13:8a:1a:f6 dst_mac 02:db:00:5f:6c:3c vlan_id 1856 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10712 flower src_mac 02:f7:53:82:1d:42 dst_mac 02:ed:df:43:82:4b src_ip 95.92.209.172 dst_ip 67.98.129.66 ip_proto udp src_port 1789 dst_port 9513 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10713 flower src_mac 02:50:da:70:33:58 dst_mac 02:9b:e3:65:10:59 vlan_id 2295 vlan_ethtype ipv4 src_ip 46.87.184.243 dst_ip 108.190.144.72 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10714 flower src_mac 02:08:08:18:e9:02 dst_mac 02:ea:cb:5b:7b:55 vlan_id 3162 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10715 flower src_mac 02:1e:f0:dd:cf:b1 dst_mac 02:52:63:75:8e:22 vlan_id 3501 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10716 flower src_mac 02:2d:9c:27:22:7d dst_mac 02:1b:c0:a5:f6:c3 vlan_id 4081 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10717 flower src_mac 02:88:b5:9d:95:62 dst_mac 02:4a:69:92:82:82 vlan_id 839 vlan_ethtype ipv4 src_ip 122.211.132.236 dst_ip 32.180.83.178 action trap && tc filter add dev swp33 ingress protocol ip pref 10718 flower src_mac 02:91:1a:6b:15:2d dst_mac 02:a5:51:cb:4b:83 src_ip 101.152.231.31 dst_ip 108.12.244.235 ip_proto tcp src_port 23140 dst_port 19539 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10719 flower src_mac 02:66:dc:cb:2f:1b dst_mac 02:3b:cf:08:93:cd src_ip 77.92.189.7 dst_ip 98.137.101.219 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10720 flower src_mac 02:0f:db:7a:9c:ce dst_mac 02:f6:ec:79:3a:30 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10721 flower src_mac 02:00:48:4a:05:64 dst_mac 02:5b:f4:05:6a:89 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10722 flower src_mac 02:8c:7d:ae:c9:ce dst_mac 02:ab:dd:36:4f:85 vlan_id 1875 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10723 flower src_mac 02:7f:fb:da:e5:c2 dst_mac 02:51:86:f0:45:5a vlan_id 3232 vlan_ethtype 0x0800 src_ip 70.114.172.243 dst_ip 13.58.173.100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10724 flower src_mac 02:c9:94:70:0e:b1 dst_mac 02:b9:49:79:75:ad vlan_id 1589 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10725 flower src_mac 02:04:2b:04:33:d1 dst_mac 02:67:45:bb:74:9f vlan_id 2629 vlan_ethtype ipv4 src_ip 40.90.92.46 dst_ip 65.59.40.207 ip_proto udp src_port 5971 dst_port 25799 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10726 flower src_mac 02:43:93:16:d8:af dst_mac 02:8b:44:ae:68:ec vlan_id 3433 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10727 flower src_mac 02:2c:38:ba:c8:af dst_mac 02:cc:d1:7c:2f:25 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10728 flower src_mac 02:91:33:84:65:f0 dst_mac 02:a2:9a:5f:a4:9a action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10729 flower src_mac 02:75:fc:dd:48:15 dst_mac 02:67:e1:20:46:03 vlan_id 2013 vlan_ethtype ip src_ip 91.219.17.164 dst_ip 53.34.70.157 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10730 flower src_mac 02:6d:b9:e7:13:79 dst_mac 02:54:b4:c3:bb:1c vlan_id 788 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10731 flower src_mac 02:ba:57:49:13:8f dst_mac 02:22:be:07:e8:db src_ip 124.249.197.238 dst_ip 68.61.17.5 ip_proto tcp src_port 22442 dst_port 59538 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10732 flower src_mac 02:cf:e8:72:06:6d dst_mac 02:33:b7:1d:f4:99 vlan_id 962 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10733 flower src_mac 02:0d:e6:2c:c0:a3 dst_mac 02:15:d8:ef:e2:bb vlan_id 767 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10734 flower src_mac 02:af:08:fb:ed:29 dst_mac 02:27:1e:5f:4f:4b vlan_id 723 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10735 flower src_mac 02:76:74:bb:9b:27 dst_mac 02:0f:4d:bb:ff:d1 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10736 flower src_mac 02:dd:82:43:c8:3e dst_mac 02:ee:36:c8:67:e6 vlan_id 3521 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10737 flower src_mac 02:26:cd:ca:03:b6 dst_mac 02:ed:8b:39:57:24 vlan_id 4076 vlan_ethtype ip src_ip 95.61.93.154 dst_ip 72.141.34.61 ip_proto udp src_port 51660 dst_port 29997 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10738 flower src_mac 02:36:38:fd:15:cf dst_mac 02:93:1c:ab:81:4c action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10739 flower src_mac 02:58:c7:98:d3:9b dst_mac 02:6c:d7:08:fb:64 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10740 flower src_mac 02:67:55:96:53:d3 dst_mac 02:ba:81:fa:72:59 vlan_id 528 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10741 flower src_mac 02:cf:03:6c:89:78 dst_mac 02:34:24:9a:b3:d3 vlan_id 1848 vlan_ethtype 0x0800 src_ip 85.186.215.228 dst_ip 26.150.204.225 ip_proto udp src_port 46566 dst_port 22045 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10742 flower src_mac 02:55:b0:8a:3c:79 dst_mac 02:36:f3:46:56:04 vlan_id 3958 vlan_ethtype ip src_ip 17.130.136.210 dst_ip 20.14.149.63 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10743 flower src_mac 02:80:4d:16:44:7b dst_mac 02:37:b3:8c:e4:08 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10744 flower src_mac 02:df:cd:99:e4:c2 dst_mac 02:fa:7b:f5:3f:32 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10745 flower src_mac 02:38:48:35:02:45 dst_mac 02:2d:58:ad:aa:f7 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10746 flower src_mac 02:ec:6e:94:c3:ec dst_mac 02:fa:09:34:cb:18 vlan_id 1012 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10747 flower src_mac 02:57:96:b6:ea:a8 dst_mac 02:aa:5f:81:b8:6a vlan_id 382 vlan_ethtype ipv4 src_ip 43.146.237.246 dst_ip 94.191.200.139 ip_proto tcp src_port 4230 dst_port 6426 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10748 flower src_mac 02:03:4b:9d:4e:90 dst_mac 02:ed:89:a2:21:2e vlan_id 3584 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10749 flower src_mac 02:d9:24:c2:d6:84 dst_mac 02:10:41:4f:74:43 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10750 flower src_mac 02:26:7d:d5:c5:7a dst_mac 02:e6:c8:21:bb:69 src_ip 123.118.100.191 dst_ip 72.13.210.152 ip_proto udp src_port 39080 dst_port 27108 action drop && tc filter add dev swp33 ingress protocol ip pref 10751 flower src_mac 02:53:c3:fb:61:05 dst_mac 02:21:0e:61:84:5f src_ip 68.220.119.32 dst_ip 24.63.241.247 ip_proto udp src_port 53090 dst_port 40715 action trap && tc filter add dev swp33 ingress protocol ip pref 10752 flower src_mac 02:76:ba:02:ac:16 dst_mac 02:8d:21:ff:d4:f9 src_ip 19.176.81.100 dst_ip 94.248.26.178 ip_proto icmp code 64 type 15 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10753 flower src_mac 02:5f:b5:62:f4:5e dst_mac 02:b7:af:d2:69:7d vlan_id 183 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10754 flower src_mac 02:d1:67:34:f8:50 dst_mac 02:b2:15:9e:b1:33 vlan_id 2183 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10755 flower src_mac 02:62:dd:dd:0c:d2 dst_mac 02:c8:bb:ac:fb:54 src_ip 84.243.23.204 dst_ip 106.97.30.131 ip_proto tcp src_port 23775 dst_port 2963 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10756 flower src_mac 02:e1:8c:69:96:32 dst_mac 02:41:18:db:11:ef vlan_id 4083 vlan_ethtype ipv4 src_ip 41.243.138.158 dst_ip 75.208.102.140 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10757 flower src_mac 02:c5:cf:c1:08:31 dst_mac 02:6d:3e:8d:8c:02 vlan_id 2273 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10758 flower src_mac 02:29:71:e9:d4:60 dst_mac 02:18:9c:92:d0:42 src_ip 108.226.115.175 dst_ip 84.253.147.250 ip_proto tcp src_port 56371 dst_port 56188 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10759 flower src_mac 02:18:54:64:38:39 dst_mac 02:7b:c2:7f:92:98 src_ip 116.36.19.240 dst_ip 72.77.89.62 ip_proto icmp code 125 type 17 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10760 flower src_mac 02:f5:07:9c:15:d8 dst_mac 02:5e:ee:74:90:06 src_ip 80.195.206.161 dst_ip 89.73.45.190 ip_proto tcp src_port 49258 dst_port 57514 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10761 flower src_mac 02:50:05:46:12:ed dst_mac 02:fe:14:13:d0:ae action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10762 flower src_mac 02:fc:90:65:12:8d dst_mac 02:74:1e:1e:ff:c4 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10763 flower src_mac 02:d0:b7:3d:e9:1a dst_mac 02:a6:06:62:1b:2c src_ip 109.106.62.140 dst_ip 87.98.48.220 ip_proto udp src_port 1125 dst_port 9059 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10764 flower src_mac 02:ae:ca:98:7b:32 dst_mac 02:ca:c1:65:7f:c6 src_ip 77.63.216.129 dst_ip 19.180.17.73 ip_proto tcp src_port 12160 dst_port 32543 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10765 flower src_mac 02:de:62:d4:59:de dst_mac 02:10:59:6f:e6:94 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10766 flower src_mac 02:3e:19:f6:60:af dst_mac 02:32:9a:15:cf:03 vlan_id 1837 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10767 flower src_mac 02:4f:6f:29:b7:dd dst_mac 02:92:7a:4b:c8:8f vlan_id 1984 vlan_ethtype ipv4 src_ip 86.6.207.203 dst_ip 26.191.125.13 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10768 flower src_mac 02:f5:81:a4:e9:15 dst_mac 02:ab:85:25:6d:d3 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10769 flower src_mac 02:04:f2:22:e4:be dst_mac 02:96:06:27:2e:bf action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10770 flower src_mac 02:c8:63:12:11:df dst_mac 02:03:ea:9d:2b:5a vlan_id 1258 vlan_ethtype 0x0800 src_ip 119.197.255.71 dst_ip 80.90.239.40 ip_proto tcp src_port 19696 dst_port 55072 action pass && tc filter add dev swp33 ingress protocol ip pref 10771 flower src_mac 02:a5:c7:c3:d6:a5 dst_mac 02:8d:0e:8d:65:6d src_ip 98.222.43.225 dst_ip 27.171.202.116 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10772 flower src_mac 02:6b:88:87:8e:98 dst_mac 02:56:65:0c:11:43 vlan_id 3407 vlan_ethtype 0x0800 src_ip 35.30.227.34 dst_ip 41.127.202.43 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10773 flower src_mac 02:00:0d:cf:16:b9 dst_mac 02:72:bd:e4:d1:e2 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10774 flower src_mac 02:58:b7:57:26:81 dst_mac 02:cd:ac:6d:27:24 vlan_id 2782 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10775 flower src_mac 02:12:a7:46:79:27 dst_mac 02:67:e2:3c:7a:b0 src_ip 34.46.152.201 dst_ip 34.68.167.93 ip_proto udp src_port 62990 dst_port 32952 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10776 flower src_mac 02:ba:f2:4e:b8:4d dst_mac 02:3b:89:b7:4e:d5 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10777 flower src_mac 02:77:c1:f2:46:93 dst_mac 02:ce:93:60:61:d1 vlan_id 2934 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10778 flower src_mac 02:06:4a:00:b4:12 dst_mac 02:0c:1f:4a:26:0a action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10779 flower src_mac 02:6d:7f:1f:fa:58 dst_mac 02:14:10:15:73:8d src_ip 53.59.139.163 dst_ip 81.154.23.52 ip_proto tcp src_port 6857 dst_port 52632 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10780 flower src_mac 02:dc:66:0b:95:5d dst_mac 02:b8:4d:cb:6b:72 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10781 flower src_mac 02:1b:f9:e6:a1:67 dst_mac 02:87:db:1e:fa:19 vlan_id 1128 vlan_ethtype ipv4 src_ip 46.55.30.218 dst_ip 21.98.1.86 ip_proto udp src_port 44065 dst_port 39665 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10782 flower src_mac 02:42:26:9b:c5:21 dst_mac 02:18:67:6a:28:62 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10783 flower src_mac 02:ac:20:8c:3f:22 dst_mac 02:5a:5d:23:ca:fb vlan_id 3867 vlan_ethtype ip src_ip 14.190.82.61 dst_ip 50.189.175.249 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10784 flower src_mac 02:57:2d:f2:17:75 dst_mac 02:7d:fd:0d:63:7f src_ip 51.2.240.39 dst_ip 64.84.214.148 ip_proto icmp code 0 type 3 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10785 flower src_mac 02:d6:d9:59:df:6e dst_mac 02:51:bc:68:5c:85 vlan_id 1250 vlan_ethtype 0x0800 src_ip 35.218.196.69 dst_ip 29.157.118.77 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10786 flower src_mac 02:2e:fe:b9:6f:43 dst_mac 02:35:3f:9b:fe:f4 vlan_id 3314 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10787 flower src_mac 02:5a:fe:c7:13:dd dst_mac 02:64:62:30:b8:3d vlan_id 2540 vlan_ethtype 0x0800 src_ip 38.52.175.22 dst_ip 52.50.101.73 ip_proto tcp src_port 31495 dst_port 5898 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10788 flower src_mac 02:7b:9a:d8:0d:73 dst_mac 02:fd:14:9b:1d:9e vlan_id 2812 vlan_ethtype ipv4 src_ip 62.39.56.100 dst_ip 21.143.17.221 ip_proto tcp src_port 27320 dst_port 17872 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10789 flower src_mac 02:e2:15:fb:5b:f7 dst_mac 02:8c:ec:ff:eb:0e vlan_id 1044 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10790 flower src_mac 02:23:b0:ea:f0:dd dst_mac 02:e1:9c:12:cf:46 vlan_id 1611 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10791 flower src_mac 02:3f:24:76:f4:44 dst_mac 02:06:8d:72:c6:42 src_ip 64.72.136.196 dst_ip 51.246.247.102 ip_proto tcp src_port 53552 dst_port 11252 action pass && tc filter add dev swp33 ingress protocol ip pref 10792 flower src_mac 02:20:08:14:df:c1 dst_mac 02:c1:79:f3:7e:e9 src_ip 78.205.170.244 dst_ip 101.179.242.85 ip_proto icmp code 144 type 12 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10793 flower src_mac 02:cd:7f:74:ec:35 dst_mac 02:86:6d:31:de:39 vlan_id 2570 vlan_ethtype 0x0800 src_ip 76.59.42.244 dst_ip 15.126.67.15 ip_proto udp src_port 65115 dst_port 46138 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10794 flower src_mac 02:fe:7a:3d:58:5a dst_mac 02:ac:3e:a4:29:7b src_ip 51.135.114.129 dst_ip 16.168.83.17 ip_proto udp src_port 29038 dst_port 53974 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10795 flower src_mac 02:d2:25:3e:4d:08 dst_mac 02:1b:88:56:f9:c2 vlan_id 3973 vlan_ethtype ipv4 src_ip 60.61.120.95 dst_ip 43.86.73.215 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10796 flower src_mac 02:f6:e1:1a:32:7c dst_mac 02:65:8c:93:7c:df src_ip 70.98.220.198 dst_ip 12.118.137.54 ip_proto icmp code 222 type 15 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10797 flower src_mac 02:0b:cc:1e:d2:44 dst_mac 02:ca:07:8b:4b:e6 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10798 flower src_mac 02:71:d8:5b:06:0e dst_mac 02:89:a9:84:3d:1f vlan_id 3300 vlan_ethtype ip src_ip 94.11.20.118 dst_ip 107.178.137.101 ip_proto udp src_port 58008 dst_port 60100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10799 flower src_mac 02:de:cf:bc:22:e0 dst_mac 02:3e:e6:86:5c:cb vlan_id 2968 vlan_ethtype 0x9300 action drop INFO asyncssh:logging.py:92 [conn=24, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 10800 flower src_mac 02:f8:46:1b:39:aa dst_mac 02:39:71:8e:34:6c vlan_id 2388 vlan_ethtype ip src_ip 38.17.56.165 dst_ip 51.226.49.7 ip_proto udp src_port 45618 dst_port 39662 action pass && tc filter add dev swp33 ingress protocol ip pref 10801 flower src_mac 02:76:c8:50:ac:ca dst_mac 02:01:06:ae:57:27 src_ip 88.246.199.136 dst_ip 90.38.126.52 ip_proto icmp code 77 type 5 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10802 flower src_mac 02:34:7a:e1:76:4f dst_mac 02:18:a5:44:b2:49 vlan_id 997 vlan_ethtype ip src_ip 24.231.47.98 dst_ip 33.136.207.28 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10803 flower src_mac 02:6f:df:1c:57:e3 dst_mac 02:fe:19:59:68:0e action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10804 flower src_mac 02:38:b5:80:bb:04 dst_mac 02:dd:53:77:46:68 vlan_id 1995 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10805 flower src_mac 02:9a:b1:bb:2a:b5 dst_mac 02:40:8d:3c:72:43 src_ip 53.135.137.89 dst_ip 84.67.51.216 ip_proto udp src_port 48413 dst_port 40661 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10806 flower src_mac 02:2a:2e:c8:30:57 dst_mac 02:b0:9c:2c:dd:33 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10807 flower src_mac 02:5f:89:11:a3:e7 dst_mac 02:ba:4c:45:99:f1 src_ip 113.15.127.94 dst_ip 63.212.107.141 ip_proto tcp src_port 51134 dst_port 20480 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10808 flower src_mac 02:14:4c:bf:0c:4a dst_mac 02:7d:73:0a:01:48 vlan_id 1488 vlan_ethtype ip src_ip 73.64.219.120 dst_ip 47.100.57.168 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10809 flower src_mac 02:65:b4:24:d1:8c dst_mac 02:82:35:3a:a9:f7 vlan_id 447 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10810 flower src_mac 02:e3:10:36:44:09 dst_mac 02:30:a8:45:8d:a4 src_ip 79.138.138.36 dst_ip 98.107.6.150 ip_proto tcp src_port 38181 dst_port 20795 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10811 flower src_mac 02:af:23:0f:a0:6b dst_mac 02:73:1d:ac:44:8d vlan_id 1752 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10812 flower src_mac 02:e2:24:bd:c4:28 dst_mac 02:5b:71:ab:7e:5b src_ip 50.144.136.55 dst_ip 122.251.127.55 ip_proto icmp code 7 type 4 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10813 flower src_mac 02:65:11:43:aa:91 dst_mac 02:db:77:bd:da:03 vlan_id 1895 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10814 flower src_mac 02:17:62:09:1b:aa dst_mac 02:20:22:fe:92:55 src_ip 84.61.156.205 dst_ip 89.77.32.11 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10815 flower src_mac 02:97:6e:f3:aa:7a dst_mac 02:57:f8:f9:34:e1 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10816 flower src_mac 02:46:33:72:a0:81 dst_mac 02:73:1c:db:0e:e9 vlan_id 1338 vlan_ethtype ipv4 src_ip 33.94.104.216 dst_ip 30.141.161.82 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10817 flower src_mac 02:cd:c4:7e:ed:f1 dst_mac 02:be:53:6b:55:1b vlan_id 975 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10818 flower src_mac 02:14:c8:be:df:a9 dst_mac 02:dd:04:f1:31:e8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10819 flower src_mac 02:df:df:5c:59:72 dst_mac 02:20:db:47:7e:27 vlan_id 3409 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10820 flower src_mac 02:fb:27:fd:e9:af dst_mac 02:0a:bb:e9:12:c4 src_ip 76.200.100.15 dst_ip 126.0.86.96 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10821 flower src_mac 02:a1:45:1c:11:c9 dst_mac 02:6a:59:a9:88:d3 vlan_id 2852 vlan_ethtype ipv4 src_ip 123.120.37.97 dst_ip 57.57.48.137 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10822 flower src_mac 02:1b:e6:0d:7b:c5 dst_mac 02:ec:46:ea:fd:7a vlan_id 1520 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10823 flower src_mac 02:48:de:fd:c1:72 dst_mac 02:9a:99:c4:28:a1 vlan_id 1971 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10824 flower src_mac 02:cd:d1:ee:a4:1d dst_mac 02:5f:d7:3a:9a:21 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10825 flower src_mac 02:40:a3:16:d8:a1 dst_mac 02:45:ea:75:cf:95 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10826 flower src_mac 02:35:bf:a7:ad:10 dst_mac 02:a5:c9:05:f3:59 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10827 flower src_mac 02:ce:90:a9:45:46 dst_mac 02:38:e8:14:0e:17 vlan_id 3496 vlan_ethtype ipv4 src_ip 71.175.18.6 dst_ip 49.242.46.113 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10828 flower src_mac 02:c7:52:aa:df:bf dst_mac 02:03:70:0f:b1:8f src_ip 90.217.168.82 dst_ip 16.181.18.160 ip_proto udp src_port 13574 dst_port 21780 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10829 flower src_mac 02:3e:2a:2e:84:09 dst_mac 02:95:5e:d5:8f:b2 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10830 flower src_mac 02:32:4e:bd:8d:c9 dst_mac 02:f0:98:cf:5d:ee vlan_id 70 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10831 flower src_mac 02:7e:f5:12:0d:1e dst_mac 02:26:75:45:36:51 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10832 flower src_mac 02:69:e4:29:3e:1f dst_mac 02:34:22:cf:f6:9b action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10833 flower src_mac 02:7c:ee:3b:f7:ee dst_mac 02:c3:8a:82:17:23 vlan_id 3931 vlan_ethtype ip src_ip 88.45.102.126 dst_ip 125.181.35.188 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10834 flower src_mac 02:92:24:01:cd:16 dst_mac 02:aa:54:e9:3f:d8 vlan_id 2861 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10835 flower src_mac 02:05:03:a3:3c:fa dst_mac 02:69:3c:e4:e9:1c vlan_id 163 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10836 flower src_mac 02:c1:c5:37:ce:77 dst_mac 02:c5:56:3a:f1:08 src_ip 94.246.71.157 dst_ip 36.139.38.193 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10837 flower src_mac 02:c0:bf:53:a4:be dst_mac 02:bb:38:a7:8a:1a vlan_id 1565 vlan_ethtype 0x0800 src_ip 98.0.5.130 dst_ip 33.49.219.128 action drop && tc filter add dev swp33 ingress protocol ip pref 10838 flower src_mac 02:6f:22:33:67:3b dst_mac 02:85:4a:37:7b:db src_ip 110.54.89.19 dst_ip 117.12.65.34 ip_proto tcp src_port 21302 dst_port 8795 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10839 flower src_mac 02:1a:28:20:ba:26 dst_mac 02:b5:5c:95:b4:ed vlan_id 1917 vlan_ethtype 0x0800 src_ip 116.238.88.34 dst_ip 124.15.171.100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10840 flower src_mac 02:f6:7d:11:2e:7f dst_mac 02:09:d0:9b:fb:fc action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10841 flower src_mac 02:9e:ea:7f:2e:42 dst_mac 02:a9:d6:df:6f:03 vlan_id 2129 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10842 flower src_mac 02:8b:2a:c0:0c:ab dst_mac 02:bb:2b:08:18:20 vlan_id 1817 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10843 flower src_mac 02:20:55:e5:11:5b dst_mac 02:6d:48:f5:da:6c vlan_id 163 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10844 flower src_mac 02:48:2f:a9:98:f3 dst_mac 02:29:dd:6b:0c:93 vlan_id 2055 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10845 flower src_mac 02:21:11:3a:e0:35 dst_mac 02:eb:94:1d:a0:5b vlan_id 1120 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10846 flower src_mac 02:89:39:2e:1d:e4 dst_mac 02:0a:75:25:5d:1d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10847 flower src_mac 02:6d:46:c7:7b:fe dst_mac 02:69:f1:a8:fc:75 vlan_id 3093 vlan_ethtype ipv4 src_ip 54.134.95.34 dst_ip 98.61.54.198 ip_proto tcp src_port 65267 dst_port 56826 action trap && tc filter add dev swp33 ingress protocol ip pref 10848 flower src_mac 02:1a:ae:0d:b8:e2 dst_mac 02:f4:2f:24:80:a2 src_ip 68.34.153.159 dst_ip 110.98.168.182 ip_proto udp src_port 39606 dst_port 4935 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10849 flower src_mac 02:42:c1:a3:89:d5 dst_mac 02:ee:e2:64:df:32 vlan_id 1415 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10850 flower src_mac 02:53:22:e6:cf:5d dst_mac 02:9c:62:f8:8b:59 src_ip 45.113.56.205 dst_ip 122.28.14.61 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10851 flower src_mac 02:e1:4f:84:e0:a1 dst_mac 02:74:07:dd:1e:51 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10852 flower src_mac 02:c2:f8:a1:04:05 dst_mac 02:19:7d:2e:b1:7d vlan_id 446 vlan_ethtype ip src_ip 22.160.78.183 dst_ip 109.203.71.44 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10853 flower src_mac 02:a1:a9:96:68:53 dst_mac 02:90:ef:26:87:14 vlan_id 3822 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10854 flower src_mac 02:c7:b9:76:4f:a1 dst_mac 02:6c:24:86:b5:9c vlan_id 837 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10855 flower src_mac 02:fa:7f:b1:a6:be dst_mac 02:de:44:27:92:e6 src_ip 119.88.205.185 dst_ip 101.17.93.169 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10856 flower src_mac 02:8c:1f:28:94:a9 dst_mac 02:e2:81:01:56:98 vlan_id 3184 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10857 flower src_mac 02:b5:fe:c0:5d:da dst_mac 02:b0:05:73:09:24 src_ip 120.241.62.20 dst_ip 62.40.31.83 ip_proto udp src_port 6574 dst_port 58769 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10858 flower src_mac 02:83:1a:88:c9:3a dst_mac 02:0b:ce:e1:bb:08 vlan_id 1560 vlan_ethtype ip src_ip 34.54.89.58 dst_ip 87.108.213.191 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10859 flower src_mac 02:e7:27:57:70:94 dst_mac 02:b0:cc:43:fb:da action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10860 flower src_mac 02:15:6e:4d:e0:6e dst_mac 02:c5:aa:c1:5b:c8 vlan_id 1796 vlan_ethtype ipv4 src_ip 28.70.6.216 dst_ip 78.82.16.123 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10861 flower src_mac 02:c2:0c:2d:2c:a6 dst_mac 02:3d:af:c8:97:df vlan_id 4085 vlan_ethtype ipv4 src_ip 111.35.93.89 dst_ip 46.12.90.155 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10862 flower src_mac 02:a0:19:ef:0f:c3 dst_mac 02:3a:51:77:bd:ab vlan_id 3318 vlan_ethtype 0x0800 src_ip 75.34.33.101 dst_ip 17.181.241.72 ip_proto udp src_port 31504 dst_port 24186 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10863 flower src_mac 02:67:f8:f2:d0:1c dst_mac 02:4c:82:73:d3:fb action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10864 flower src_mac 02:0e:d9:cf:e0:47 dst_mac 02:52:c9:1d:73:ec vlan_id 1251 vlan_ethtype 0x0800 src_ip 90.75.24.102 dst_ip 93.94.113.22 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10865 flower src_mac 02:0e:a6:3f:7f:76 dst_mac 02:3b:70:92:10:5a action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10866 flower src_mac 02:76:71:df:7d:74 dst_mac 02:ff:a9:37:bd:8a vlan_id 1906 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10867 flower src_mac 02:70:b8:13:aa:04 dst_mac 02:86:37:53:93:b6 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10868 flower src_mac 02:77:74:e5:62:46 dst_mac 02:28:7f:1f:48:a5 src_ip 95.184.18.129 dst_ip 64.64.227.91 action pass && tc filter add dev swp33 ingress protocol ip pref 10869 flower src_mac 02:0f:68:26:e3:ce dst_mac 02:77:67:8b:0b:1c src_ip 39.48.210.127 dst_ip 41.20.97.189 ip_proto tcp src_port 47618 dst_port 32129 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10870 flower src_mac 02:48:0d:b9:a5:0e dst_mac 02:c5:32:15:45:8e vlan_id 3869 vlan_ethtype ipv4 src_ip 18.148.90.136 dst_ip 26.185.246.183 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10871 flower src_mac 02:ca:7d:56:27:db dst_mac 02:b8:2b:00:48:e1 vlan_id 306 vlan_ethtype ipv4 src_ip 81.237.160.226 dst_ip 90.230.60.100 ip_proto udp src_port 64052 dst_port 29416 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10872 flower src_mac 02:9f:88:aa:7b:a9 dst_mac 02:65:a7:34:68:45 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10873 flower src_mac 02:f2:6b:c3:35:9c dst_mac 02:c3:0c:a4:a2:9a src_ip 18.4.150.12 dst_ip 123.70.227.65 ip_proto tcp src_port 62634 dst_port 50200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10874 flower src_mac 02:12:0e:b2:a7:53 dst_mac 02:77:8c:d7:b7:59 src_ip 62.117.12.34 dst_ip 47.158.16.213 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10875 flower src_mac 02:6b:52:85:e2:37 dst_mac 02:f1:6f:ca:03:af vlan_id 3528 vlan_ethtype ip src_ip 111.112.191.5 dst_ip 119.181.186.168 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10876 flower src_mac 02:9a:31:6d:f2:29 dst_mac 02:98:e9:d0:2d:fd vlan_id 670 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10877 flower src_mac 02:6a:90:d9:44:36 dst_mac 02:ab:00:7b:49:44 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10878 flower src_mac 02:41:55:ac:98:bd dst_mac 02:ff:36:b2:c3:32 vlan_id 4058 vlan_ethtype ipv4 src_ip 68.11.67.231 dst_ip 116.204.46.250 ip_proto tcp src_port 37811 dst_port 3683 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10879 flower src_mac 02:0c:57:7c:52:e1 dst_mac 02:50:fc:55:dd:86 vlan_id 38 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10880 flower src_mac 02:7f:6d:55:cb:3a dst_mac 02:65:1d:e7:e6:d3 src_ip 13.214.228.222 dst_ip 126.118.125.58 ip_proto udp src_port 25773 dst_port 16052 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10881 flower src_mac 02:81:03:db:f7:35 dst_mac 02:f2:3d:c9:ee:e0 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10882 flower src_mac 02:38:f4:d4:54:4f dst_mac 02:29:67:c4:d7:0f vlan_id 119 vlan_ethtype ipv4 src_ip 112.149.186.233 dst_ip 57.159.203.138 ip_proto tcp src_port 65470 dst_port 1891 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10883 flower src_mac 02:b5:14:e9:68:b0 dst_mac 02:2f:cf:a0:8b:1b vlan_id 652 vlan_ethtype ipv4 src_ip 100.22.166.234 dst_ip 77.229.58.68 action trap && tc filter add dev swp33 ingress protocol ip pref 10884 flower src_mac 02:23:44:d0:62:67 dst_mac 02:bf:9a:c1:b6:aa src_ip 102.21.251.29 dst_ip 116.71.77.162 ip_proto icmp code 88 type 3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10885 flower src_mac 02:ac:c8:1c:df:4d dst_mac 02:e9:64:15:3d:de vlan_id 3604 vlan_ethtype 0x0800 src_ip 101.195.153.176 dst_ip 30.60.125.166 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10886 flower src_mac 02:14:33:28:e2:cd dst_mac 02:81:94:b7:3f:78 src_ip 54.132.94.154 dst_ip 59.178.42.182 ip_proto udp src_port 55202 dst_port 41928 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10887 flower src_mac 02:93:24:cb:b6:0c dst_mac 02:98:17:f1:be:d3 vlan_id 3376 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10888 flower src_mac 02:d2:91:ed:43:c0 dst_mac 02:ba:1b:ca:49:23 vlan_id 332 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10889 flower src_mac 02:04:89:75:a0:10 dst_mac 02:fd:43:d2:cc:74 vlan_id 3377 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10890 flower src_mac 02:91:93:44:5c:4e dst_mac 02:fa:a5:91:b3:0e vlan_id 3685 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10891 flower src_mac 02:3f:58:8e:1f:3b dst_mac 02:9d:0a:aa:28:95 vlan_id 2659 vlan_ethtype 0x0800 src_ip 69.113.187.250 dst_ip 107.76.160.224 ip_proto tcp src_port 57203 dst_port 16829 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10892 flower src_mac 02:84:74:a9:8f:09 dst_mac 02:cd:31:02:5a:31 vlan_id 885 vlan_ethtype ipv4 src_ip 30.168.137.125 dst_ip 61.71.126.156 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10893 flower src_mac 02:04:70:25:0f:b2 dst_mac 02:79:bc:99:e5:58 src_ip 40.80.52.43 dst_ip 31.168.172.175 ip_proto icmp code 175 type 12 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10894 flower src_mac 02:79:20:1d:fc:e3 dst_mac 02:7b:2b:7c:ad:c6 vlan_id 1777 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10895 flower src_mac 02:7a:97:2e:00:fe dst_mac 02:b4:77:53:22:90 vlan_id 2492 vlan_ethtype 0x0800 src_ip 93.164.184.132 dst_ip 92.60.245.20 ip_proto tcp src_port 58105 dst_port 20248 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10896 flower src_mac 02:ae:5c:a4:2f:79 dst_mac 02:a9:c7:68:27:4e vlan_id 3145 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10897 flower src_mac 02:b0:e4:35:0d:40 dst_mac 02:d2:39:cc:7f:1e src_ip 82.233.234.5 dst_ip 105.184.236.42 ip_proto udp src_port 26182 dst_port 51377 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10898 flower src_mac 02:db:a2:ac:a3:b2 dst_mac 02:4f:03:9a:b0:e2 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10899 flower src_mac 02:c8:ee:17:1a:73 dst_mac 02:ff:94:32:70:1b src_ip 86.204.77.137 dst_ip 24.3.192.114 ip_proto icmp code 222 type 17 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10900 flower src_mac 02:9c:93:d1:83:6d dst_mac 02:82:9c:c8:df:46 src_ip 51.109.161.135 dst_ip 24.198.167.85 ip_proto tcp src_port 39916 dst_port 32622 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10901 flower src_mac 02:23:65:f9:26:ad dst_mac 02:52:85:b4:ad:f9 vlan_id 1960 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10902 flower src_mac 02:a4:18:a7:24:f7 dst_mac 02:05:e0:be:d0:20 src_ip 99.168.193.7 dst_ip 24.28.57.106 ip_proto icmp code 111 type 8 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10903 flower src_mac 02:f2:79:ab:95:59 dst_mac 02:23:6b:80:7b:70 src_ip 125.62.229.241 dst_ip 66.253.197.230 ip_proto tcp src_port 25298 dst_port 47848 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10904 flower src_mac 02:50:1e:85:5d:25 dst_mac 02:24:97:bb:8d:bd vlan_id 1499 vlan_ethtype 0x0800 src_ip 68.29.33.140 dst_ip 60.118.142.22 ip_proto tcp src_port 60518 dst_port 58804 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10905 flower src_mac 02:1f:cc:36:d3:40 dst_mac 02:bc:05:f5:d0:5c vlan_id 3990 vlan_ethtype 0x0800 src_ip 105.190.252.155 dst_ip 115.17.232.197 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10906 flower src_mac 02:c0:51:25:da:ed dst_mac 02:ab:21:4d:a5:aa vlan_id 759 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10907 flower src_mac 02:ff:a6:fc:0e:20 dst_mac 02:fb:c6:29:3c:09 src_ip 50.36.158.18 dst_ip 17.103.72.231 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10908 flower src_mac 02:41:7a:4b:5c:03 dst_mac 02:80:31:2a:6b:24 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10909 flower src_mac 02:48:c4:28:67:dd dst_mac 02:b4:40:4e:74:55 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10910 flower src_mac 02:31:49:ee:f8:a8 dst_mac 02:46:bb:0e:14:cb vlan_id 2723 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10911 flower src_mac 02:80:80:a2:26:85 dst_mac 02:b0:87:61:7c:21 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10912 flower src_mac 02:3c:4c:af:79:f6 dst_mac 02:3d:7a:c5:32:51 vlan_id 2396 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10913 flower src_mac 02:25:50:f7:82:8d dst_mac 02:df:03:c9:27:ac src_ip 108.10.77.123 dst_ip 67.65.11.76 ip_proto icmp code 156 type 11 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10914 flower src_mac 02:b1:5a:7d:11:f3 dst_mac 02:92:ac:c2:e7:7b action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10915 flower src_mac 02:3d:15:bf:bf:a0 dst_mac 02:44:a7:84:26:4d action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10916 flower src_mac 02:26:37:b6:32:4c dst_mac 02:ae:c6:05:08:d7 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10917 flower src_mac 02:52:8b:2f:26:69 dst_mac 02:ed:cd:d5:fe:91 vlan_id 3941 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10918 flower src_mac 02:e8:b1:5a:08:b7 dst_mac 02:2e:a4:6d:ea:79 vlan_id 1714 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10919 flower src_mac 02:26:52:aa:d3:ae dst_mac 02:76:c1:99:8f:9d vlan_id 750 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10920 flower src_mac 02:77:82:58:9e:a3 dst_mac 02:c0:df:2f:38:56 src_ip 78.44.142.97 dst_ip 36.130.113.35 ip_proto icmp code 87 type 8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10921 flower src_mac 02:ab:59:13:c0:d9 dst_mac 02:91:c1:9e:48:fd vlan_id 2721 vlan_ethtype ipv4 src_ip 46.112.167.22 dst_ip 76.55.89.197 ip_proto udp src_port 8481 dst_port 11634 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10922 flower src_mac 02:be:c2:b5:de:a6 dst_mac 02:6f:65:5e:2b:eb vlan_id 3378 vlan_ethtype ip src_ip 77.222.193.55 dst_ip 45.221.4.235 ip_proto udp src_port 41917 dst_port 6735 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10923 flower src_mac 02:08:10:b8:f9:b6 dst_mac 02:9e:b2:f0:6b:4b vlan_id 1368 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10924 flower src_mac 02:ff:d8:35:c1:34 dst_mac 02:f4:c9:80:c9:0c action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10925 flower src_mac 02:0c:85:6f:f9:45 dst_mac 02:07:6e:c4:b2:0e vlan_id 693 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10926 flower src_mac 02:a4:d3:dc:42:0e dst_mac 02:8a:a9:30:71:44 vlan_id 3551 vlan_ethtype ipv4 src_ip 122.215.142.33 dst_ip 34.211.218.190 ip_proto tcp src_port 41567 dst_port 32873 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10927 flower src_mac 02:c1:fe:a3:e4:b6 dst_mac 02:e0:ed:d1:05:ff vlan_id 2750 vlan_ethtype ipv4 src_ip 122.11.116.68 dst_ip 73.51.4.45 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10928 flower src_mac 02:4b:28:eb:23:57 dst_mac 02:ed:47:8b:82:72 vlan_id 2716 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10929 flower src_mac 02:7e:87:a3:f7:14 dst_mac 02:82:ef:35:08:7e src_ip 89.15.246.243 dst_ip 63.145.88.189 action drop && tc filter add dev swp33 ingress protocol ip pref 10930 flower src_mac 02:16:87:39:09:db dst_mac 02:7b:f0:4d:e9:44 src_ip 77.124.235.145 dst_ip 67.58.176.175 ip_proto icmp code 17 type 16 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10931 flower src_mac 02:21:66:9e:53:9a dst_mac 02:66:71:7c:1d:92 src_ip 13.205.194.170 dst_ip 58.19.89.76 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10932 flower src_mac 02:dd:9d:72:e0:ee dst_mac 02:16:4e:8b:12:04 vlan_id 3487 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10933 flower src_mac 02:96:23:2e:d7:09 dst_mac 02:46:71:72:06:c2 src_ip 27.116.118.71 dst_ip 91.246.247.46 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10934 flower src_mac 02:56:6c:7e:af:82 dst_mac 02:25:5a:e0:39:bd vlan_id 262 vlan_ethtype 0x0800 src_ip 66.163.196.4 dst_ip 108.82.173.240 ip_proto udp src_port 51550 dst_port 65091 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10935 flower src_mac 02:b6:79:98:88:94 dst_mac 02:97:d6:0a:cf:03 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10936 flower src_mac 02:e4:0b:40:8c:57 dst_mac 02:eb:28:d5:68:74 vlan_id 2470 vlan_ethtype ip src_ip 60.186.226.160 dst_ip 89.103.240.26 ip_proto udp src_port 50136 dst_port 10659 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10937 flower src_mac 02:64:74:15:17:0b dst_mac 02:c3:ea:4f:b5:47 vlan_id 3907 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10938 flower src_mac 02:b8:03:d7:bc:65 dst_mac 02:f5:0c:4a:c6:0f src_ip 11.0.38.155 dst_ip 40.175.70.99 ip_proto icmp code 249 type 12 action pass && tc filter add dev swp33 ingress protocol ip pref 10939 flower src_mac 02:64:eb:92:f3:b3 dst_mac 02:5b:69:29:18:68 src_ip 56.16.0.238 dst_ip 14.163.23.198 ip_proto icmp code 44 type 14 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10940 flower src_mac 02:b8:bc:e8:bb:d8 dst_mac 02:31:db:fd:40:9d vlan_id 2133 vlan_ethtype 0x0800 src_ip 93.243.210.156 dst_ip 91.165.4.248 ip_proto udp src_port 34137 dst_port 13250 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10941 flower src_mac 02:f4:f8:9d:02:ac dst_mac 02:dd:aa:51:b7:83 vlan_id 1810 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10942 flower src_mac 02:14:a0:e0:c9:f3 dst_mac 02:24:f9:41:2a:dd vlan_id 1184 vlan_ethtype ipv4 src_ip 108.185.90.24 dst_ip 112.126.84.228 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10943 flower src_mac 02:b2:cf:40:7c:55 dst_mac 02:33:21:94:c2:c6 src_ip 11.33.14.72 dst_ip 80.114.21.53 ip_proto tcp src_port 36493 dst_port 11319 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10944 flower src_mac 02:5c:8b:0b:40:08 dst_mac 02:1e:d2:c9:95:86 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10945 flower src_mac 02:6f:a8:fe:2b:42 dst_mac 02:b8:96:53:64:21 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10946 flower src_mac 02:52:81:c5:09:4b dst_mac 02:9e:ff:f7:27:fa vlan_id 1715 vlan_ethtype ipv4 src_ip 71.110.158.104 dst_ip 21.24.51.222 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10947 flower src_mac 02:d0:8c:b5:f1:e0 dst_mac 02:d8:8f:54:d4:2d vlan_id 727 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10948 flower src_mac 02:37:72:ad:b7:69 dst_mac 02:cb:80:48:5b:2e vlan_id 497 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10949 flower src_mac 02:53:72:de:0d:25 dst_mac 02:2c:af:25:26:b6 vlan_id 2654 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10950 flower src_mac 02:cc:90:38:79:51 dst_mac 02:2b:00:af:5a:ab vlan_id 2596 vlan_ethtype ipv4 src_ip 94.197.131.215 dst_ip 114.187.206.238 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10951 flower src_mac 02:e1:b2:32:b6:5e dst_mac 02:97:f9:fd:d9:d2 vlan_id 654 vlan_ethtype 0x0800 src_ip 51.205.220.216 dst_ip 33.149.220.177 ip_proto udp src_port 57906 dst_port 37729 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10952 flower src_mac 02:77:e3:d5:ba:7f dst_mac 02:1b:93:4c:a4:50 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10953 flower src_mac 02:c3:52:f1:a2:ad dst_mac 02:80:dc:38:b1:5d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10954 flower src_mac 02:9c:ea:f3:35:b2 dst_mac 02:90:13:98:b6:ac vlan_id 945 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10955 flower src_mac 02:b4:30:15:04:fa dst_mac 02:64:d4:9e:f0:42 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10956 flower src_mac 02:6e:f5:d4:54:8b dst_mac 02:53:af:18:bc:2c action trap && tc filter add dev swp33 ingress protocol ip pref 10957 flower src_mac 02:8e:6d:70:36:ae dst_mac 02:c8:fd:e3:60:0f src_ip 96.163.86.106 dst_ip 102.18.0.52 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10958 flower src_mac 02:b7:85:81:37:c7 dst_mac 02:1f:09:21:58:66 src_ip 125.118.134.80 dst_ip 56.139.227.222 ip_proto udp src_port 7452 dst_port 11005 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10959 flower src_mac 02:c5:3a:a9:a8:ef dst_mac 02:f2:6d:52:1b:ee vlan_id 2690 vlan_ethtype ip src_ip 29.1.147.65 dst_ip 40.80.239.27 ip_proto udp src_port 34873 dst_port 16821 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10960 flower src_mac 02:34:23:5a:5f:45 dst_mac 02:08:e7:32:b2:67 vlan_id 1458 vlan_ethtype ipv4 src_ip 106.231.246.130 dst_ip 27.137.135.36 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10961 flower src_mac 02:e3:1b:42:a7:fd dst_mac 02:80:68:dd:b8:96 vlan_id 1688 vlan_ethtype 0x0800 src_ip 34.184.121.41 dst_ip 110.187.166.171 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10962 flower src_mac 02:03:81:8d:ef:43 dst_mac 02:f1:55:38:75:d7 vlan_id 2541 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10963 flower src_mac 02:55:9b:e7:79:88 dst_mac 02:a0:96:09:b0:1f action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10964 flower src_mac 02:df:ca:ac:23:38 dst_mac 02:35:5d:ec:57:4f vlan_id 250 vlan_ethtype ipv4 src_ip 107.231.162.173 dst_ip 117.30.60.120 ip_proto tcp src_port 6621 dst_port 40850 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10965 flower src_mac 02:20:af:ff:05:46 dst_mac 02:d8:55:63:3c:41 src_ip 38.87.150.39 dst_ip 31.119.56.185 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10966 flower src_mac 02:89:83:60:6a:b0 dst_mac 02:5c:bf:6e:f7:a0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10967 flower src_mac 02:bc:e0:1b:1e:9f dst_mac 02:3b:1c:bf:e0:20 vlan_id 3243 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10968 flower src_mac 02:ae:bb:94:fd:41 dst_mac 02:51:3f:08:4b:eb action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10969 flower src_mac 02:40:42:fd:8d:36 dst_mac 02:3e:23:db:9d:53 vlan_id 2230 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10970 flower src_mac 02:b3:88:d6:c8:ec dst_mac 02:db:49:27:6f:53 vlan_id 3052 vlan_ethtype ip src_ip 19.54.18.230 dst_ip 115.93.104.59 ip_proto udp src_port 61812 dst_port 51311 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10971 flower src_mac 02:d9:26:a5:69:4d dst_mac 02:12:ae:62:c0:c4 vlan_id 1937 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10972 flower src_mac 02:7a:3a:53:40:86 dst_mac 02:10:69:b9:93:9d vlan_id 2769 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10973 flower src_mac 02:1c:bc:01:2b:04 dst_mac 02:cf:b7:be:a6:66 src_ip 47.2.251.98 dst_ip 117.135.112.77 ip_proto udp src_port 22757 dst_port 15825 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10974 flower src_mac 02:74:34:26:a6:6e dst_mac 02:28:56:8a:3e:4c vlan_id 2751 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10975 flower src_mac 02:72:6a:d3:3f:d4 dst_mac 02:65:44:82:b5:48 src_ip 64.36.253.139 dst_ip 70.119.147.75 ip_proto udp src_port 25797 dst_port 5852 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10976 flower src_mac 02:ec:80:0e:e4:4d dst_mac 02:a2:27:22:b3:20 vlan_id 1279 vlan_ethtype ip src_ip 85.232.5.220 dst_ip 85.187.82.33 ip_proto tcp src_port 19771 dst_port 16623 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10977 flower src_mac 02:e0:a8:4b:75:3a dst_mac 02:55:19:a6:be:3c vlan_id 964 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10978 flower src_mac 02:93:35:b0:d1:c1 dst_mac 02:1e:5f:cc:d8:54 src_ip 14.42.228.41 dst_ip 66.161.103.133 ip_proto icmp code 156 type 16 action drop && tc filter add dev swp33 ingress protocol ip pref 10979 flower src_mac 02:9f:90:8d:bd:52 dst_mac 02:3c:e3:1a:e5:b0 src_ip 75.207.201.16 dst_ip 53.130.210.98 ip_proto icmp code 103 type 18 action trap && tc filter add dev swp33 ingress protocol ip pref 10980 flower src_mac 02:fe:bc:21:d3:5e dst_mac 02:24:bd:40:f4:79 src_ip 52.151.58.99 dst_ip 117.231.188.188 ip_proto tcp src_port 16386 dst_port 50865 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10981 flower src_mac 02:95:cd:4c:ed:e9 dst_mac 02:bb:62:57:f1:ff vlan_id 975 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10982 flower src_mac 02:db:bc:79:38:a5 dst_mac 02:54:6b:a3:f3:68 vlan_id 2856 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10983 flower src_mac 02:55:de:28:d2:a0 dst_mac 02:f0:70:9e:ce:2e src_ip 63.133.82.39 dst_ip 39.255.2.152 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10984 flower src_mac 02:c9:01:30:8e:82 dst_mac 02:5d:92:73:ee:ab vlan_id 2555 vlan_ethtype ip src_ip 65.29.165.175 dst_ip 96.121.176.84 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10985 flower src_mac 02:0b:b0:5e:df:96 dst_mac 02:9f:3f:62:0d:37 vlan_id 724 vlan_ethtype 0x0800 src_ip 16.87.181.214 dst_ip 21.176.108.129 ip_proto udp src_port 25187 dst_port 40062 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10986 flower src_mac 02:17:60:e4:18:cf dst_mac 02:7c:a2:af:de:ec action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10987 flower src_mac 02:fe:9b:bd:1d:86 dst_mac 02:11:50:38:cb:59 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10988 flower src_mac 02:1d:d1:68:bf:bb dst_mac 02:55:75:56:be:18 vlan_id 1151 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10989 flower src_mac 02:2e:02:7e:d3:76 dst_mac 02:c9:c2:9f:90:38 vlan_id 1291 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10990 flower src_mac 02:42:c5:4b:e2:ea dst_mac 02:72:3f:b4:f0:ef vlan_id 2444 vlan_ethtype ip src_ip 95.181.254.150 dst_ip 14.186.181.155 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10991 flower src_mac 02:c7:e6:a3:15:95 dst_mac 02:2e:41:8b:32:e0 vlan_id 2101 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10992 flower src_mac 02:14:30:18:21:08 dst_mac 02:a3:0e:f0:b8:a1 vlan_id 2398 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10993 flower src_mac 02:f3:67:6b:73:f7 dst_mac 02:d5:2e:f7:88:53 src_ip 126.152.38.20 dst_ip 39.107.6.45 ip_proto tcp src_port 63109 dst_port 14111 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10994 flower src_mac 02:5c:b6:97:eb:68 dst_mac 02:5b:51:f8:ba:43 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10995 flower src_mac 02:18:b8:b7:41:67 dst_mac 02:1b:91:2b:b9:20 src_ip 112.253.150.90 dst_ip 112.135.26.215 action pass && tc filter add dev swp33 ingress protocol ip pref 10996 flower src_mac 02:b7:da:9e:38:65 dst_mac 02:bb:6f:d4:d9:ae src_ip 65.237.214.180 dst_ip 65.20.107.76 ip_proto tcp src_port 33662 dst_port 53980 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10997 flower src_mac 02:11:09:7b:88:e8 dst_mac 02:80:af:f0:19:32 vlan_id 1680 vlan_ethtype ip src_ip 14.149.107.3 dst_ip 45.137.0.204 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10998 flower src_mac 02:4f:fe:10:f4:6b dst_mac 02:4f:b9:05:a9:0e vlan_id 2401 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10999 flower src_mac 02:cc:86:f9:d9:b6 dst_mac 02:b7:c1:bd:e8:85 vlan_id 1786 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11000 flower src_mac 02:7d:af:71:01:61 dst_mac 02:f4:51:9e:67:84 src_ip 92.67.215.98 dst_ip 99.137.170.173 ip_proto icmp code 71 type 17 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11001 flower src_mac 02:ad:e2:00:ee:1d dst_mac 02:72:8e:8d:1d:3e action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11002 flower src_mac 02:ae:0b:e7:0d:04 dst_mac 02:55:bd:63:f6:25 vlan_id 3750 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11003 flower src_mac 02:eb:6a:9e:7a:93 dst_mac 02:44:63:32:a4:82 src_ip 37.57.235.87 dst_ip 85.2.252.235 ip_proto tcp src_port 62098 dst_port 63990 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11004 flower src_mac 02:84:e3:c7:1b:48 dst_mac 02:a0:1b:00:26:58 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11005 flower src_mac 02:37:bf:67:82:d5 dst_mac 02:1d:58:3a:08:20 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11006 flower src_mac 02:67:e4:76:34:71 dst_mac 02:8b:99:d6:92:ec src_ip 105.67.136.42 dst_ip 33.148.141.42 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11007 flower src_mac 02:a4:22:b2:fa:64 dst_mac 02:9e:0f:ad:b3:6d vlan_id 2203 vlan_ethtype ip src_ip 92.72.88.54 dst_ip 71.7.111.206 ip_proto tcp src_port 35929 dst_port 38103 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11008 flower src_mac 02:0c:68:e7:41:cd dst_mac 02:07:82:02:81:b4 vlan_id 3401 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11009 flower src_mac 02:36:5e:0a:99:f2 dst_mac 02:f6:32:17:4c:e3 vlan_id 2688 vlan_ethtype ipv4 src_ip 97.183.148.157 dst_ip 108.217.173.48 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11010 flower src_mac 02:12:41:7b:78:cb dst_mac 02:5b:53:96:0f:76 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11011 flower src_mac 02:10:6d:d6:c0:86 dst_mac 02:9b:2a:25:d0:d7 vlan_id 2116 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11012 flower src_mac 02:0d:e7:58:04:39 dst_mac 02:5d:83:5c:d9:88 src_ip 115.191.17.142 dst_ip 22.218.247.88 ip_proto icmp code 16 type 11 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11013 flower src_mac 02:91:b9:a4:1c:be dst_mac 02:cd:8c:19:df:1a vlan_id 546 vlan_ethtype 0x0800 src_ip 66.78.129.182 dst_ip 125.202.98.175 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11014 flower src_mac 02:76:da:2e:29:c1 dst_mac 02:6c:62:5f:33:e7 vlan_id 573 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11015 flower src_mac 02:1a:2d:6b:da:a5 dst_mac 02:73:49:15:ef:3d vlan_id 1362 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11016 flower src_mac 02:13:04:e6:6e:dc dst_mac 02:cb:e6:69:7b:ab action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11017 flower src_mac 02:0f:34:9f:46:ce dst_mac 02:a0:dd:a3:11:f5 src_ip 23.2.90.147 dst_ip 21.217.146.14 ip_proto udp src_port 62561 dst_port 2639 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11018 flower src_mac 02:a6:04:cc:b5:8e dst_mac 02:e4:e3:4c:0d:1e vlan_id 996 vlan_ethtype ipv4 src_ip 32.239.221.230 dst_ip 88.194.206.244 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11019 flower src_mac 02:64:1b:e0:76:1c dst_mac 02:d6:a1:ad:7a:94 vlan_id 1220 vlan_ethtype ipv4 src_ip 23.223.191.133 dst_ip 84.246.131.159 ip_proto udp src_port 32280 dst_port 48482 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11020 flower src_mac 02:0e:fd:53:88:40 dst_mac 02:44:b7:0d:29:73 vlan_id 2106 vlan_ethtype ipv4 src_ip 126.141.31.187 dst_ip 91.84.158.60 ip_proto tcp src_port 24365 dst_port 62 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11021 flower src_mac 02:f1:0e:d2:51:b1 dst_mac 02:a7:da:90:ce:60 src_ip 17.49.135.191 dst_ip 105.37.242.40 ip_proto tcp src_port 49734 dst_port 11242 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11022 flower src_mac 02:21:4c:75:c0:e6 dst_mac 02:d7:4d:20:8d:f3 vlan_id 3890 vlan_ethtype ip src_ip 39.0.85.46 dst_ip 53.81.132.21 ip_proto udp src_port 42976 dst_port 17330 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11023 flower src_mac 02:10:e2:b5:00:40 dst_mac 02:c4:40:2c:99:cc src_ip 105.19.57.104 dst_ip 126.155.226.244 ip_proto udp src_port 42194 dst_port 6152 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11024 flower src_mac 02:fb:e7:b5:3a:53 dst_mac 02:f0:1d:8d:d1:ea vlan_id 569 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11025 flower src_mac 02:79:6c:2b:42:00 dst_mac 02:f3:61:0b:88:08 vlan_id 3778 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11026 flower src_mac 02:53:33:61:0f:1b dst_mac 02:88:7f:c4:53:4b vlan_id 1637 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11027 flower src_mac 02:c5:b1:d9:b9:1a dst_mac 02:b9:0f:f6:d4:2f src_ip 123.162.106.226 dst_ip 28.142.176.71 ip_proto tcp src_port 45493 dst_port 42682 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11028 flower src_mac 02:b6:a8:1a:2c:d5 dst_mac 02:87:3b:33:16:00 vlan_id 1456 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11029 flower src_mac 02:b5:7b:60:8c:ca dst_mac 02:da:1e:0a:a2:18 vlan_id 3474 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11030 flower src_mac 02:eb:2c:37:e8:78 dst_mac 02:a4:af:68:bd:f4 src_ip 68.136.161.91 dst_ip 76.195.85.16 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11031 flower src_mac 02:ce:62:73:ae:3a dst_mac 02:5a:76:85:53:06 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11032 flower src_mac 02:0f:f3:d0:11:85 dst_mac 02:a2:8a:37:61:3c vlan_id 1446 vlan_ethtype ipv4 src_ip 95.116.131.34 dst_ip 74.14.35.2 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11033 flower src_mac 02:17:5e:77:fe:f0 dst_mac 02:31:78:01:49:f9 vlan_id 3225 vlan_ethtype 0x0800 src_ip 93.28.201.55 dst_ip 11.129.205.247 ip_proto udp src_port 48783 dst_port 17522 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11034 flower src_mac 02:b9:a5:6a:d4:7a dst_mac 02:91:4f:4f:2f:63 vlan_id 4053 vlan_ethtype 0x0800 src_ip 100.112.125.178 dst_ip 108.143.64.92 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11035 flower src_mac 02:b8:0e:85:41:b5 dst_mac 02:3d:47:27:f7:c1 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11036 flower src_mac 02:03:e5:a5:d7:d1 dst_mac 02:3e:54:86:e2:68 vlan_id 3701 vlan_ethtype ipv4 src_ip 18.240.40.128 dst_ip 119.225.183.220 ip_proto udp src_port 20340 dst_port 4381 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11037 flower src_mac 02:d6:98:b0:3a:22 dst_mac 02:b4:ba:43:98:c8 src_ip 11.131.106.67 dst_ip 31.129.244.98 ip_proto icmp code 39 type 3 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11038 flower src_mac 02:5a:31:e3:9f:3f dst_mac 02:39:0e:8e:86:c5 vlan_id 1061 vlan_ethtype 0x0800 src_ip 47.200.78.86 dst_ip 27.212.169.159 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11039 flower src_mac 02:dc:d0:76:b8:a0 dst_mac 02:93:16:92:3c:56 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11040 flower src_mac 02:3c:7a:81:46:27 dst_mac 02:ad:11:77:4c:3a vlan_id 1488 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11041 flower src_mac 02:74:49:88:07:14 dst_mac 02:4c:37:79:52:64 vlan_id 3694 vlan_ethtype ipv4 src_ip 57.243.67.7 dst_ip 22.222.179.32 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11042 flower src_mac 02:65:3e:b3:3c:c2 dst_mac 02:00:55:40:dd:58 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11043 flower src_mac 02:15:36:10:69:d8 dst_mac 02:73:d1:cd:4f:db action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11044 flower src_mac 02:71:69:fa:63:34 dst_mac 02:58:cc:c3:92:b1 vlan_id 3149 vlan_ethtype ip src_ip 18.71.67.70 dst_ip 88.42.22.17 ip_proto tcp src_port 57825 dst_port 23589 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11045 flower src_mac 02:14:d6:c2:14:27 dst_mac 02:48:19:e2:17:af src_ip 12.88.231.157 dst_ip 105.58.14.13 ip_proto icmp code 166 type 14 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11046 flower src_mac 02:6b:30:2a:52:6f dst_mac 02:e5:d9:8f:b4:e8 vlan_id 1983 vlan_ethtype 0x0800 src_ip 29.94.156.28 dst_ip 73.4.134.172 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11047 flower src_mac 02:25:32:b9:24:4e dst_mac 02:e6:9e:e5:77:53 vlan_id 3698 vlan_ethtype ipv4 src_ip 47.37.160.90 dst_ip 87.134.49.35 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11048 flower src_mac 02:c8:3c:b7:83:40 dst_mac 02:8e:81:d6:4d:7b src_ip 45.173.217.78 dst_ip 55.233.210.220 ip_proto udp src_port 32406 dst_port 63820 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11049 flower src_mac 02:81:9e:c0:e8:88 dst_mac 02:89:d1:a5:f1:b9 vlan_id 4082 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11050 flower src_mac 02:86:e7:6c:5e:b2 dst_mac 02:45:1c:17:60:65 vlan_id 977 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 11051 flower src_mac 02:1b:0f:a5:0c:07 dst_mac 02:de:ff:ff:d3:3b src_ip 29.66.161.24 dst_ip 58.17.44.195 ip_proto icmp code 245 type 5 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11052 flower src_mac 02:3d:00:54:f6:ea dst_mac 02:9e:94:49:49:95 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11053 flower src_mac 02:bb:26:0d:ea:28 dst_mac 02:ff:33:31:8e:7b action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11054 flower src_mac 02:b6:86:0f:4d:7e dst_mac 02:7a:ea:c5:f4:13 action trap && tc filter add dev swp33 ingress protocol ip pref 11055 flower src_mac 02:19:00:ea:b1:f5 dst_mac 02:f8:61:3f:4c:18 src_ip 123.96.36.96 dst_ip 74.94.111.134 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11056 flower src_mac 02:b2:3f:8d:b5:fa dst_mac 02:95:a1:b4:e2:a3 vlan_id 4022 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11057 flower src_mac 02:8a:15:08:0b:99 dst_mac 02:c1:13:97:51:6f src_ip 59.35.143.53 dst_ip 12.47.123.212 ip_proto tcp src_port 5900 dst_port 64928 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11058 flower src_mac 02:4f:53:25:7e:fc dst_mac 02:11:04:53:1f:bc vlan_id 345 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11059 flower src_mac 02:ab:aa:6b:ee:e5 dst_mac 02:de:8a:ae:7d:0b src_ip 72.161.143.175 dst_ip 27.208.192.8 ip_proto tcp src_port 10230 dst_port 6752 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11060 flower src_mac 02:00:28:1a:cb:e8 dst_mac 02:8a:c4:b4:61:95 action drop && tc filter add dev swp33 ingress protocol ip pref 11061 flower src_mac 02:35:03:69:40:f4 dst_mac 02:5a:39:b0:de:d2 src_ip 85.176.135.87 dst_ip 62.152.220.108 ip_proto udp src_port 7525 dst_port 52628 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11062 flower src_mac 02:05:d2:51:9d:94 dst_mac 02:25:fa:94:8c:b5 src_ip 126.140.217.88 dst_ip 105.22.114.176 ip_proto udp src_port 41547 dst_port 39837 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11063 flower src_mac 02:7b:11:d5:24:3b dst_mac 02:15:8a:ae:81:7d action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11064 flower src_mac 02:3d:bd:9e:41:9a dst_mac 02:f8:73:c7:bd:69 vlan_id 1891 vlan_ethtype ipv4 src_ip 110.103.186.179 dst_ip 77.11.231.90 ip_proto udp src_port 23365 dst_port 59511 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11065 flower src_mac 02:c8:70:ba:66:28 dst_mac 02:6c:95:ea:0d:a3 vlan_id 227 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11066 flower src_mac 02:56:a9:43:d4:ca dst_mac 02:50:76:ed:47:21 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11067 flower src_mac 02:54:4c:93:bb:35 dst_mac 02:6c:78:2a:71:0c src_ip 122.42.28.61 dst_ip 117.140.16.161 ip_proto tcp src_port 52217 dst_port 3801 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11068 flower src_mac 02:55:2d:16:bd:93 dst_mac 02:d3:38:e8:a3:aa action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11069 flower src_mac 02:ce:5d:ce:b0:ac dst_mac 02:39:33:d6:f8:14 vlan_id 2517 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11070 flower src_mac 02:e8:3a:18:3b:94 dst_mac 02:ff:16:76:5c:1a vlan_id 1346 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11071 flower src_mac 02:4f:76:20:22:2d dst_mac 02:e7:31:45:c4:53 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11072 flower src_mac 02:d2:d9:c3:ec:ed dst_mac 02:72:a6:6f:fe:dd vlan_id 3087 vlan_ethtype 0x0800 src_ip 55.36.58.237 dst_ip 66.92.106.79 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11073 flower src_mac 02:58:ce:b9:cd:d8 dst_mac 02:76:97:7e:85:ed action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11074 flower src_mac 02:27:7c:b9:ef:ae dst_mac 02:35:3d:dd:e5:4f vlan_id 1627 vlan_ethtype ip src_ip 95.98.236.237 dst_ip 99.196.196.74 ip_proto tcp src_port 18594 dst_port 13154 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11075 flower src_mac 02:66:7f:61:85:88 dst_mac 02:1b:65:84:93:3c vlan_id 726 vlan_ethtype ip src_ip 100.92.0.159 dst_ip 91.7.89.83 ip_proto udp src_port 56503 dst_port 46739 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11076 flower src_mac 02:80:d3:51:06:fe dst_mac 02:44:09:fd:c5:be action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11077 flower src_mac 02:17:80:ea:7f:d6 dst_mac 02:e7:9d:ff:94:91 vlan_id 2388 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11078 flower src_mac 02:96:a0:70:b4:1f dst_mac 02:20:2d:d1:9f:b4 vlan_id 3794 vlan_ethtype ipv4 src_ip 94.174.78.31 dst_ip 104.168.37.86 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11079 flower src_mac 02:51:ef:23:35:c3 dst_mac 02:73:d1:e0:b8:0f vlan_id 3795 vlan_ethtype ip src_ip 57.94.255.234 dst_ip 100.70.47.53 ip_proto tcp src_port 20536 dst_port 44321 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11080 flower src_mac 02:78:0b:94:d9:e2 dst_mac 02:6f:9e:0b:1a:9d vlan_id 2770 vlan_ethtype 0x0800 src_ip 73.223.137.214 dst_ip 95.126.52.1 ip_proto tcp src_port 30670 dst_port 10106 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11081 flower src_mac 02:4b:57:cd:e4:26 dst_mac 02:ef:bb:d0:60:2e src_ip 76.157.117.81 dst_ip 92.244.26.111 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11082 flower src_mac 02:b0:01:3e:da:36 dst_mac 02:c9:45:87:9c:41 vlan_id 116 vlan_ethtype ip src_ip 68.140.83.56 dst_ip 33.67.49.116 ip_proto tcp src_port 33379 dst_port 39957 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11083 flower src_mac 02:e0:dc:6a:ce:b9 dst_mac 02:f2:0b:d0:3b:99 vlan_id 2064 vlan_ethtype 0x0800 src_ip 105.166.93.224 dst_ip 99.16.137.171 ip_proto udp src_port 27954 dst_port 48060 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11084 flower src_mac 02:5b:5c:01:28:7c dst_mac 02:34:34:64:94:7d src_ip 122.172.110.91 dst_ip 125.45.199.170 ip_proto tcp src_port 3330 dst_port 28110 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11085 flower src_mac 02:13:6f:05:2d:d0 dst_mac 02:9c:a1:60:54:03 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11086 flower src_mac 02:d1:4a:cf:65:a1 dst_mac 02:9e:3b:33:37:ec vlan_id 1652 vlan_ethtype 0x0800 src_ip 36.153.215.35 dst_ip 77.36.77.182 action pass && tc filter add dev swp33 ingress protocol ip pref 11087 flower src_mac 02:9e:74:00:49:ec dst_mac 02:d5:fe:95:01:46 src_ip 106.244.71.246 dst_ip 110.121.91.46 ip_proto tcp src_port 3197 dst_port 45772 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11088 flower src_mac 02:7a:24:1c:ee:6d dst_mac 02:9f:39:87:89:31 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11089 flower src_mac 02:2d:2f:f6:45:39 dst_mac 02:33:d2:b6:39:27 vlan_id 1588 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11090 flower src_mac 02:70:fa:9a:0a:ed dst_mac 02:d0:6c:95:fe:7f vlan_id 2459 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11091 flower src_mac 02:01:d5:bb:d8:0b dst_mac 02:74:b7:20:81:25 vlan_id 2817 vlan_ethtype ip src_ip 116.37.133.181 dst_ip 15.87.162.198 action pass && tc filter add dev swp33 ingress protocol ip pref 11092 flower src_mac 02:ee:6b:21:17:41 dst_mac 02:b0:27:fd:9c:08 src_ip 92.189.74.182 dst_ip 112.3.146.37 ip_proto icmp code 31 type 16 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11093 flower src_mac 02:0f:01:15:3d:f1 dst_mac 02:47:57:ce:0d:97 vlan_id 3555 vlan_ethtype 0x0800 src_ip 40.12.111.18 dst_ip 65.90.245.75 ip_proto tcp src_port 41219 dst_port 47082 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11094 flower src_mac 02:4a:26:c2:cc:89 dst_mac 02:2b:9d:e2:a0:f1 vlan_id 1002 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11095 flower src_mac 02:90:b0:92:43:c9 dst_mac 02:69:2e:af:42:80 vlan_id 2446 vlan_ethtype ipv4 src_ip 40.157.83.111 dst_ip 43.211.169.203 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11096 flower src_mac 02:94:9b:1b:a7:7a dst_mac 02:e9:81:bf:f5:75 vlan_id 3563 vlan_ethtype 0x0800 src_ip 40.236.136.151 dst_ip 83.170.175.3 ip_proto tcp src_port 53301 dst_port 51443 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11097 flower src_mac 02:d1:43:01:97:1d dst_mac 02:43:ac:d3:41:66 vlan_id 42 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11098 flower src_mac 02:8d:be:6c:7d:99 dst_mac 02:4c:90:e0:ff:87 src_ip 13.135.246.8 dst_ip 72.186.177.85 ip_proto udp src_port 8239 dst_port 28116 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11099 flower src_mac 02:6f:d0:4c:29:21 dst_mac 02:81:26:5f:6e:c1 vlan_id 2105 vlan_ethtype ipv4 src_ip 57.80.164.2 dst_ip 86.122.124.57 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11100 flower src_mac 02:04:ed:fd:61:53 dst_mac 02:e0:07:b3:0b:36 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11101 flower src_mac 02:8a:8a:27:78:3a dst_mac 02:b1:28:09:6d:95 vlan_id 1011 vlan_ethtype ipv4 src_ip 126.239.200.94 dst_ip 32.52.141.196 ip_proto udp src_port 3182 dst_port 31880 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11102 flower src_mac 02:f3:83:59:b3:26 dst_mac 02:e4:27:b5:57:61 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11103 flower src_mac 02:b4:4c:f2:0f:86 dst_mac 02:35:fb:05:cf:1e action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11104 flower src_mac 02:f6:87:90:7c:dd dst_mac 02:22:41:15:e1:91 src_ip 81.40.30.95 dst_ip 122.221.245.132 ip_proto icmp code 250 type 14 action trap && tc filter add dev swp33 ingress protocol ip pref 11105 flower src_mac 02:23:ab:b2:44:0f dst_mac 02:e9:08:52:ac:69 src_ip 29.160.205.113 dst_ip 108.106.126.57 ip_proto icmp code 118 type 11 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11106 flower src_mac 02:ec:65:d1:36:8b dst_mac 02:c9:eb:65:cb:a6 vlan_id 3485 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11107 flower src_mac 02:e9:5f:60:73:63 dst_mac 02:cc:1f:bc:c8:9d vlan_id 1470 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11108 flower src_mac 02:26:77:56:53:4f dst_mac 02:f8:57:a0:53:15 vlan_id 841 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11109 flower src_mac 02:95:8f:4d:a2:b3 dst_mac 02:ca:35:a4:f3:8b action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11110 flower src_mac 02:76:24:99:bd:1a dst_mac 02:fd:11:e3:86:4d vlan_id 2666 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11111 flower src_mac 02:75:ef:fc:52:c2 dst_mac 02:25:39:32:46:74 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11112 flower src_mac 02:88:f8:11:66:9f dst_mac 02:a1:c0:d2:61:2e vlan_id 1286 vlan_ethtype ip src_ip 117.157.97.22 dst_ip 101.143.164.73 ip_proto udp src_port 63058 dst_port 20294 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11113 flower src_mac 02:2e:f7:c8:33:c3 dst_mac 02:d8:38:e2:3e:b7 src_ip 95.21.37.37 dst_ip 48.63.29.229 ip_proto tcp src_port 28593 dst_port 14418 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11114 flower src_mac 02:b6:ae:c0:a0:75 dst_mac 02:1c:37:eb:5b:7b action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11115 flower src_mac 02:a1:0d:91:66:ef dst_mac 02:0c:68:21:1a:ee vlan_id 900 vlan_ethtype ip src_ip 91.61.102.16 dst_ip 86.167.38.212 ip_proto tcp src_port 39511 dst_port 16205 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11116 flower src_mac 02:af:75:b1:8c:18 dst_mac 02:35:8a:96:bd:c7 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11117 flower src_mac 02:da:40:4a:b7:c8 dst_mac 02:87:a2:8d:b5:74 src_ip 59.168.104.101 dst_ip 122.99.171.200 ip_proto tcp src_port 16267 dst_port 7707 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11118 flower src_mac 02:35:90:ab:a0:e6 dst_mac 02:8f:a4:11:35:e5 vlan_id 981 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11119 flower src_mac 02:ef:38:47:9c:75 dst_mac 02:c6:76:5e:fd:77 vlan_id 2882 vlan_ethtype ipv4 src_ip 58.203.43.15 dst_ip 77.72.211.87 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11120 flower src_mac 02:3c:aa:a3:3e:e7 dst_mac 02:d0:48:47:e7:59 vlan_id 2477 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11121 flower src_mac 02:99:4e:0f:fa:ea dst_mac 02:35:22:fc:89:3a vlan_id 3030 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11122 flower src_mac 02:53:40:67:35:03 dst_mac 02:f9:08:ad:4c:da vlan_id 1286 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11123 flower src_mac 02:1e:ac:59:1d:d0 dst_mac 02:14:4c:01:71:90 vlan_id 2464 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11124 flower src_mac 02:f6:35:4e:9a:c0 dst_mac 02:c6:fe:98:61:e6 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11125 flower src_mac 02:7b:43:17:35:11 dst_mac 02:0e:66:d6:6d:28 vlan_id 3021 vlan_ethtype 0x0800 src_ip 105.226.18.169 dst_ip 29.60.31.9 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11126 flower src_mac 02:a0:35:96:88:19 dst_mac 02:65:3e:0c:10:22 vlan_id 3271 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11127 flower src_mac 02:8a:d8:75:fc:3d dst_mac 02:cc:27:e8:0c:cc vlan_id 2589 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11128 flower src_mac 02:c8:68:f7:4c:e4 dst_mac 02:bd:b7:14:2d:f1 vlan_id 3997 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11129 flower src_mac 02:a3:b9:bc:f8:dc dst_mac 02:5f:8d:69:65:00 src_ip 31.129.119.147 dst_ip 92.204.51.194 ip_proto udp src_port 32414 dst_port 45658 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11130 flower src_mac 02:6f:6a:87:6e:17 dst_mac 02:0f:4d:af:e9:50 src_ip 35.189.49.93 dst_ip 65.165.182.32 ip_proto tcp src_port 55347 dst_port 45404 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11131 flower src_mac 02:4a:82:66:71:7e dst_mac 02:d7:a6:89:1e:0f src_ip 89.77.56.116 dst_ip 97.136.168.135 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11132 flower src_mac 02:38:a5:67:4d:74 dst_mac 02:9a:4b:64:97:fd vlan_id 3697 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11133 flower src_mac 02:5c:fa:64:76:52 dst_mac 02:51:5b:0b:9a:11 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11134 flower src_mac 02:28:69:5d:be:76 dst_mac 02:ca:6a:08:41:ab action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11135 flower src_mac 02:b7:7a:87:65:57 dst_mac 02:5f:e1:cc:fe:b4 vlan_id 4 vlan_ethtype ipv4 src_ip 94.177.50.81 dst_ip 46.182.30.213 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11136 flower src_mac 02:b0:6f:dd:e5:e3 dst_mac 02:c4:1a:1d:ea:9a vlan_id 1378 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11137 flower src_mac 02:7b:d4:8c:b8:19 dst_mac 02:43:ef:f7:43:1e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11138 flower src_mac 02:1d:ee:d8:c1:25 dst_mac 02:de:78:d4:10:6d vlan_id 3038 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11139 flower src_mac 02:5f:6c:aa:af:44 dst_mac 02:a0:1a:3a:05:7e vlan_id 2947 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11140 flower src_mac 02:da:a8:9e:41:19 dst_mac 02:1a:e4:85:44:88 src_ip 67.225.206.246 dst_ip 75.160.124.121 ip_proto icmp code 27 type 4 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11141 flower src_mac 02:45:75:eb:66:55 dst_mac 02:df:4c:52:f6:d2 vlan_id 2439 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11142 flower src_mac 02:51:f0:7e:36:4e dst_mac 02:6b:58:e6:fe:83 src_ip 51.61.142.50 dst_ip 47.165.56.72 ip_proto udp src_port 28510 dst_port 19401 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11143 flower src_mac 02:ec:ef:87:34:93 dst_mac 02:28:b6:20:1c:ec vlan_id 2522 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11144 flower src_mac 02:1f:fb:fa:c1:a3 dst_mac 02:48:df:db:10:83 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11145 flower src_mac 02:d7:09:14:f3:10 dst_mac 02:5f:e2:17:97:34 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11146 flower src_mac 02:00:72:23:5f:bb dst_mac 02:73:72:50:fc:a8 vlan_id 146 vlan_ethtype 0x0800 src_ip 54.187.70.121 dst_ip 18.83.253.189 ip_proto tcp src_port 9661 dst_port 35029 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11147 flower src_mac 02:1e:50:d2:1b:25 dst_mac 02:eb:71:1f:62:aa action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11148 flower src_mac 02:c7:6d:46:a4:e3 dst_mac 02:89:f4:29:d0:96 src_ip 29.200.209.134 dst_ip 98.196.5.25 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11149 flower src_mac 02:96:1f:c2:e5:54 dst_mac 02:80:96:e1:df:72 src_ip 52.145.250.47 dst_ip 89.58.246.126 ip_proto udp src_port 45444 dst_port 17715 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11150 flower src_mac 02:45:ba:a2:c6:9a dst_mac 02:93:5a:30:84:81 vlan_id 3667 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11151 flower src_mac 02:f7:9c:c9:6b:ed dst_mac 02:2c:3c:81:37:a3 action trap && tc filter add dev swp33 ingress protocol ip pref 11152 flower src_mac 02:96:da:f6:95:7f dst_mac 02:f2:30:76:36:72 src_ip 125.80.36.166 dst_ip 29.227.102.164 ip_proto tcp src_port 33875 dst_port 43209 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11153 flower src_mac 02:42:a7:5f:db:39 dst_mac 02:e7:d8:ce:9e:53 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11154 flower src_mac 02:9b:c5:c6:cf:23 dst_mac 02:06:df:5a:0f:53 action trap && tc filter add dev swp33 ingress protocol ip pref 11155 flower src_mac 02:5a:2b:bf:d5:57 dst_mac 02:6c:16:15:fb:ce src_ip 87.140.165.227 dst_ip 72.151.38.197 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11156 flower src_mac 02:95:69:4b:a7:f2 dst_mac 02:62:e6:6f:06:e0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11157 flower src_mac 02:e9:97:10:fb:92 dst_mac 02:29:36:92:d7:c8 vlan_id 2616 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11158 flower src_mac 02:52:e7:da:1e:20 dst_mac 02:cf:cb:3b:be:ef src_ip 70.120.39.4 dst_ip 122.93.193.113 ip_proto udp src_port 37916 dst_port 26148 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11159 flower src_mac 02:35:67:89:a0:db dst_mac 02:30:c7:14:fb:e1 vlan_id 3089 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11160 flower src_mac 02:8d:a2:cf:60:4c dst_mac 02:7b:82:ea:7a:dc src_ip 125.176.71.39 dst_ip 11.148.101.150 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11161 flower src_mac 02:f6:07:59:1b:4f dst_mac 02:93:5d:ef:ac:68 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11162 flower src_mac 02:d7:66:ad:70:56 dst_mac 02:cd:44:ea:34:2e src_ip 72.38.69.207 dst_ip 59.188.32.175 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11163 flower src_mac 02:71:33:95:f9:f9 dst_mac 02:13:c2:40:5c:02 action trap && tc filter add dev swp33 ingress protocol ip pref 11164 flower src_mac 02:dd:f7:b2:d1:b7 dst_mac 02:7d:9a:ea:67:da src_ip 83.181.20.28 dst_ip 13.164.171.111 ip_proto udp src_port 44766 dst_port 35572 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11165 flower src_mac 02:5b:61:ca:e6:9a dst_mac 02:42:41:53:99:da action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11166 flower src_mac 02:3a:70:90:24:67 dst_mac 02:ce:33:0f:17:b6 src_ip 29.43.203.34 dst_ip 37.36.202.227 ip_proto udp src_port 53955 dst_port 11713 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11167 flower src_mac 02:48:96:0c:3f:38 dst_mac 02:10:10:ec:4b:42 vlan_id 753 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11168 flower src_mac 02:26:36:7c:8c:a3 dst_mac 02:6e:a8:23:21:bf src_ip 15.133.72.35 dst_ip 122.207.128.2 ip_proto udp src_port 51783 dst_port 56842 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11169 flower src_mac 02:f2:6a:b3:93:fe dst_mac 02:9e:af:d5:ed:8f vlan_id 3790 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11170 flower src_mac 02:1c:18:c7:3a:61 dst_mac 02:b1:6a:b4:7a:ce vlan_id 1608 vlan_ethtype ipv4 src_ip 59.7.148.213 dst_ip 65.130.244.52 ip_proto udp src_port 19049 dst_port 32492 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11171 flower src_mac 02:d1:ea:9f:3e:2b dst_mac 02:55:b7:67:67:91 vlan_id 2286 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11172 flower src_mac 02:b0:f1:80:26:8c dst_mac 02:cd:d6:dd:00:26 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11173 flower src_mac 02:91:f5:06:20:f3 dst_mac 02:39:ab:67:a9:cb vlan_id 1424 vlan_ethtype ip src_ip 92.17.4.107 dst_ip 89.57.141.35 ip_proto tcp src_port 49309 dst_port 35568 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11174 flower src_mac 02:e2:ad:78:5e:78 dst_mac 02:0d:ff:d7:f4:9a src_ip 14.89.222.241 dst_ip 105.183.214.6 ip_proto udp src_port 51390 dst_port 17555 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11175 flower src_mac 02:7b:85:5f:19:9f dst_mac 02:71:fa:80:15:7e src_ip 122.201.216.3 dst_ip 68.217.211.44 ip_proto tcp src_port 55789 dst_port 30288 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11176 flower src_mac 02:cc:6a:77:ae:c2 dst_mac 02:a0:9b:68:be:ec vlan_id 1167 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11177 flower src_mac 02:5d:f4:d0:45:63 dst_mac 02:40:0b:ef:6b:f7 vlan_id 2751 vlan_ethtype 0x0800 src_ip 64.200.239.212 dst_ip 39.182.80.86 ip_proto udp src_port 62486 dst_port 1550 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11178 flower src_mac 02:97:60:9d:ba:63 dst_mac 02:33:e7:52:57:63 vlan_id 585 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11179 flower src_mac 02:12:1f:7b:5e:f4 dst_mac 02:3a:3d:d4:3a:b6 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11180 flower src_mac 02:c8:fc:4b:c6:86 dst_mac 02:7c:56:65:f5:90 vlan_id 2081 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11181 flower src_mac 02:e6:1a:b2:ed:b2 dst_mac 02:a1:5d:c5:c1:16 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11182 flower src_mac 02:9c:97:62:83:22 dst_mac 02:01:b4:01:9c:a1 vlan_id 2517 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11183 flower src_mac 02:72:64:0b:09:bb dst_mac 02:0b:79:67:98:6d vlan_id 3739 vlan_ethtype 0x0800 src_ip 117.106.112.84 dst_ip 87.104.129.98 ip_proto udp src_port 10604 dst_port 49858 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11184 flower src_mac 02:f3:6e:70:83:50 dst_mac 02:6c:29:84:b4:af action trap && tc filter add dev swp33 ingress protocol ip pref 11185 flower src_mac 02:12:ad:21:92:b6 dst_mac 02:fa:50:f8:c4:5a src_ip 61.52.59.133 dst_ip 108.97.37.35 ip_proto tcp src_port 12126 dst_port 23262 action drop && tc filter add dev swp33 ingress protocol ip pref 11186 flower src_mac 02:90:3c:30:a8:30 dst_mac 02:e9:aa:9c:80:6c src_ip 31.29.228.46 dst_ip 35.242.76.15 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11187 flower src_mac 02:4a:08:06:46:4d dst_mac 02:6c:2b:b2:3c:bd vlan_id 1064 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11188 flower src_mac 02:6f:6f:36:21:a1 dst_mac 02:2b:2a:f0:20:16 src_ip 49.230.140.249 dst_ip 35.141.245.229 ip_proto icmp code 41 type 5 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11189 flower src_mac 02:0b:de:26:f4:83 dst_mac 02:8b:05:be:28:06 src_ip 48.76.25.143 dst_ip 37.212.107.140 ip_proto udp src_port 55154 dst_port 44299 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11190 flower src_mac 02:8e:d6:53:b8:f6 dst_mac 02:b8:8a:1d:16:00 vlan_id 2933 vlan_ethtype ipv4 src_ip 13.152.220.162 dst_ip 35.150.86.29 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11191 flower src_mac 02:e8:96:c1:60:24 dst_mac 02:5f:79:19:d7:0c src_ip 82.30.208.113 dst_ip 53.106.4.113 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11192 flower src_mac 02:bb:09:05:82:2a dst_mac 02:21:a9:eb:06:e8 vlan_id 1497 vlan_ethtype 0x0800 src_ip 54.53.17.93 dst_ip 109.202.154.32 ip_proto udp src_port 37627 dst_port 53363 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11193 flower src_mac 02:f6:92:e8:aa:fa dst_mac 02:bb:e5:af:ef:76 vlan_id 1199 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11194 flower src_mac 02:8c:15:e2:55:f9 dst_mac 02:c2:a9:84:d0:b7 src_ip 103.57.227.197 dst_ip 59.239.23.89 ip_proto tcp src_port 45226 dst_port 8258 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11195 flower src_mac 02:dc:1e:f8:89:d9 dst_mac 02:68:5c:c2:16:33 src_ip 113.44.34.139 dst_ip 18.84.138.163 ip_proto icmp code 162 type 3 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11196 flower src_mac 02:2b:62:7a:2a:24 dst_mac 02:f8:6e:27:41:13 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11197 flower src_mac 02:86:84:e6:b1:1c dst_mac 02:b8:e9:7a:f0:6d action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11198 flower src_mac 02:6b:d9:9d:bf:16 dst_mac 02:69:4f:99:d1:7a vlan_id 2217 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11199 flower src_mac 02:28:79:ea:85:d7 dst_mac 02:60:23:60:ae:7f vlan_id 3891 vlan_ethtype 0x9100 action pass INFO asyncssh:logging.py:92 [conn=24, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=8] Command: tc filter add dev swp33 ingress protocol 802.1q pref 10800 flower src_mac 02:f8:46:1b:39:aa dst_mac 02:39:71:8e:34:6c vlan_id 2388 vlan_ethtype ip src_ip 38.17.56.165 dst_ip 51.226.49.7 ip_proto udp src_port 45618 dst_port 39662 action pass && tc filter add dev swp33 ingress protocol ip pref 10801 flower src_mac 02:76:c8:50:ac:ca dst_mac 02:01:06:ae:57:27 src_ip 88.246.199.136 dst_ip 90.38.126.52 ip_proto icmp code 77 type 5 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10802 flower src_mac 02:34:7a:e1:76:4f dst_mac 02:18:a5:44:b2:49 vlan_id 997 vlan_ethtype ip src_ip 24.231.47.98 dst_ip 33.136.207.28 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10803 flower src_mac 02:6f:df:1c:57:e3 dst_mac 02:fe:19:59:68:0e action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10804 flower src_mac 02:38:b5:80:bb:04 dst_mac 02:dd:53:77:46:68 vlan_id 1995 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10805 flower src_mac 02:9a:b1:bb:2a:b5 dst_mac 02:40:8d:3c:72:43 src_ip 53.135.137.89 dst_ip 84.67.51.216 ip_proto udp src_port 48413 dst_port 40661 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10806 flower src_mac 02:2a:2e:c8:30:57 dst_mac 02:b0:9c:2c:dd:33 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10807 flower src_mac 02:5f:89:11:a3:e7 dst_mac 02:ba:4c:45:99:f1 src_ip 113.15.127.94 dst_ip 63.212.107.141 ip_proto tcp src_port 51134 dst_port 20480 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10808 flower src_mac 02:14:4c:bf:0c:4a dst_mac 02:7d:73:0a:01:48 vlan_id 1488 vlan_ethtype ip src_ip 73.64.219.120 dst_ip 47.100.57.168 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10809 flower src_mac 02:65:b4:24:d1:8c dst_mac 02:82:35:3a:a9:f7 vlan_id 447 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10810 flower src_mac 02:e3:10:36:44:09 dst_mac 02:30:a8:45:8d:a4 src_ip 79.138.138.36 dst_ip 98.107.6.150 ip_proto tcp src_port 38181 dst_port 20795 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10811 flower src_mac 02:af:23:0f:a0:6b dst_mac 02:73:1d:ac:44:8d vlan_id 1752 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10812 flower src_mac 02:e2:24:bd:c4:28 dst_mac 02:5b:71:ab:7e:5b src_ip 50.144.136.55 dst_ip 122.251.127.55 ip_proto icmp code 7 type 4 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10813 flower src_mac 02:65:11:43:aa:91 dst_mac 02:db:77:bd:da:03 vlan_id 1895 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10814 flower src_mac 02:17:62:09:1b:aa dst_mac 02:20:22:fe:92:55 src_ip 84.61.156.205 dst_ip 89.77.32.11 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10815 flower src_mac 02:97:6e:f3:aa:7a dst_mac 02:57:f8:f9:34:e1 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10816 flower src_mac 02:46:33:72:a0:81 dst_mac 02:73:1c:db:0e:e9 vlan_id 1338 vlan_ethtype ipv4 src_ip 33.94.104.216 dst_ip 30.141.161.82 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10817 flower src_mac 02:cd:c4:7e:ed:f1 dst_mac 02:be:53:6b:55:1b vlan_id 975 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10818 flower src_mac 02:14:c8:be:df:a9 dst_mac 02:dd:04:f1:31:e8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10819 flower src_mac 02:df:df:5c:59:72 dst_mac 02:20:db:47:7e:27 vlan_id 3409 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10820 flower src_mac 02:fb:27:fd:e9:af dst_mac 02:0a:bb:e9:12:c4 src_ip 76.200.100.15 dst_ip 126.0.86.96 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10821 flower src_mac 02:a1:45:1c:11:c9 dst_mac 02:6a:59:a9:88:d3 vlan_id 2852 vlan_ethtype ipv4 src_ip 123.120.37.97 dst_ip 57.57.48.137 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10822 flower src_mac 02:1b:e6:0d:7b:c5 dst_mac 02:ec:46:ea:fd:7a vlan_id 1520 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10823 flower src_mac 02:48:de:fd:c1:72 dst_mac 02:9a:99:c4:28:a1 vlan_id 1971 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10824 flower src_mac 02:cd:d1:ee:a4:1d dst_mac 02:5f:d7:3a:9a:21 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10825 flower src_mac 02:40:a3:16:d8:a1 dst_mac 02:45:ea:75:cf:95 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10826 flower src_mac 02:35:bf:a7:ad:10 dst_mac 02:a5:c9:05:f3:59 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10827 flower src_mac 02:ce:90:a9:45:46 dst_mac 02:38:e8:14:0e:17 vlan_id 3496 vlan_ethtype ipv4 src_ip 71.175.18.6 dst_ip 49.242.46.113 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10828 flower src_mac 02:c7:52:aa:df:bf dst_mac 02:03:70:0f:b1:8f src_ip 90.217.168.82 dst_ip 16.181.18.160 ip_proto udp src_port 13574 dst_port 21780 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10829 flower src_mac 02:3e:2a:2e:84:09 dst_mac 02:95:5e:d5:8f:b2 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10830 flower src_mac 02:32:4e:bd:8d:c9 dst_mac 02:f0:98:cf:5d:ee vlan_id 70 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10831 flower src_mac 02:7e:f5:12:0d:1e dst_mac 02:26:75:45:36:51 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10832 flower src_mac 02:69:e4:29:3e:1f dst_mac 02:34:22:cf:f6:9b action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10833 flower src_mac 02:7c:ee:3b:f7:ee dst_mac 02:c3:8a:82:17:23 vlan_id 3931 vlan_ethtype ip src_ip 88.45.102.126 dst_ip 125.181.35.188 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10834 flower src_mac 02:92:24:01:cd:16 dst_mac 02:aa:54:e9:3f:d8 vlan_id 2861 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10835 flower src_mac 02:05:03:a3:3c:fa dst_mac 02:69:3c:e4:e9:1c vlan_id 163 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10836 flower src_mac 02:c1:c5:37:ce:77 dst_mac 02:c5:56:3a:f1:08 src_ip 94.246.71.157 dst_ip 36.139.38.193 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10837 flower src_mac 02:c0:bf:53:a4:be dst_mac 02:bb:38:a7:8a:1a vlan_id 1565 vlan_ethtype 0x0800 src_ip 98.0.5.130 dst_ip 33.49.219.128 action drop && tc filter add dev swp33 ingress protocol ip pref 10838 flower src_mac 02:6f:22:33:67:3b dst_mac 02:85:4a:37:7b:db src_ip 110.54.89.19 dst_ip 117.12.65.34 ip_proto tcp src_port 21302 dst_port 8795 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10839 flower src_mac 02:1a:28:20:ba:26 dst_mac 02:b5:5c:95:b4:ed vlan_id 1917 vlan_ethtype 0x0800 src_ip 116.238.88.34 dst_ip 124.15.171.100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10840 flower src_mac 02:f6:7d:11:2e:7f dst_mac 02:09:d0:9b:fb:fc action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10841 flower src_mac 02:9e:ea:7f:2e:42 dst_mac 02:a9:d6:df:6f:03 vlan_id 2129 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10842 flower src_mac 02:8b:2a:c0:0c:ab dst_mac 02:bb:2b:08:18:20 vlan_id 1817 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10843 flower src_mac 02:20:55:e5:11:5b dst_mac 02:6d:48:f5:da:6c vlan_id 163 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10844 flower src_mac 02:48:2f:a9:98:f3 dst_mac 02:29:dd:6b:0c:93 vlan_id 2055 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10845 flower src_mac 02:21:11:3a:e0:35 dst_mac 02:eb:94:1d:a0:5b vlan_id 1120 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10846 flower src_mac 02:89:39:2e:1d:e4 dst_mac 02:0a:75:25:5d:1d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10847 flower src_mac 02:6d:46:c7:7b:fe dst_mac 02:69:f1:a8:fc:75 vlan_id 3093 vlan_ethtype ipv4 src_ip 54.134.95.34 dst_ip 98.61.54.198 ip_proto tcp src_port 65267 dst_port 56826 action trap && tc filter add dev swp33 ingress protocol ip pref 10848 flower src_mac 02:1a:ae:0d:b8:e2 dst_mac 02:f4:2f:24:80:a2 src_ip 68.34.153.159 dst_ip 110.98.168.182 ip_proto udp src_port 39606 dst_port 4935 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10849 flower src_mac 02:42:c1:a3:89:d5 dst_mac 02:ee:e2:64:df:32 vlan_id 1415 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10850 flower src_mac 02:53:22:e6:cf:5d dst_mac 02:9c:62:f8:8b:59 src_ip 45.113.56.205 dst_ip 122.28.14.61 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10851 flower src_mac 02:e1:4f:84:e0:a1 dst_mac 02:74:07:dd:1e:51 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10852 flower src_mac 02:c2:f8:a1:04:05 dst_mac 02:19:7d:2e:b1:7d vlan_id 446 vlan_ethtype ip src_ip 22.160.78.183 dst_ip 109.203.71.44 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10853 flower src_mac 02:a1:a9:96:68:53 dst_mac 02:90:ef:26:87:14 vlan_id 3822 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10854 flower src_mac 02:c7:b9:76:4f:a1 dst_mac 02:6c:24:86:b5:9c vlan_id 837 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10855 flower src_mac 02:fa:7f:b1:a6:be dst_mac 02:de:44:27:92:e6 src_ip 119.88.205.185 dst_ip 101.17.93.169 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10856 flower src_mac 02:8c:1f:28:94:a9 dst_mac 02:e2:81:01:56:98 vlan_id 3184 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10857 flower src_mac 02:b5:fe:c0:5d:da dst_mac 02:b0:05:73:09:24 src_ip 120.241.62.20 dst_ip 62.40.31.83 ip_proto udp src_port 6574 dst_port 58769 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10858 flower src_mac 02:83:1a:88:c9:3a dst_mac 02:0b:ce:e1:bb:08 vlan_id 1560 vlan_ethtype ip src_ip 34.54.89.58 dst_ip 87.108.213.191 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10859 flower src_mac 02:e7:27:57:70:94 dst_mac 02:b0:cc:43:fb:da action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10860 flower src_mac 02:15:6e:4d:e0:6e dst_mac 02:c5:aa:c1:5b:c8 vlan_id 1796 vlan_ethtype ipv4 src_ip 28.70.6.216 dst_ip 78.82.16.123 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10861 flower src_mac 02:c2:0c:2d:2c:a6 dst_mac 02:3d:af:c8:97:df vlan_id 4085 vlan_ethtype ipv4 src_ip 111.35.93.89 dst_ip 46.12.90.155 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10862 flower src_mac 02:a0:19:ef:0f:c3 dst_mac 02:3a:51:77:bd:ab vlan_id 3318 vlan_ethtype 0x0800 src_ip 75.34.33.101 dst_ip 17.181.241.72 ip_proto udp src_port 31504 dst_port 24186 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10863 flower src_mac 02:67:f8:f2:d0:1c dst_mac 02:4c:82:73:d3:fb action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10864 flower src_mac 02:0e:d9:cf:e0:47 dst_mac 02:52:c9:1d:73:ec vlan_id 1251 vlan_ethtype 0x0800 src_ip 90.75.24.102 dst_ip 93.94.113.22 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10865 flower src_mac 02:0e:a6:3f:7f:76 dst_mac 02:3b:70:92:10:5a action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10866 flower src_mac 02:76:71:df:7d:74 dst_mac 02:ff:a9:37:bd:8a vlan_id 1906 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10867 flower src_mac 02:70:b8:13:aa:04 dst_mac 02:86:37:53:93:b6 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10868 flower src_mac 02:77:74:e5:62:46 dst_mac 02:28:7f:1f:48:a5 src_ip 95.184.18.129 dst_ip 64.64.227.91 action pass && tc filter add dev swp33 ingress protocol ip pref 10869 flower src_mac 02:0f:68:26:e3:ce dst_mac 02:77:67:8b:0b:1c src_ip 39.48.210.127 dst_ip 41.20.97.189 ip_proto tcp src_port 47618 dst_port 32129 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10870 flower src_mac 02:48:0d:b9:a5:0e dst_mac 02:c5:32:15:45:8e vlan_id 3869 vlan_ethtype ipv4 src_ip 18.148.90.136 dst_ip 26.185.246.183 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10871 flower src_mac 02:ca:7d:56:27:db dst_mac 02:b8:2b:00:48:e1 vlan_id 306 vlan_ethtype ipv4 src_ip 81.237.160.226 dst_ip 90.230.60.100 ip_proto udp src_port 64052 dst_port 29416 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10872 flower src_mac 02:9f:88:aa:7b:a9 dst_mac 02:65:a7:34:68:45 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10873 flower src_mac 02:f2:6b:c3:35:9c dst_mac 02:c3:0c:a4:a2:9a src_ip 18.4.150.12 dst_ip 123.70.227.65 ip_proto tcp src_port 62634 dst_port 50200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10874 flower src_mac 02:12:0e:b2:a7:53 dst_mac 02:77:8c:d7:b7:59 src_ip 62.117.12.34 dst_ip 47.158.16.213 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10875 flower src_mac 02:6b:52:85:e2:37 dst_mac 02:f1:6f:ca:03:af vlan_id 3528 vlan_ethtype ip src_ip 111.112.191.5 dst_ip 119.181.186.168 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10876 flower src_mac 02:9a:31:6d:f2:29 dst_mac 02:98:e9:d0:2d:fd vlan_id 670 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10877 flower src_mac 02:6a:90:d9:44:36 dst_mac 02:ab:00:7b:49:44 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10878 flower src_mac 02:41:55:ac:98:bd dst_mac 02:ff:36:b2:c3:32 vlan_id 4058 vlan_ethtype ipv4 src_ip 68.11.67.231 dst_ip 116.204.46.250 ip_proto tcp src_port 37811 dst_port 3683 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10879 flower src_mac 02:0c:57:7c:52:e1 dst_mac 02:50:fc:55:dd:86 vlan_id 38 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10880 flower src_mac 02:7f:6d:55:cb:3a dst_mac 02:65:1d:e7:e6:d3 src_ip 13.214.228.222 dst_ip 126.118.125.58 ip_proto udp src_port 25773 dst_port 16052 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10881 flower src_mac 02:81:03:db:f7:35 dst_mac 02:f2:3d:c9:ee:e0 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10882 flower src_mac 02:38:f4:d4:54:4f dst_mac 02:29:67:c4:d7:0f vlan_id 119 vlan_ethtype ipv4 src_ip 112.149.186.233 dst_ip 57.159.203.138 ip_proto tcp src_port 65470 dst_port 1891 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10883 flower src_mac 02:b5:14:e9:68:b0 dst_mac 02:2f:cf:a0:8b:1b vlan_id 652 vlan_ethtype ipv4 src_ip 100.22.166.234 dst_ip 77.229.58.68 action trap && tc filter add dev swp33 ingress protocol ip pref 10884 flower src_mac 02:23:44:d0:62:67 dst_mac 02:bf:9a:c1:b6:aa src_ip 102.21.251.29 dst_ip 116.71.77.162 ip_proto icmp code 88 type 3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10885 flower src_mac 02:ac:c8:1c:df:4d dst_mac 02:e9:64:15:3d:de vlan_id 3604 vlan_ethtype 0x0800 src_ip 101.195.153.176 dst_ip 30.60.125.166 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10886 flower src_mac 02:14:33:28:e2:cd dst_mac 02:81:94:b7:3f:78 src_ip 54.132.94.154 dst_ip 59.178.42.182 ip_proto udp src_port 55202 dst_port 41928 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10887 flower src_mac 02:93:24:cb:b6:0c dst_mac 02:98:17:f1:be:d3 vlan_id 3376 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10888 flower src_mac 02:d2:91:ed:43:c0 dst_mac 02:ba:1b:ca:49:23 vlan_id 332 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10889 flower src_mac 02:04:89:75:a0:10 dst_mac 02:fd:43:d2:cc:74 vlan_id 3377 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10890 flower src_mac 02:91:93:44:5c:4e dst_mac 02:fa:a5:91:b3:0e vlan_id 3685 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10891 flower src_mac 02:3f:58:8e:1f:3b dst_mac 02:9d:0a:aa:28:95 vlan_id 2659 vlan_ethtype 0x0800 src_ip 69.113.187.250 dst_ip 107.76.160.224 ip_proto tcp src_port 57203 dst_port 16829 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10892 flower src_mac 02:84:74:a9:8f:09 dst_mac 02:cd:31:02:5a:31 vlan_id 885 vlan_ethtype ipv4 src_ip 30.168.137.125 dst_ip 61.71.126.156 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10893 flower src_mac 02:04:70:25:0f:b2 dst_mac 02:79:bc:99:e5:58 src_ip 40.80.52.43 dst_ip 31.168.172.175 ip_proto icmp code 175 type 12 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10894 flower src_mac 02:79:20:1d:fc:e3 dst_mac 02:7b:2b:7c:ad:c6 vlan_id 1777 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10895 flower src_mac 02:7a:97:2e:00:fe dst_mac 02:b4:77:53:22:90 vlan_id 2492 vlan_ethtype 0x0800 src_ip 93.164.184.132 dst_ip 92.60.245.20 ip_proto tcp src_port 58105 dst_port 20248 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10896 flower src_mac 02:ae:5c:a4:2f:79 dst_mac 02:a9:c7:68:27:4e vlan_id 3145 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10897 flower src_mac 02:b0:e4:35:0d:40 dst_mac 02:d2:39:cc:7f:1e src_ip 82.233.234.5 dst_ip 105.184.236.42 ip_proto udp src_port 26182 dst_port 51377 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10898 flower src_mac 02:db:a2:ac:a3:b2 dst_mac 02:4f:03:9a:b0:e2 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10899 flower src_mac 02:c8:ee:17:1a:73 dst_mac 02:ff:94:32:70:1b src_ip 86.204.77.137 dst_ip 24.3.192.114 ip_proto icmp code 222 type 17 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10900 flower src_mac 02:9c:93:d1:83:6d dst_mac 02:82:9c:c8:df:46 src_ip 51.109.161.135 dst_ip 24.198.167.85 ip_proto tcp src_port 39916 dst_port 32622 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10901 flower src_mac 02:23:65:f9:26:ad dst_mac 02:52:85:b4:ad:f9 vlan_id 1960 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10902 flower src_mac 02:a4:18:a7:24:f7 dst_mac 02:05:e0:be:d0:20 src_ip 99.168.193.7 dst_ip 24.28.57.106 ip_proto icmp code 111 type 8 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10903 flower src_mac 02:f2:79:ab:95:59 dst_mac 02:23:6b:80:7b:70 src_ip 125.62.229.241 dst_ip 66.253.197.230 ip_proto tcp src_port 25298 dst_port 47848 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10904 flower src_mac 02:50:1e:85:5d:25 dst_mac 02:24:97:bb:8d:bd vlan_id 1499 vlan_ethtype 0x0800 src_ip 68.29.33.140 dst_ip 60.118.142.22 ip_proto tcp src_port 60518 dst_port 58804 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10905 flower src_mac 02:1f:cc:36:d3:40 dst_mac 02:bc:05:f5:d0:5c vlan_id 3990 vlan_ethtype 0x0800 src_ip 105.190.252.155 dst_ip 115.17.232.197 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10906 flower src_mac 02:c0:51:25:da:ed dst_mac 02:ab:21:4d:a5:aa vlan_id 759 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10907 flower src_mac 02:ff:a6:fc:0e:20 dst_mac 02:fb:c6:29:3c:09 src_ip 50.36.158.18 dst_ip 17.103.72.231 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10908 flower src_mac 02:41:7a:4b:5c:03 dst_mac 02:80:31:2a:6b:24 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10909 flower src_mac 02:48:c4:28:67:dd dst_mac 02:b4:40:4e:74:55 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10910 flower src_mac 02:31:49:ee:f8:a8 dst_mac 02:46:bb:0e:14:cb vlan_id 2723 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10911 flower src_mac 02:80:80:a2:26:85 dst_mac 02:b0:87:61:7c:21 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10912 flower src_mac 02:3c:4c:af:79:f6 dst_mac 02:3d:7a:c5:32:51 vlan_id 2396 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10913 flower src_mac 02:25:50:f7:82:8d dst_mac 02:df:03:c9:27:ac src_ip 108.10.77.123 dst_ip 67.65.11.76 ip_proto icmp code 156 type 11 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10914 flower src_mac 02:b1:5a:7d:11:f3 dst_mac 02:92:ac:c2:e7:7b action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10915 flower src_mac 02:3d:15:bf:bf:a0 dst_mac 02:44:a7:84:26:4d action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10916 flower src_mac 02:26:37:b6:32:4c dst_mac 02:ae:c6:05:08:d7 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10917 flower src_mac 02:52:8b:2f:26:69 dst_mac 02:ed:cd:d5:fe:91 vlan_id 3941 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10918 flower src_mac 02:e8:b1:5a:08:b7 dst_mac 02:2e:a4:6d:ea:79 vlan_id 1714 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10919 flower src_mac 02:26:52:aa:d3:ae dst_mac 02:76:c1:99:8f:9d vlan_id 750 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10920 flower src_mac 02:77:82:58:9e:a3 dst_mac 02:c0:df:2f:38:56 src_ip 78.44.142.97 dst_ip 36.130.113.35 ip_proto icmp code 87 type 8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10921 flower src_mac 02:ab:59:13:c0:d9 dst_mac 02:91:c1:9e:48:fd vlan_id 2721 vlan_ethtype ipv4 src_ip 46.112.167.22 dst_ip 76.55.89.197 ip_proto udp src_port 8481 dst_port 11634 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10922 flower src_mac 02:be:c2:b5:de:a6 dst_mac 02:6f:65:5e:2b:eb vlan_id 3378 vlan_ethtype ip src_ip 77.222.193.55 dst_ip 45.221.4.235 ip_proto udp src_port 41917 dst_port 6735 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10923 flower src_mac 02:08:10:b8:f9:b6 dst_mac 02:9e:b2:f0:6b:4b vlan_id 1368 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10924 flower src_mac 02:ff:d8:35:c1:34 dst_mac 02:f4:c9:80:c9:0c action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10925 flower src_mac 02:0c:85:6f:f9:45 dst_mac 02:07:6e:c4:b2:0e vlan_id 693 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10926 flower src_mac 02:a4:d3:dc:42:0e dst_mac 02:8a:a9:30:71:44 vlan_id 3551 vlan_ethtype ipv4 src_ip 122.215.142.33 dst_ip 34.211.218.190 ip_proto tcp src_port 41567 dst_port 32873 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10927 flower src_mac 02:c1:fe:a3:e4:b6 dst_mac 02:e0:ed:d1:05:ff vlan_id 2750 vlan_ethtype ipv4 src_ip 122.11.116.68 dst_ip 73.51.4.45 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10928 flower src_mac 02:4b:28:eb:23:57 dst_mac 02:ed:47:8b:82:72 vlan_id 2716 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10929 flower src_mac 02:7e:87:a3:f7:14 dst_mac 02:82:ef:35:08:7e src_ip 89.15.246.243 dst_ip 63.145.88.189 action drop && tc filter add dev swp33 ingress protocol ip pref 10930 flower src_mac 02:16:87:39:09:db dst_mac 02:7b:f0:4d:e9:44 src_ip 77.124.235.145 dst_ip 67.58.176.175 ip_proto icmp code 17 type 16 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10931 flower src_mac 02:21:66:9e:53:9a dst_mac 02:66:71:7c:1d:92 src_ip 13.205.194.170 dst_ip 58.19.89.76 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10932 flower src_mac 02:dd:9d:72:e0:ee dst_mac 02:16:4e:8b:12:04 vlan_id 3487 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10933 flower src_mac 02:96:23:2e:d7:09 dst_mac 02:46:71:72:06:c2 src_ip 27.116.118.71 dst_ip 91.246.247.46 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10934 flower src_mac 02:56:6c:7e:af:82 dst_mac 02:25:5a:e0:39:bd vlan_id 262 vlan_ethtype 0x0800 src_ip 66.163.196.4 dst_ip 108.82.173.240 ip_proto udp src_port 51550 dst_port 65091 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10935 flower src_mac 02:b6:79:98:88:94 dst_mac 02:97:d6:0a:cf:03 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10936 flower src_mac 02:e4:0b:40:8c:57 dst_mac 02:eb:28:d5:68:74 vlan_id 2470 vlan_ethtype ip src_ip 60.186.226.160 dst_ip 89.103.240.26 ip_proto udp src_port 50136 dst_port 10659 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10937 flower src_mac 02:64:74:15:17:0b dst_mac 02:c3:ea:4f:b5:47 vlan_id 3907 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10938 flower src_mac 02:b8:03:d7:bc:65 dst_mac 02:f5:0c:4a:c6:0f src_ip 11.0.38.155 dst_ip 40.175.70.99 ip_proto icmp code 249 type 12 action pass && tc filter add dev swp33 ingress protocol ip pref 10939 flower src_mac 02:64:eb:92:f3:b3 dst_mac 02:5b:69:29:18:68 src_ip 56.16.0.238 dst_ip 14.163.23.198 ip_proto icmp code 44 type 14 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10940 flower src_mac 02:b8:bc:e8:bb:d8 dst_mac 02:31:db:fd:40:9d vlan_id 2133 vlan_ethtype 0x0800 src_ip 93.243.210.156 dst_ip 91.165.4.248 ip_proto udp src_port 34137 dst_port 13250 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10941 flower src_mac 02:f4:f8:9d:02:ac dst_mac 02:dd:aa:51:b7:83 vlan_id 1810 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10942 flower src_mac 02:14:a0:e0:c9:f3 dst_mac 02:24:f9:41:2a:dd vlan_id 1184 vlan_ethtype ipv4 src_ip 108.185.90.24 dst_ip 112.126.84.228 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10943 flower src_mac 02:b2:cf:40:7c:55 dst_mac 02:33:21:94:c2:c6 src_ip 11.33.14.72 dst_ip 80.114.21.53 ip_proto tcp src_port 36493 dst_port 11319 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10944 flower src_mac 02:5c:8b:0b:40:08 dst_mac 02:1e:d2:c9:95:86 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10945 flower src_mac 02:6f:a8:fe:2b:42 dst_mac 02:b8:96:53:64:21 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10946 flower src_mac 02:52:81:c5:09:4b dst_mac 02:9e:ff:f7:27:fa vlan_id 1715 vlan_ethtype ipv4 src_ip 71.110.158.104 dst_ip 21.24.51.222 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10947 flower src_mac 02:d0:8c:b5:f1:e0 dst_mac 02:d8:8f:54:d4:2d vlan_id 727 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10948 flower src_mac 02:37:72:ad:b7:69 dst_mac 02:cb:80:48:5b:2e vlan_id 497 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10949 flower src_mac 02:53:72:de:0d:25 dst_mac 02:2c:af:25:26:b6 vlan_id 2654 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10950 flower src_mac 02:cc:90:38:79:51 dst_mac 02:2b:00:af:5a:ab vlan_id 2596 vlan_ethtype ipv4 src_ip 94.197.131.215 dst_ip 114.187.206.238 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10951 flower src_mac 02:e1:b2:32:b6:5e dst_mac 02:97:f9:fd:d9:d2 vlan_id 654 vlan_ethtype 0x0800 src_ip 51.205.220.216 dst_ip 33.149.220.177 ip_proto udp src_port 57906 dst_port 37729 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10952 flower src_mac 02:77:e3:d5:ba:7f dst_mac 02:1b:93:4c:a4:50 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10953 flower src_mac 02:c3:52:f1:a2:ad dst_mac 02:80:dc:38:b1:5d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10954 flower src_mac 02:9c:ea:f3:35:b2 dst_mac 02:90:13:98:b6:ac vlan_id 945 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10955 flower src_mac 02:b4:30:15:04:fa dst_mac 02:64:d4:9e:f0:42 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10956 flower src_mac 02:6e:f5:d4:54:8b dst_mac 02:53:af:18:bc:2c action trap && tc filter add dev swp33 ingress protocol ip pref 10957 flower src_mac 02:8e:6d:70:36:ae dst_mac 02:c8:fd:e3:60:0f src_ip 96.163.86.106 dst_ip 102.18.0.52 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10958 flower src_mac 02:b7:85:81:37:c7 dst_mac 02:1f:09:21:58:66 src_ip 125.118.134.80 dst_ip 56.139.227.222 ip_proto udp src_port 7452 dst_port 11005 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10959 flower src_mac 02:c5:3a:a9:a8:ef dst_mac 02:f2:6d:52:1b:ee vlan_id 2690 vlan_ethtype ip src_ip 29.1.147.65 dst_ip 40.80.239.27 ip_proto udp src_port 34873 dst_port 16821 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10960 flower src_mac 02:34:23:5a:5f:45 dst_mac 02:08:e7:32:b2:67 vlan_id 1458 vlan_ethtype ipv4 src_ip 106.231.246.130 dst_ip 27.137.135.36 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10961 flower src_mac 02:e3:1b:42:a7:fd dst_mac 02:80:68:dd:b8:96 vlan_id 1688 vlan_ethtype 0x0800 src_ip 34.184.121.41 dst_ip 110.187.166.171 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10962 flower src_mac 02:03:81:8d:ef:43 dst_mac 02:f1:55:38:75:d7 vlan_id 2541 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10963 flower src_mac 02:55:9b:e7:79:88 dst_mac 02:a0:96:09:b0:1f action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10964 flower src_mac 02:df:ca:ac:23:38 dst_mac 02:35:5d:ec:57:4f vlan_id 250 vlan_ethtype ipv4 src_ip 107.231.162.173 dst_ip 117.30.60.120 ip_proto tcp src_port 6621 dst_port 40850 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10965 flower src_mac 02:20:af:ff:05:46 dst_mac 02:d8:55:63:3c:41 src_ip 38.87.150.39 dst_ip 31.119.56.185 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10966 flower src_mac 02:89:83:60:6a:b0 dst_mac 02:5c:bf:6e:f7:a0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10967 flower src_mac 02:bc:e0:1b:1e:9f dst_mac 02:3b:1c:bf:e0:20 vlan_id 3243 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10968 flower src_mac 02:ae:bb:94:fd:41 dst_mac 02:51:3f:08:4b:eb action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10969 flower src_mac 02:40:42:fd:8d:36 dst_mac 02:3e:23:db:9d:53 vlan_id 2230 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10970 flower src_mac 02:b3:88:d6:c8:ec dst_mac 02:db:49:27:6f:53 vlan_id 3052 vlan_ethtype ip src_ip 19.54.18.230 dst_ip 115.93.104.59 ip_proto udp src_port 61812 dst_port 51311 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10971 flower src_mac 02:d9:26:a5:69:4d dst_mac 02:12:ae:62:c0:c4 vlan_id 1937 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10972 flower src_mac 02:7a:3a:53:40:86 dst_mac 02:10:69:b9:93:9d vlan_id 2769 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10973 flower src_mac 02:1c:bc:01:2b:04 dst_mac 02:cf:b7:be:a6:66 src_ip 47.2.251.98 dst_ip 117.135.112.77 ip_proto udp src_port 22757 dst_port 15825 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10974 flower src_mac 02:74:34:26:a6:6e dst_mac 02:28:56:8a:3e:4c vlan_id 2751 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10975 flower src_mac 02:72:6a:d3:3f:d4 dst_mac 02:65:44:82:b5:48 src_ip 64.36.253.139 dst_ip 70.119.147.75 ip_proto udp src_port 25797 dst_port 5852 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10976 flower src_mac 02:ec:80:0e:e4:4d dst_mac 02:a2:27:22:b3:20 vlan_id 1279 vlan_ethtype ip src_ip 85.232.5.220 dst_ip 85.187.82.33 ip_proto tcp src_port 19771 dst_port 16623 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10977 flower src_mac 02:e0:a8:4b:75:3a dst_mac 02:55:19:a6:be:3c vlan_id 964 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10978 flower src_mac 02:93:35:b0:d1:c1 dst_mac 02:1e:5f:cc:d8:54 src_ip 14.42.228.41 dst_ip 66.161.103.133 ip_proto icmp code 156 type 16 action drop && tc filter add dev swp33 ingress protocol ip pref 10979 flower src_mac 02:9f:90:8d:bd:52 dst_mac 02:3c:e3:1a:e5:b0 src_ip 75.207.201.16 dst_ip 53.130.210.98 ip_proto icmp code 103 type 18 action trap && tc filter add dev swp33 ingress protocol ip pref 10980 flower src_mac 02:fe:bc:21:d3:5e dst_mac 02:24:bd:40:f4:79 src_ip 52.151.58.99 dst_ip 117.231.188.188 ip_proto tcp src_port 16386 dst_port 50865 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10981 flower src_mac 02:95:cd:4c:ed:e9 dst_mac 02:bb:62:57:f1:ff vlan_id 975 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10982 flower src_mac 02:db:bc:79:38:a5 dst_mac 02:54:6b:a3:f3:68 vlan_id 2856 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10983 flower src_mac 02:55:de:28:d2:a0 dst_mac 02:f0:70:9e:ce:2e src_ip 63.133.82.39 dst_ip 39.255.2.152 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10984 flower src_mac 02:c9:01:30:8e:82 dst_mac 02:5d:92:73:ee:ab vlan_id 2555 vlan_ethtype ip src_ip 65.29.165.175 dst_ip 96.121.176.84 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10985 flower src_mac 02:0b:b0:5e:df:96 dst_mac 02:9f:3f:62:0d:37 vlan_id 724 vlan_ethtype 0x0800 src_ip 16.87.181.214 dst_ip 21.176.108.129 ip_proto udp src_port 25187 dst_port 40062 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10986 flower src_mac 02:17:60:e4:18:cf dst_mac 02:7c:a2:af:de:ec action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10987 flower src_mac 02:fe:9b:bd:1d:86 dst_mac 02:11:50:38:cb:59 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10988 flower src_mac 02:1d:d1:68:bf:bb dst_mac 02:55:75:56:be:18 vlan_id 1151 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10989 flower src_mac 02:2e:02:7e:d3:76 dst_mac 02:c9:c2:9f:90:38 vlan_id 1291 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10990 flower src_mac 02:42:c5:4b:e2:ea dst_mac 02:72:3f:b4:f0:ef vlan_id 2444 vlan_ethtype ip src_ip 95.181.254.150 dst_ip 14.186.181.155 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10991 flower src_mac 02:c7:e6:a3:15:95 dst_mac 02:2e:41:8b:32:e0 vlan_id 2101 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10992 flower src_mac 02:14:30:18:21:08 dst_mac 02:a3:0e:f0:b8:a1 vlan_id 2398 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10993 flower src_mac 02:f3:67:6b:73:f7 dst_mac 02:d5:2e:f7:88:53 src_ip 126.152.38.20 dst_ip 39.107.6.45 ip_proto tcp src_port 63109 dst_port 14111 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10994 flower src_mac 02:5c:b6:97:eb:68 dst_mac 02:5b:51:f8:ba:43 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10995 flower src_mac 02:18:b8:b7:41:67 dst_mac 02:1b:91:2b:b9:20 src_ip 112.253.150.90 dst_ip 112.135.26.215 action pass && tc filter add dev swp33 ingress protocol ip pref 10996 flower src_mac 02:b7:da:9e:38:65 dst_mac 02:bb:6f:d4:d9:ae src_ip 65.237.214.180 dst_ip 65.20.107.76 ip_proto tcp src_port 33662 dst_port 53980 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10997 flower src_mac 02:11:09:7b:88:e8 dst_mac 02:80:af:f0:19:32 vlan_id 1680 vlan_ethtype ip src_ip 14.149.107.3 dst_ip 45.137.0.204 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10998 flower src_mac 02:4f:fe:10:f4:6b dst_mac 02:4f:b9:05:a9:0e vlan_id 2401 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10999 flower src_mac 02:cc:86:f9:d9:b6 dst_mac 02:b7:c1:bd:e8:85 vlan_id 1786 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11000 flower src_mac 02:7d:af:71:01:61 dst_mac 02:f4:51:9e:67:84 src_ip 92.67.215.98 dst_ip 99.137.170.173 ip_proto icmp code 71 type 17 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11001 flower src_mac 02:ad:e2:00:ee:1d dst_mac 02:72:8e:8d:1d:3e action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11002 flower src_mac 02:ae:0b:e7:0d:04 dst_mac 02:55:bd:63:f6:25 vlan_id 3750 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11003 flower src_mac 02:eb:6a:9e:7a:93 dst_mac 02:44:63:32:a4:82 src_ip 37.57.235.87 dst_ip 85.2.252.235 ip_proto tcp src_port 62098 dst_port 63990 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11004 flower src_mac 02:84:e3:c7:1b:48 dst_mac 02:a0:1b:00:26:58 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11005 flower src_mac 02:37:bf:67:82:d5 dst_mac 02:1d:58:3a:08:20 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11006 flower src_mac 02:67:e4:76:34:71 dst_mac 02:8b:99:d6:92:ec src_ip 105.67.136.42 dst_ip 33.148.141.42 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11007 flower src_mac 02:a4:22:b2:fa:64 dst_mac 02:9e:0f:ad:b3:6d vlan_id 2203 vlan_ethtype ip src_ip 92.72.88.54 dst_ip 71.7.111.206 ip_proto tcp src_port 35929 dst_port 38103 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11008 flower src_mac 02:0c:68:e7:41:cd dst_mac 02:07:82:02:81:b4 vlan_id 3401 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11009 flower src_mac 02:36:5e:0a:99:f2 dst_mac 02:f6:32:17:4c:e3 vlan_id 2688 vlan_ethtype ipv4 src_ip 97.183.148.157 dst_ip 108.217.173.48 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11010 flower src_mac 02:12:41:7b:78:cb dst_mac 02:5b:53:96:0f:76 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11011 flower src_mac 02:10:6d:d6:c0:86 dst_mac 02:9b:2a:25:d0:d7 vlan_id 2116 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11012 flower src_mac 02:0d:e7:58:04:39 dst_mac 02:5d:83:5c:d9:88 src_ip 115.191.17.142 dst_ip 22.218.247.88 ip_proto icmp code 16 type 11 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11013 flower src_mac 02:91:b9:a4:1c:be dst_mac 02:cd:8c:19:df:1a vlan_id 546 vlan_ethtype 0x0800 src_ip 66.78.129.182 dst_ip 125.202.98.175 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11014 flower src_mac 02:76:da:2e:29:c1 dst_mac 02:6c:62:5f:33:e7 vlan_id 573 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11015 flower src_mac 02:1a:2d:6b:da:a5 dst_mac 02:73:49:15:ef:3d vlan_id 1362 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11016 flower src_mac 02:13:04:e6:6e:dc dst_mac 02:cb:e6:69:7b:ab action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11017 flower src_mac 02:0f:34:9f:46:ce dst_mac 02:a0:dd:a3:11:f5 src_ip 23.2.90.147 dst_ip 21.217.146.14 ip_proto udp src_port 62561 dst_port 2639 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11018 flower src_mac 02:a6:04:cc:b5:8e dst_mac 02:e4:e3:4c:0d:1e vlan_id 996 vlan_ethtype ipv4 src_ip 32.239.221.230 dst_ip 88.194.206.244 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11019 flower src_mac 02:64:1b:e0:76:1c dst_mac 02:d6:a1:ad:7a:94 vlan_id 1220 vlan_ethtype ipv4 src_ip 23.223.191.133 dst_ip 84.246.131.159 ip_proto udp src_port 32280 dst_port 48482 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11020 flower src_mac 02:0e:fd:53:88:40 dst_mac 02:44:b7:0d:29:73 vlan_id 2106 vlan_ethtype ipv4 src_ip 126.141.31.187 dst_ip 91.84.158.60 ip_proto tcp src_port 24365 dst_port 62 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11021 flower src_mac 02:f1:0e:d2:51:b1 dst_mac 02:a7:da:90:ce:60 src_ip 17.49.135.191 dst_ip 105.37.242.40 ip_proto tcp src_port 49734 dst_port 11242 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11022 flower src_mac 02:21:4c:75:c0:e6 dst_mac 02:d7:4d:20:8d:f3 vlan_id 3890 vlan_ethtype ip src_ip 39.0.85.46 dst_ip 53.81.132.21 ip_proto udp src_port 42976 dst_port 17330 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11023 flower src_mac 02:10:e2:b5:00:40 dst_mac 02:c4:40:2c:99:cc src_ip 105.19.57.104 dst_ip 126.155.226.244 ip_proto udp src_port 42194 dst_port 6152 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11024 flower src_mac 02:fb:e7:b5:3a:53 dst_mac 02:f0:1d:8d:d1:ea vlan_id 569 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11025 flower src_mac 02:79:6c:2b:42:00 dst_mac 02:f3:61:0b:88:08 vlan_id 3778 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11026 flower src_mac 02:53:33:61:0f:1b dst_mac 02:88:7f:c4:53:4b vlan_id 1637 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11027 flower src_mac 02:c5:b1:d9:b9:1a dst_mac 02:b9:0f:f6:d4:2f src_ip 123.162.106.226 dst_ip 28.142.176.71 ip_proto tcp src_port 45493 dst_port 42682 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11028 flower src_mac 02:b6:a8:1a:2c:d5 dst_mac 02:87:3b:33:16:00 vlan_id 1456 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11029 flower src_mac 02:b5:7b:60:8c:ca dst_mac 02:da:1e:0a:a2:18 vlan_id 3474 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11030 flower src_mac 02:eb:2c:37:e8:78 dst_mac 02:a4:af:68:bd:f4 src_ip 68.136.161.91 dst_ip 76.195.85.16 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11031 flower src_mac 02:ce:62:73:ae:3a dst_mac 02:5a:76:85:53:06 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11032 flower src_mac 02:0f:f3:d0:11:85 dst_mac 02:a2:8a:37:61:3c vlan_id 1446 vlan_ethtype ipv4 src_ip 95.116.131.34 dst_ip 74.14.35.2 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11033 flower src_mac 02:17:5e:77:fe:f0 dst_mac 02:31:78:01:49:f9 vlan_id 3225 vlan_ethtype 0x0800 src_ip 93.28.201.55 dst_ip 11.129.205.247 ip_proto udp src_port 48783 dst_port 17522 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11034 flower src_mac 02:b9:a5:6a:d4:7a dst_mac 02:91:4f:4f:2f:63 vlan_id 4053 vlan_ethtype 0x0800 src_ip 100.112.125.178 dst_ip 108.143.64.92 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11035 flower src_mac 02:b8:0e:85:41:b5 dst_mac 02:3d:47:27:f7:c1 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11036 flower src_mac 02:03:e5:a5:d7:d1 dst_mac 02:3e:54:86:e2:68 vlan_id 3701 vlan_ethtype ipv4 src_ip 18.240.40.128 dst_ip 119.225.183.220 ip_proto udp src_port 20340 dst_port 4381 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11037 flower src_mac 02:d6:98:b0:3a:22 dst_mac 02:b4:ba:43:98:c8 src_ip 11.131.106.67 dst_ip 31.129.244.98 ip_proto icmp code 39 type 3 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11038 flower src_mac 02:5a:31:e3:9f:3f dst_mac 02:39:0e:8e:86:c5 vlan_id 1061 vlan_ethtype 0x0800 src_ip 47.200.78.86 dst_ip 27.212.169.159 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11039 flower src_mac 02:dc:d0:76:b8:a0 dst_mac 02:93:16:92:3c:56 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11040 flower src_mac 02:3c:7a:81:46:27 dst_mac 02:ad:11:77:4c:3a vlan_id 1488 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11041 flower src_mac 02:74:49:88:07:14 dst_mac 02:4c:37:79:52:64 vlan_id 3694 vlan_ethtype ipv4 src_ip 57.243.67.7 dst_ip 22.222.179.32 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11042 flower src_mac 02:65:3e:b3:3c:c2 dst_mac 02:00:55:40:dd:58 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11043 flower src_mac 02:15:36:10:69:d8 dst_mac 02:73:d1:cd:4f:db action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11044 flower src_mac 02:71:69:fa:63:34 dst_mac 02:58:cc:c3:92:b1 vlan_id 3149 vlan_ethtype ip src_ip 18.71.67.70 dst_ip 88.42.22.17 ip_proto tcp src_port 57825 dst_port 23589 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11045 flower src_mac 02:14:d6:c2:14:27 dst_mac 02:48:19:e2:17:af src_ip 12.88.231.157 dst_ip 105.58.14.13 ip_proto icmp code 166 type 14 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11046 flower src_mac 02:6b:30:2a:52:6f dst_mac 02:e5:d9:8f:b4:e8 vlan_id 1983 vlan_ethtype 0x0800 src_ip 29.94.156.28 dst_ip 73.4.134.172 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11047 flower src_mac 02:25:32:b9:24:4e dst_mac 02:e6:9e:e5:77:53 vlan_id 3698 vlan_ethtype ipv4 src_ip 47.37.160.90 dst_ip 87.134.49.35 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11048 flower src_mac 02:c8:3c:b7:83:40 dst_mac 02:8e:81:d6:4d:7b src_ip 45.173.217.78 dst_ip 55.233.210.220 ip_proto udp src_port 32406 dst_port 63820 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11049 flower src_mac 02:81:9e:c0:e8:88 dst_mac 02:89:d1:a5:f1:b9 vlan_id 4082 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11050 flower src_mac 02:86:e7:6c:5e:b2 dst_mac 02:45:1c:17:60:65 vlan_id 977 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 11051 flower src_mac 02:1b:0f:a5:0c:07 dst_mac 02:de:ff:ff:d3:3b src_ip 29.66.161.24 dst_ip 58.17.44.195 ip_proto icmp code 245 type 5 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11052 flower src_mac 02:3d:00:54:f6:ea dst_mac 02:9e:94:49:49:95 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11053 flower src_mac 02:bb:26:0d:ea:28 dst_mac 02:ff:33:31:8e:7b action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11054 flower src_mac 02:b6:86:0f:4d:7e dst_mac 02:7a:ea:c5:f4:13 action trap && tc filter add dev swp33 ingress protocol ip pref 11055 flower src_mac 02:19:00:ea:b1:f5 dst_mac 02:f8:61:3f:4c:18 src_ip 123.96.36.96 dst_ip 74.94.111.134 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11056 flower src_mac 02:b2:3f:8d:b5:fa dst_mac 02:95:a1:b4:e2:a3 vlan_id 4022 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11057 flower src_mac 02:8a:15:08:0b:99 dst_mac 02:c1:13:97:51:6f src_ip 59.35.143.53 dst_ip 12.47.123.212 ip_proto tcp src_port 5900 dst_port 64928 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11058 flower src_mac 02:4f:53:25:7e:fc dst_mac 02:11:04:53:1f:bc vlan_id 345 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11059 flower src_mac 02:ab:aa:6b:ee:e5 dst_mac 02:de:8a:ae:7d:0b src_ip 72.161.143.175 dst_ip 27.208.192.8 ip_proto tcp src_port 10230 dst_port 6752 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11060 flower src_mac 02:00:28:1a:cb:e8 dst_mac 02:8a:c4:b4:61:95 action drop && tc filter add dev swp33 ingress protocol ip pref 11061 flower src_mac 02:35:03:69:40:f4 dst_mac 02:5a:39:b0:de:d2 src_ip 85.176.135.87 dst_ip 62.152.220.108 ip_proto udp src_port 7525 dst_port 52628 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11062 flower src_mac 02:05:d2:51:9d:94 dst_mac 02:25:fa:94:8c:b5 src_ip 126.140.217.88 dst_ip 105.22.114.176 ip_proto udp src_port 41547 dst_port 39837 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11063 flower src_mac 02:7b:11:d5:24:3b dst_mac 02:15:8a:ae:81:7d action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11064 flower src_mac 02:3d:bd:9e:41:9a dst_mac 02:f8:73:c7:bd:69 vlan_id 1891 vlan_ethtype ipv4 src_ip 110.103.186.179 dst_ip 77.11.231.90 ip_proto udp src_port 23365 dst_port 59511 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11065 flower src_mac 02:c8:70:ba:66:28 dst_mac 02:6c:95:ea:0d:a3 vlan_id 227 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11066 flower src_mac 02:56:a9:43:d4:ca dst_mac 02:50:76:ed:47:21 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11067 flower src_mac 02:54:4c:93:bb:35 dst_mac 02:6c:78:2a:71:0c src_ip 122.42.28.61 dst_ip 117.140.16.161 ip_proto tcp src_port 52217 dst_port 3801 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11068 flower src_mac 02:55:2d:16:bd:93 dst_mac 02:d3:38:e8:a3:aa action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11069 flower src_mac 02:ce:5d:ce:b0:ac dst_mac 02:39:33:d6:f8:14 vlan_id 2517 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11070 flower src_mac 02:e8:3a:18:3b:94 dst_mac 02:ff:16:76:5c:1a vlan_id 1346 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11071 flower src_mac 02:4f:76:20:22:2d dst_mac 02:e7:31:45:c4:53 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11072 flower src_mac 02:d2:d9:c3:ec:ed dst_mac 02:72:a6:6f:fe:dd vlan_id 3087 vlan_ethtype 0x0800 src_ip 55.36.58.237 dst_ip 66.92.106.79 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11073 flower src_mac 02:58:ce:b9:cd:d8 dst_mac 02:76:97:7e:85:ed action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11074 flower src_mac 02:27:7c:b9:ef:ae dst_mac 02:35:3d:dd:e5:4f vlan_id 1627 vlan_ethtype ip src_ip 95.98.236.237 dst_ip 99.196.196.74 ip_proto tcp src_port 18594 dst_port 13154 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11075 flower src_mac 02:66:7f:61:85:88 dst_mac 02:1b:65:84:93:3c vlan_id 726 vlan_ethtype ip src_ip 100.92.0.159 dst_ip 91.7.89.83 ip_proto udp src_port 56503 dst_port 46739 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11076 flower src_mac 02:80:d3:51:06:fe dst_mac 02:44:09:fd:c5:be action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11077 flower src_mac 02:17:80:ea:7f:d6 dst_mac 02:e7:9d:ff:94:91 vlan_id 2388 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11078 flower src_mac 02:96:a0:70:b4:1f dst_mac 02:20:2d:d1:9f:b4 vlan_id 3794 vlan_ethtype ipv4 src_ip 94.174.78.31 dst_ip 104.168.37.86 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11079 flower src_mac 02:51:ef:23:35:c3 dst_mac 02:73:d1:e0:b8:0f vlan_id 3795 vlan_ethtype ip src_ip 57.94.255.234 dst_ip 100.70.47.53 ip_proto tcp src_port 20536 dst_port 44321 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11080 flower src_mac 02:78:0b:94:d9:e2 dst_mac 02:6f:9e:0b:1a:9d vlan_id 2770 vlan_ethtype 0x0800 src_ip 73.223.137.214 dst_ip 95.126.52.1 ip_proto tcp src_port 30670 dst_port 10106 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11081 flower src_mac 02:4b:57:cd:e4:26 dst_mac 02:ef:bb:d0:60:2e src_ip 76.157.117.81 dst_ip 92.244.26.111 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11082 flower src_mac 02:b0:01:3e:da:36 dst_mac 02:c9:45:87:9c:41 vlan_id 116 vlan_ethtype ip src_ip 68.140.83.56 dst_ip 33.67.49.116 ip_proto tcp src_port 33379 dst_port 39957 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11083 flower src_mac 02:e0:dc:6a:ce:b9 dst_mac 02:f2:0b:d0:3b:99 vlan_id 2064 vlan_ethtype 0x0800 src_ip 105.166.93.224 dst_ip 99.16.137.171 ip_proto udp src_port 27954 dst_port 48060 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11084 flower src_mac 02:5b:5c:01:28:7c dst_mac 02:34:34:64:94:7d src_ip 122.172.110.91 dst_ip 125.45.199.170 ip_proto tcp src_port 3330 dst_port 28110 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11085 flower src_mac 02:13:6f:05:2d:d0 dst_mac 02:9c:a1:60:54:03 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11086 flower src_mac 02:d1:4a:cf:65:a1 dst_mac 02:9e:3b:33:37:ec vlan_id 1652 vlan_ethtype 0x0800 src_ip 36.153.215.35 dst_ip 77.36.77.182 action pass && tc filter add dev swp33 ingress protocol ip pref 11087 flower src_mac 02:9e:74:00:49:ec dst_mac 02:d5:fe:95:01:46 src_ip 106.244.71.246 dst_ip 110.121.91.46 ip_proto tcp src_port 3197 dst_port 45772 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11088 flower src_mac 02:7a:24:1c:ee:6d dst_mac 02:9f:39:87:89:31 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11089 flower src_mac 02:2d:2f:f6:45:39 dst_mac 02:33:d2:b6:39:27 vlan_id 1588 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11090 flower src_mac 02:70:fa:9a:0a:ed dst_mac 02:d0:6c:95:fe:7f vlan_id 2459 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11091 flower src_mac 02:01:d5:bb:d8:0b dst_mac 02:74:b7:20:81:25 vlan_id 2817 vlan_ethtype ip src_ip 116.37.133.181 dst_ip 15.87.162.198 action pass && tc filter add dev swp33 ingress protocol ip pref 11092 flower src_mac 02:ee:6b:21:17:41 dst_mac 02:b0:27:fd:9c:08 src_ip 92.189.74.182 dst_ip 112.3.146.37 ip_proto icmp code 31 type 16 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11093 flower src_mac 02:0f:01:15:3d:f1 dst_mac 02:47:57:ce:0d:97 vlan_id 3555 vlan_ethtype 0x0800 src_ip 40.12.111.18 dst_ip 65.90.245.75 ip_proto tcp src_port 41219 dst_port 47082 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11094 flower src_mac 02:4a:26:c2:cc:89 dst_mac 02:2b:9d:e2:a0:f1 vlan_id 1002 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11095 flower src_mac 02:90:b0:92:43:c9 dst_mac 02:69:2e:af:42:80 vlan_id 2446 vlan_ethtype ipv4 src_ip 40.157.83.111 dst_ip 43.211.169.203 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11096 flower src_mac 02:94:9b:1b:a7:7a dst_mac 02:e9:81:bf:f5:75 vlan_id 3563 vlan_ethtype 0x0800 src_ip 40.236.136.151 dst_ip 83.170.175.3 ip_proto tcp src_port 53301 dst_port 51443 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11097 flower src_mac 02:d1:43:01:97:1d dst_mac 02:43:ac:d3:41:66 vlan_id 42 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11098 flower src_mac 02:8d:be:6c:7d:99 dst_mac 02:4c:90:e0:ff:87 src_ip 13.135.246.8 dst_ip 72.186.177.85 ip_proto udp src_port 8239 dst_port 28116 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11099 flower src_mac 02:6f:d0:4c:29:21 dst_mac 02:81:26:5f:6e:c1 vlan_id 2105 vlan_ethtype ipv4 src_ip 57.80.164.2 dst_ip 86.122.124.57 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11100 flower src_mac 02:04:ed:fd:61:53 dst_mac 02:e0:07:b3:0b:36 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11101 flower src_mac 02:8a:8a:27:78:3a dst_mac 02:b1:28:09:6d:95 vlan_id 1011 vlan_ethtype ipv4 src_ip 126.239.200.94 dst_ip 32.52.141.196 ip_proto udp src_port 3182 dst_port 31880 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11102 flower src_mac 02:f3:83:59:b3:26 dst_mac 02:e4:27:b5:57:61 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11103 flower src_mac 02:b4:4c:f2:0f:86 dst_mac 02:35:fb:05:cf:1e action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11104 flower src_mac 02:f6:87:90:7c:dd dst_mac 02:22:41:15:e1:91 src_ip 81.40.30.95 dst_ip 122.221.245.132 ip_proto icmp code 250 type 14 action trap && tc filter add dev swp33 ingress protocol ip pref 11105 flower src_mac 02:23:ab:b2:44:0f dst_mac 02:e9:08:52:ac:69 src_ip 29.160.205.113 dst_ip 108.106.126.57 ip_proto icmp code 118 type 11 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11106 flower src_mac 02:ec:65:d1:36:8b dst_mac 02:c9:eb:65:cb:a6 vlan_id 3485 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11107 flower src_mac 02:e9:5f:60:73:63 dst_mac 02:cc:1f:bc:c8:9d vlan_id 1470 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11108 flower src_mac 02:26:77:56:53:4f dst_mac 02:f8:57:a0:53:15 vlan_id 841 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11109 flower src_mac 02:95:8f:4d:a2:b3 dst_mac 02:ca:35:a4:f3:8b action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11110 flower src_mac 02:76:24:99:bd:1a dst_mac 02:fd:11:e3:86:4d vlan_id 2666 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11111 flower src_mac 02:75:ef:fc:52:c2 dst_mac 02:25:39:32:46:74 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11112 flower src_mac 02:88:f8:11:66:9f dst_mac 02:a1:c0:d2:61:2e vlan_id 1286 vlan_ethtype ip src_ip 117.157.97.22 dst_ip 101.143.164.73 ip_proto udp src_port 63058 dst_port 20294 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11113 flower src_mac 02:2e:f7:c8:33:c3 dst_mac 02:d8:38:e2:3e:b7 src_ip 95.21.37.37 dst_ip 48.63.29.229 ip_proto tcp src_port 28593 dst_port 14418 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11114 flower src_mac 02:b6:ae:c0:a0:75 dst_mac 02:1c:37:eb:5b:7b action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11115 flower src_mac 02:a1:0d:91:66:ef dst_mac 02:0c:68:21:1a:ee vlan_id 900 vlan_ethtype ip src_ip 91.61.102.16 dst_ip 86.167.38.212 ip_proto tcp src_port 39511 dst_port 16205 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11116 flower src_mac 02:af:75:b1:8c:18 dst_mac 02:35:8a:96:bd:c7 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11117 flower src_mac 02:da:40:4a:b7:c8 dst_mac 02:87:a2:8d:b5:74 src_ip 59.168.104.101 dst_ip 122.99.171.200 ip_proto tcp src_port 16267 dst_port 7707 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11118 flower src_mac 02:35:90:ab:a0:e6 dst_mac 02:8f:a4:11:35:e5 vlan_id 981 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11119 flower src_mac 02:ef:38:47:9c:75 dst_mac 02:c6:76:5e:fd:77 vlan_id 2882 vlan_ethtype ipv4 src_ip 58.203.43.15 dst_ip 77.72.211.87 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11120 flower src_mac 02:3c:aa:a3:3e:e7 dst_mac 02:d0:48:47:e7:59 vlan_id 2477 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11121 flower src_mac 02:99:4e:0f:fa:ea dst_mac 02:35:22:fc:89:3a vlan_id 3030 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11122 flower src_mac 02:53:40:67:35:03 dst_mac 02:f9:08:ad:4c:da vlan_id 1286 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11123 flower src_mac 02:1e:ac:59:1d:d0 dst_mac 02:14:4c:01:71:90 vlan_id 2464 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11124 flower src_mac 02:f6:35:4e:9a:c0 dst_mac 02:c6:fe:98:61:e6 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11125 flower src_mac 02:7b:43:17:35:11 dst_mac 02:0e:66:d6:6d:28 vlan_id 3021 vlan_ethtype 0x0800 src_ip 105.226.18.169 dst_ip 29.60.31.9 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11126 flower src_mac 02:a0:35:96:88:19 dst_mac 02:65:3e:0c:10:22 vlan_id 3271 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11127 flower src_mac 02:8a:d8:75:fc:3d dst_mac 02:cc:27:e8:0c:cc vlan_id 2589 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11128 flower src_mac 02:c8:68:f7:4c:e4 dst_mac 02:bd:b7:14:2d:f1 vlan_id 3997 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11129 flower src_mac 02:a3:b9:bc:f8:dc dst_mac 02:5f:8d:69:65:00 src_ip 31.129.119.147 dst_ip 92.204.51.194 ip_proto udp src_port 32414 dst_port 45658 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11130 flower src_mac 02:6f:6a:87:6e:17 dst_mac 02:0f:4d:af:e9:50 src_ip 35.189.49.93 dst_ip 65.165.182.32 ip_proto tcp src_port 55347 dst_port 45404 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11131 flower src_mac 02:4a:82:66:71:7e dst_mac 02:d7:a6:89:1e:0f src_ip 89.77.56.116 dst_ip 97.136.168.135 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11132 flower src_mac 02:38:a5:67:4d:74 dst_mac 02:9a:4b:64:97:fd vlan_id 3697 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11133 flower src_mac 02:5c:fa:64:76:52 dst_mac 02:51:5b:0b:9a:11 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11134 flower src_mac 02:28:69:5d:be:76 dst_mac 02:ca:6a:08:41:ab action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11135 flower src_mac 02:b7:7a:87:65:57 dst_mac 02:5f:e1:cc:fe:b4 vlan_id 4 vlan_ethtype ipv4 src_ip 94.177.50.81 dst_ip 46.182.30.213 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11136 flower src_mac 02:b0:6f:dd:e5:e3 dst_mac 02:c4:1a:1d:ea:9a vlan_id 1378 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11137 flower src_mac 02:7b:d4:8c:b8:19 dst_mac 02:43:ef:f7:43:1e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11138 flower src_mac 02:1d:ee:d8:c1:25 dst_mac 02:de:78:d4:10:6d vlan_id 3038 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11139 flower src_mac 02:5f:6c:aa:af:44 dst_mac 02:a0:1a:3a:05:7e vlan_id 2947 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11140 flower src_mac 02:da:a8:9e:41:19 dst_mac 02:1a:e4:85:44:88 src_ip 67.225.206.246 dst_ip 75.160.124.121 ip_proto icmp code 27 type 4 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11141 flower src_mac 02:45:75:eb:66:55 dst_mac 02:df:4c:52:f6:d2 vlan_id 2439 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11142 flower src_mac 02:51:f0:7e:36:4e dst_mac 02:6b:58:e6:fe:83 src_ip 51.61.142.50 dst_ip 47.165.56.72 ip_proto udp src_port 28510 dst_port 19401 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11143 flower src_mac 02:ec:ef:87:34:93 dst_mac 02:28:b6:20:1c:ec vlan_id 2522 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11144 flower src_mac 02:1f:fb:fa:c1:a3 dst_mac 02:48:df:db:10:83 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11145 flower src_mac 02:d7:09:14:f3:10 dst_mac 02:5f:e2:17:97:34 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11146 flower src_mac 02:00:72:23:5f:bb dst_mac 02:73:72:50:fc:a8 vlan_id 146 vlan_ethtype 0x0800 src_ip 54.187.70.121 dst_ip 18.83.253.189 ip_proto tcp src_port 9661 dst_port 35029 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11147 flower src_mac 02:1e:50:d2:1b:25 dst_mac 02:eb:71:1f:62:aa action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11148 flower src_mac 02:c7:6d:46:a4:e3 dst_mac 02:89:f4:29:d0:96 src_ip 29.200.209.134 dst_ip 98.196.5.25 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11149 flower src_mac 02:96:1f:c2:e5:54 dst_mac 02:80:96:e1:df:72 src_ip 52.145.250.47 dst_ip 89.58.246.126 ip_proto udp src_port 45444 dst_port 17715 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11150 flower src_mac 02:45:ba:a2:c6:9a dst_mac 02:93:5a:30:84:81 vlan_id 3667 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11151 flower src_mac 02:f7:9c:c9:6b:ed dst_mac 02:2c:3c:81:37:a3 action trap && tc filter add dev swp33 ingress protocol ip pref 11152 flower src_mac 02:96:da:f6:95:7f dst_mac 02:f2:30:76:36:72 src_ip 125.80.36.166 dst_ip 29.227.102.164 ip_proto tcp src_port 33875 dst_port 43209 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11153 flower src_mac 02:42:a7:5f:db:39 dst_mac 02:e7:d8:ce:9e:53 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11154 flower src_mac 02:9b:c5:c6:cf:23 dst_mac 02:06:df:5a:0f:53 action trap && tc filter add dev swp33 ingress protocol ip pref 11155 flower src_mac 02:5a:2b:bf:d5:57 dst_mac 02:6c:16:15:fb:ce src_ip 87.140.165.227 dst_ip 72.151.38.197 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11156 flower src_mac 02:95:69:4b:a7:f2 dst_mac 02:62:e6:6f:06:e0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11157 flower src_mac 02:e9:97:10:fb:92 dst_mac 02:29:36:92:d7:c8 vlan_id 2616 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11158 flower src_mac 02:52:e7:da:1e:20 dst_mac 02:cf:cb:3b:be:ef src_ip 70.120.39.4 dst_ip 122.93.193.113 ip_proto udp src_port 37916 dst_port 26148 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11159 flower src_mac 02:35:67:89:a0:db dst_mac 02:30:c7:14:fb:e1 vlan_id 3089 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11160 flower src_mac 02:8d:a2:cf:60:4c dst_mac 02:7b:82:ea:7a:dc src_ip 125.176.71.39 dst_ip 11.148.101.150 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11161 flower src_mac 02:f6:07:59:1b:4f dst_mac 02:93:5d:ef:ac:68 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11162 flower src_mac 02:d7:66:ad:70:56 dst_mac 02:cd:44:ea:34:2e src_ip 72.38.69.207 dst_ip 59.188.32.175 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11163 flower src_mac 02:71:33:95:f9:f9 dst_mac 02:13:c2:40:5c:02 action trap && tc filter add dev swp33 ingress protocol ip pref 11164 flower src_mac 02:dd:f7:b2:d1:b7 dst_mac 02:7d:9a:ea:67:da src_ip 83.181.20.28 dst_ip 13.164.171.111 ip_proto udp src_port 44766 dst_port 35572 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11165 flower src_mac 02:5b:61:ca:e6:9a dst_mac 02:42:41:53:99:da action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11166 flower src_mac 02:3a:70:90:24:67 dst_mac 02:ce:33:0f:17:b6 src_ip 29.43.203.34 dst_ip 37.36.202.227 ip_proto udp src_port 53955 dst_port 11713 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11167 flower src_mac 02:48:96:0c:3f:38 dst_mac 02:10:10:ec:4b:42 vlan_id 753 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11168 flower src_mac 02:26:36:7c:8c:a3 dst_mac 02:6e:a8:23:21:bf src_ip 15.133.72.35 dst_ip 122.207.128.2 ip_proto udp src_port 51783 dst_port 56842 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11169 flower src_mac 02:f2:6a:b3:93:fe dst_mac 02:9e:af:d5:ed:8f vlan_id 3790 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11170 flower src_mac 02:1c:18:c7:3a:61 dst_mac 02:b1:6a:b4:7a:ce vlan_id 1608 vlan_ethtype ipv4 src_ip 59.7.148.213 dst_ip 65.130.244.52 ip_proto udp src_port 19049 dst_port 32492 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11171 flower src_mac 02:d1:ea:9f:3e:2b dst_mac 02:55:b7:67:67:91 vlan_id 2286 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11172 flower src_mac 02:b0:f1:80:26:8c dst_mac 02:cd:d6:dd:00:26 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11173 flower src_mac 02:91:f5:06:20:f3 dst_mac 02:39:ab:67:a9:cb vlan_id 1424 vlan_ethtype ip src_ip 92.17.4.107 dst_ip 89.57.141.35 ip_proto tcp src_port 49309 dst_port 35568 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11174 flower src_mac 02:e2:ad:78:5e:78 dst_mac 02:0d:ff:d7:f4:9a src_ip 14.89.222.241 dst_ip 105.183.214.6 ip_proto udp src_port 51390 dst_port 17555 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11175 flower src_mac 02:7b:85:5f:19:9f dst_mac 02:71:fa:80:15:7e src_ip 122.201.216.3 dst_ip 68.217.211.44 ip_proto tcp src_port 55789 dst_port 30288 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11176 flower src_mac 02:cc:6a:77:ae:c2 dst_mac 02:a0:9b:68:be:ec vlan_id 1167 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11177 flower src_mac 02:5d:f4:d0:45:63 dst_mac 02:40:0b:ef:6b:f7 vlan_id 2751 vlan_ethtype 0x0800 src_ip 64.200.239.212 dst_ip 39.182.80.86 ip_proto udp src_port 62486 dst_port 1550 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11178 flower src_mac 02:97:60:9d:ba:63 dst_mac 02:33:e7:52:57:63 vlan_id 585 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11179 flower src_mac 02:12:1f:7b:5e:f4 dst_mac 02:3a:3d:d4:3a:b6 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11180 flower src_mac 02:c8:fc:4b:c6:86 dst_mac 02:7c:56:65:f5:90 vlan_id 2081 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11181 flower src_mac 02:e6:1a:b2:ed:b2 dst_mac 02:a1:5d:c5:c1:16 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11182 flower src_mac 02:9c:97:62:83:22 dst_mac 02:01:b4:01:9c:a1 vlan_id 2517 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11183 flower src_mac 02:72:64:0b:09:bb dst_mac 02:0b:79:67:98:6d vlan_id 3739 vlan_ethtype 0x0800 src_ip 117.106.112.84 dst_ip 87.104.129.98 ip_proto udp src_port 10604 dst_port 49858 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11184 flower src_mac 02:f3:6e:70:83:50 dst_mac 02:6c:29:84:b4:af action trap && tc filter add dev swp33 ingress protocol ip pref 11185 flower src_mac 02:12:ad:21:92:b6 dst_mac 02:fa:50:f8:c4:5a src_ip 61.52.59.133 dst_ip 108.97.37.35 ip_proto tcp src_port 12126 dst_port 23262 action drop && tc filter add dev swp33 ingress protocol ip pref 11186 flower src_mac 02:90:3c:30:a8:30 dst_mac 02:e9:aa:9c:80:6c src_ip 31.29.228.46 dst_ip 35.242.76.15 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11187 flower src_mac 02:4a:08:06:46:4d dst_mac 02:6c:2b:b2:3c:bd vlan_id 1064 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11188 flower src_mac 02:6f:6f:36:21:a1 dst_mac 02:2b:2a:f0:20:16 src_ip 49.230.140.249 dst_ip 35.141.245.229 ip_proto icmp code 41 type 5 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11189 flower src_mac 02:0b:de:26:f4:83 dst_mac 02:8b:05:be:28:06 src_ip 48.76.25.143 dst_ip 37.212.107.140 ip_proto udp src_port 55154 dst_port 44299 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11190 flower src_mac 02:8e:d6:53:b8:f6 dst_mac 02:b8:8a:1d:16:00 vlan_id 2933 vlan_ethtype ipv4 src_ip 13.152.220.162 dst_ip 35.150.86.29 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11191 flower src_mac 02:e8:96:c1:60:24 dst_mac 02:5f:79:19:d7:0c src_ip 82.30.208.113 dst_ip 53.106.4.113 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11192 flower src_mac 02:bb:09:05:82:2a dst_mac 02:21:a9:eb:06:e8 vlan_id 1497 vlan_ethtype 0x0800 src_ip 54.53.17.93 dst_ip 109.202.154.32 ip_proto udp src_port 37627 dst_port 53363 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11193 flower src_mac 02:f6:92:e8:aa:fa dst_mac 02:bb:e5:af:ef:76 vlan_id 1199 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11194 flower src_mac 02:8c:15:e2:55:f9 dst_mac 02:c2:a9:84:d0:b7 src_ip 103.57.227.197 dst_ip 59.239.23.89 ip_proto tcp src_port 45226 dst_port 8258 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11195 flower src_mac 02:dc:1e:f8:89:d9 dst_mac 02:68:5c:c2:16:33 src_ip 113.44.34.139 dst_ip 18.84.138.163 ip_proto icmp code 162 type 3 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11196 flower src_mac 02:2b:62:7a:2a:24 dst_mac 02:f8:6e:27:41:13 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11197 flower src_mac 02:86:84:e6:b1:1c dst_mac 02:b8:e9:7a:f0:6d action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11198 flower src_mac 02:6b:d9:9d:bf:16 dst_mac 02:69:4f:99:d1:7a vlan_id 2217 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11199 flower src_mac 02:28:79:ea:85:d7 dst_mac 02:60:23:60:ae:7f vlan_id 3891 vlan_ethtype 0x9100 action pass INFO asyncssh:logging.py:92 [conn=24, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 11200 flower src_mac 02:19:b2:8d:e1:48 dst_mac 02:2f:e8:95:83:42 vlan_id 851 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11201 flower src_mac 02:59:c1:9e:21:2f dst_mac 02:85:43:f4:2a:37 vlan_id 604 vlan_ethtype ipv4 src_ip 125.21.24.96 dst_ip 89.75.225.189 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11202 flower src_mac 02:73:7c:73:6a:f4 dst_mac 02:4e:65:99:83:af vlan_id 387 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11203 flower src_mac 02:10:c2:88:fd:9c dst_mac 02:08:1f:e1:11:e3 vlan_id 4075 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11204 flower src_mac 02:49:a4:cf:4d:ed dst_mac 02:28:58:59:67:e9 vlan_id 1356 vlan_ethtype ipv4 src_ip 126.111.88.87 dst_ip 50.100.188.95 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11205 flower src_mac 02:b3:90:d7:31:e1 dst_mac 02:d8:6d:af:70:fb vlan_id 3486 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 11206 flower src_mac 02:5b:db:aa:6b:1a dst_mac 02:c7:40:74:6f:b5 src_ip 12.86.211.63 dst_ip 48.41.182.234 ip_proto tcp src_port 37929 dst_port 55570 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11207 flower src_mac 02:27:2f:01:fb:4d dst_mac 02:18:65:9d:f9:50 src_ip 60.120.69.154 dst_ip 98.53.102.137 ip_proto icmp code 227 type 8 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11208 flower src_mac 02:2d:2f:9c:02:31 dst_mac 02:b9:71:5d:4a:6d src_ip 32.27.209.11 dst_ip 95.1.102.46 ip_proto icmp code 116 type 15 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11209 flower src_mac 02:16:03:63:67:0e dst_mac 02:0a:26:9e:7b:d4 vlan_id 1111 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11210 flower src_mac 02:e3:1e:e1:44:9f dst_mac 02:59:a1:b4:ea:34 vlan_id 1600 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11211 flower src_mac 02:d1:92:72:1e:2a dst_mac 02:f7:13:c4:ee:ee vlan_id 3602 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11212 flower src_mac 02:5b:70:2c:e2:35 dst_mac 02:66:aa:4f:58:37 src_ip 50.159.241.42 dst_ip 26.254.215.237 ip_proto icmp code 1 type 8 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11213 flower src_mac 02:cb:da:0c:61:b4 dst_mac 02:e7:a4:04:86:c7 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11214 flower src_mac 02:4f:fa:64:80:bb dst_mac 02:de:03:f1:39:76 vlan_id 2509 vlan_ethtype ipv4 src_ip 109.144.244.141 dst_ip 17.20.12.193 ip_proto tcp src_port 33785 dst_port 64506 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11215 flower src_mac 02:43:86:69:93:32 dst_mac 02:36:4b:57:47:9f vlan_id 1764 vlan_ethtype ip src_ip 79.99.145.81 dst_ip 119.8.14.158 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11216 flower src_mac 02:cc:eb:f0:bf:6a dst_mac 02:8d:97:31:c5:34 vlan_id 2191 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11217 flower src_mac 02:db:74:ad:1b:de dst_mac 02:ab:d1:b6:63:c3 vlan_id 120 vlan_ethtype ip src_ip 80.203.42.185 dst_ip 93.244.109.70 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11218 flower src_mac 02:36:16:77:71:70 dst_mac 02:3d:59:6f:99:f1 src_ip 116.222.41.41 dst_ip 74.70.167.124 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11219 flower src_mac 02:0b:b4:8e:8b:88 dst_mac 02:4d:3c:55:0d:9c vlan_id 526 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11220 flower src_mac 02:e4:3e:55:ee:e8 dst_mac 02:91:de:ed:f6:e8 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11221 flower src_mac 02:a8:cf:ae:e7:78 dst_mac 02:66:86:66:4c:5c src_ip 50.201.52.225 dst_ip 113.136.68.153 ip_proto icmp code 88 type 8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11222 flower src_mac 02:a3:94:8d:09:c6 dst_mac 02:12:32:d4:c3:e3 vlan_id 3740 vlan_ethtype ipv4 src_ip 94.191.27.78 dst_ip 124.15.12.169 ip_proto udp src_port 48045 dst_port 54631 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11223 flower src_mac 02:be:f0:18:eb:5b dst_mac 02:ac:69:b6:db:56 vlan_id 2209 vlan_ethtype ipv4 src_ip 61.110.229.66 dst_ip 92.88.65.172 ip_proto tcp src_port 49739 dst_port 23297 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11224 flower src_mac 02:c2:4b:b0:fc:a7 dst_mac 02:57:4d:58:95:4e vlan_id 2485 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11225 flower src_mac 02:55:73:f1:34:2b dst_mac 02:9d:11:f5:63:03 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11226 flower src_mac 02:54:8e:64:3d:49 dst_mac 02:ae:96:8a:1c:bb src_ip 16.135.227.224 dst_ip 16.60.232.167 ip_proto icmp code 49 type 15 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11227 flower src_mac 02:e9:2c:14:86:78 dst_mac 02:4c:80:05:5a:d9 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11228 flower src_mac 02:c5:a1:55:41:39 dst_mac 02:a6:07:21:fe:7b action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11229 flower src_mac 02:8a:56:8b:10:c1 dst_mac 02:9b:82:fe:75:05 vlan_id 1507 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11230 flower src_mac 02:48:88:a5:97:19 dst_mac 02:3e:b2:54:b1:6c vlan_id 3905 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11231 flower src_mac 02:ab:2d:3d:07:37 dst_mac 02:5b:38:f2:70:92 vlan_id 1174 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11232 flower src_mac 02:00:32:6b:83:5d dst_mac 02:54:f5:c2:53:cc action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11233 flower src_mac 02:ad:2c:51:1d:21 dst_mac 02:83:8a:e6:7a:3e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11234 flower src_mac 02:cb:7d:bb:d0:3c dst_mac 02:3c:c0:48:2f:b6 vlan_id 1716 vlan_ethtype ipv4 src_ip 68.87.79.35 dst_ip 83.78.137.46 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11235 flower src_mac 02:2c:2f:3a:be:6d dst_mac 02:2b:fe:a4:8a:38 src_ip 78.191.121.168 dst_ip 49.133.85.165 ip_proto udp src_port 22966 dst_port 9362 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11236 flower src_mac 02:4f:1b:b6:f6:59 dst_mac 02:0f:7f:5d:57:c3 vlan_id 254 vlan_ethtype ip src_ip 86.141.120.39 dst_ip 36.106.167.82 ip_proto udp src_port 26169 dst_port 31346 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11237 flower src_mac 02:f2:5b:b3:de:5d dst_mac 02:c3:51:10:c1:27 vlan_id 3256 vlan_ethtype 0x0800 src_ip 75.254.15.245 dst_ip 15.138.115.238 ip_proto tcp src_port 1582 dst_port 17877 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11238 flower src_mac 02:79:88:18:a4:d0 dst_mac 02:75:64:3c:6f:93 vlan_id 1677 vlan_ethtype 0x0800 src_ip 81.196.230.158 dst_ip 122.107.145.129 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11239 flower src_mac 02:9c:33:93:73:1f dst_mac 02:f2:37:af:3a:81 vlan_id 2762 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11240 flower src_mac 02:37:a8:38:a5:1e dst_mac 02:86:05:b4:da:05 vlan_id 1989 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11241 flower src_mac 02:0c:1d:75:13:94 dst_mac 02:ed:f4:17:7c:e2 vlan_id 1693 vlan_ethtype ip src_ip 12.58.18.246 dst_ip 118.173.25.145 ip_proto udp src_port 47638 dst_port 32698 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11242 flower src_mac 02:40:4b:28:25:09 dst_mac 02:2f:16:2d:b4:ea src_ip 60.182.217.135 dst_ip 112.117.20.63 ip_proto icmp code 172 type 0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11243 flower src_mac 02:6b:9d:ce:0c:29 dst_mac 02:29:68:20:b4:40 vlan_id 3311 vlan_ethtype ipv4 src_ip 29.102.129.126 dst_ip 111.38.234.92 ip_proto udp src_port 2807 dst_port 20922 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11244 flower src_mac 02:db:c2:33:3c:d1 dst_mac 02:98:d2:2c:1e:66 vlan_id 136 vlan_ethtype 0x0800 src_ip 45.6.71.73 dst_ip 106.155.82.122 ip_proto udp src_port 24075 dst_port 33653 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11245 flower src_mac 02:f2:27:cf:53:4b dst_mac 02:35:4c:a0:d0:77 vlan_id 1880 vlan_ethtype ipv4 src_ip 90.21.148.146 dst_ip 91.205.76.132 ip_proto udp src_port 18923 dst_port 2963 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11246 flower src_mac 02:4e:59:49:81:e7 dst_mac 02:dd:f5:14:fb:c7 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11247 flower src_mac 02:16:2e:e3:ba:4f dst_mac 02:c6:76:22:fd:7c src_ip 118.8.94.52 dst_ip 86.243.57.198 ip_proto udp src_port 40087 dst_port 18927 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11248 flower src_mac 02:c0:62:d1:3e:21 dst_mac 02:9e:b8:9a:a3:20 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11249 flower src_mac 02:5f:42:fe:4e:f8 dst_mac 02:f9:d1:5f:23:f7 vlan_id 1556 vlan_ethtype ipv4 src_ip 37.175.189.65 dst_ip 52.62.60.42 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11250 flower src_mac 02:d7:36:a8:09:a8 dst_mac 02:01:94:fb:2a:f2 vlan_id 1553 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11251 flower src_mac 02:a4:b0:e3:b9:ee dst_mac 02:47:dd:a5:a7:45 src_ip 62.33.26.75 dst_ip 107.216.76.218 ip_proto icmp code 225 type 11 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11252 flower src_mac 02:84:7e:46:de:22 dst_mac 02:65:1e:6b:28:ba action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11253 flower src_mac 02:d3:4c:ad:c0:b3 dst_mac 02:45:56:c0:fa:6d action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11254 flower src_mac 02:60:ef:fb:a6:ce dst_mac 02:ae:04:b9:f9:d6 vlan_id 3980 vlan_ethtype 0x0800 src_ip 33.63.106.20 dst_ip 45.28.27.101 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11255 flower src_mac 02:89:5d:95:86:e8 dst_mac 02:5d:79:7d:d7:0e src_ip 43.194.191.166 dst_ip 42.104.108.178 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11256 flower src_mac 02:90:d0:98:ab:01 dst_mac 02:dd:83:67:fe:01 vlan_id 3378 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11257 flower src_mac 02:4c:4c:b7:5d:bf dst_mac 02:f8:84:6e:61:db src_ip 22.193.182.190 dst_ip 31.193.86.233 ip_proto udp src_port 62722 dst_port 50994 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11258 flower src_mac 02:0d:44:7b:1b:6a dst_mac 02:f9:19:9f:2c:5c src_ip 105.224.150.30 dst_ip 31.132.1.18 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11259 flower src_mac 02:65:58:71:ae:67 dst_mac 02:38:bb:46:7b:15 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11260 flower src_mac 02:b2:3c:8d:92:c6 dst_mac 02:87:e1:54:0a:3b vlan_id 2498 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11261 flower src_mac 02:4e:d8:c2:22:fc dst_mac 02:47:4f:01:99:0f action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11262 flower src_mac 02:27:fa:e4:f2:37 dst_mac 02:af:f9:33:79:52 vlan_id 3673 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11263 flower src_mac 02:64:ce:d5:7c:a6 dst_mac 02:70:13:d5:41:4f action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11264 flower src_mac 02:e3:a0:37:fb:85 dst_mac 02:b9:2f:12:f7:df action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11265 flower src_mac 02:e3:10:19:b2:ec dst_mac 02:ee:05:6a:3b:f6 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11266 flower src_mac 02:6c:b8:ac:ee:30 dst_mac 02:34:dc:d8:29:6f action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11267 flower src_mac 02:e8:9b:c4:b0:8b dst_mac 02:72:52:0b:c6:56 vlan_id 222 vlan_ethtype 0x0800 src_ip 80.251.45.149 dst_ip 46.82.115.182 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11268 flower src_mac 02:81:6f:34:a9:a7 dst_mac 02:dc:2c:34:13:3f vlan_id 3669 vlan_ethtype 0x0800 src_ip 117.226.15.225 dst_ip 28.141.37.13 ip_proto tcp src_port 21959 dst_port 58054 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11269 flower src_mac 02:ee:7f:d6:34:08 dst_mac 02:02:4c:0a:59:17 vlan_id 4005 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11270 flower src_mac 02:98:8c:16:a8:b6 dst_mac 02:08:83:7c:da:a3 src_ip 121.127.20.48 dst_ip 109.50.40.69 ip_proto tcp src_port 55596 dst_port 35132 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11271 flower src_mac 02:bb:89:53:fe:1c dst_mac 02:ad:1b:c4:dc:5e action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11272 flower src_mac 02:f5:93:12:23:1c dst_mac 02:cc:8a:06:84:fd src_ip 93.39.67.199 dst_ip 35.251.202.159 ip_proto udp src_port 54063 dst_port 8026 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11273 flower src_mac 02:3d:27:10:c9:fc dst_mac 02:41:96:d5:0a:9c src_ip 35.166.31.79 dst_ip 35.228.110.94 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11274 flower src_mac 02:65:98:0b:a1:3b dst_mac 02:dc:c3:fd:6b:a4 vlan_id 1980 vlan_ethtype ip src_ip 102.1.236.232 dst_ip 67.39.54.185 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11275 flower src_mac 02:86:fd:28:b5:19 dst_mac 02:c9:96:c9:f5:ec vlan_id 2104 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11276 flower src_mac 02:2d:81:c6:c3:32 dst_mac 02:80:f9:cf:71:43 vlan_id 3326 vlan_ethtype ip src_ip 111.70.92.50 dst_ip 15.35.49.218 ip_proto tcp src_port 39832 dst_port 42668 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11277 flower src_mac 02:12:6a:1d:2f:18 dst_mac 02:95:ab:dd:b1:66 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11278 flower src_mac 02:ca:88:6f:24:e8 dst_mac 02:d7:8b:ea:b6:72 src_ip 59.125.181.165 dst_ip 51.241.213.104 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11279 flower src_mac 02:ce:b3:df:19:a0 dst_mac 02:1e:92:77:d3:48 vlan_id 301 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11280 flower src_mac 02:cd:fa:04:a6:10 dst_mac 02:76:1f:95:3a:d6 src_ip 28.112.91.112 dst_ip 56.7.111.214 ip_proto tcp src_port 22863 dst_port 11190 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11281 flower src_mac 02:ae:75:22:24:92 dst_mac 02:b1:07:d7:92:07 vlan_id 3874 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11282 flower src_mac 02:3d:f2:42:03:69 dst_mac 02:d2:eb:3c:fd:b9 vlan_id 3191 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11283 flower src_mac 02:bd:12:aa:6f:87 dst_mac 02:22:0c:4e:5b:f1 vlan_id 1827 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11284 flower src_mac 02:1a:97:0b:3b:2e dst_mac 02:4e:7f:ef:2b:53 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11285 flower src_mac 02:16:b4:f0:67:09 dst_mac 02:d2:c6:89:53:d2 vlan_id 1546 vlan_ethtype 0x0800 src_ip 112.97.141.107 dst_ip 124.156.23.58 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11286 flower src_mac 02:91:a4:94:f5:6e dst_mac 02:4b:eb:ef:ef:24 vlan_id 2509 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 11287 flower src_mac 02:be:1f:90:13:0b dst_mac 02:e3:67:87:a6:0e src_ip 94.47.98.101 dst_ip 121.186.178.47 ip_proto tcp src_port 28655 dst_port 10601 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11288 flower src_mac 02:43:85:91:7d:af dst_mac 02:f7:1b:1d:e2:05 vlan_id 728 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11289 flower src_mac 02:e7:1d:50:d4:f8 dst_mac 02:23:4c:0a:83:7c vlan_id 1801 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11290 flower src_mac 02:ec:88:75:1b:ae dst_mac 02:7f:3e:25:13:81 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11291 flower src_mac 02:72:10:2c:75:4f dst_mac 02:0c:e0:97:fa:d7 vlan_id 768 vlan_ethtype ipv4 src_ip 114.94.83.15 dst_ip 61.119.151.22 ip_proto tcp src_port 35057 dst_port 12976 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11292 flower src_mac 02:a9:1a:83:c2:10 dst_mac 02:83:7b:f8:f1:3d src_ip 34.41.71.148 dst_ip 47.54.51.49 ip_proto udp src_port 25314 dst_port 61983 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11293 flower src_mac 02:fe:24:fa:6d:4c dst_mac 02:be:fa:04:1f:92 vlan_id 2289 vlan_ethtype 0x0800 src_ip 94.132.230.134 dst_ip 27.167.84.197 ip_proto tcp src_port 9859 dst_port 10749 action trap && tc filter add dev swp33 ingress protocol ip pref 11294 flower src_mac 02:df:26:58:a3:6f dst_mac 02:eb:96:0d:79:70 src_ip 110.216.214.71 dst_ip 40.52.97.86 ip_proto icmp code 94 type 3 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11295 flower src_mac 02:d5:97:78:3a:d0 dst_mac 02:e3:3b:d0:db:5b action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11296 flower src_mac 02:10:49:99:9b:dd dst_mac 02:e3:10:fe:8d:da action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11297 flower src_mac 02:7f:d7:1a:63:b4 dst_mac 02:f4:22:89:c8:ed vlan_id 2419 vlan_ethtype ipv4 src_ip 71.66.221.171 dst_ip 91.42.15.11 ip_proto udp src_port 53940 dst_port 29172 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11298 flower src_mac 02:eb:83:d4:fb:d3 dst_mac 02:b3:f6:21:8d:1f vlan_id 54 vlan_ethtype ip src_ip 100.31.127.1 dst_ip 27.255.171.46 ip_proto tcp src_port 23748 dst_port 27555 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11299 flower src_mac 02:c8:ab:6a:8f:b2 dst_mac 02:91:ea:d6:44:72 vlan_id 2460 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11300 flower src_mac 02:ae:ad:16:3e:76 dst_mac 02:fe:7b:19:a0:44 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11301 flower src_mac 02:d5:1a:0b:80:34 dst_mac 02:a5:42:fa:15:61 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11302 flower src_mac 02:80:79:82:0a:63 dst_mac 02:17:01:e0:9c:d3 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11303 flower src_mac 02:33:cf:c1:22:30 dst_mac 02:6c:a8:31:23:47 vlan_id 1027 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11304 flower src_mac 02:7f:b1:36:38:92 dst_mac 02:67:0b:d7:dc:15 vlan_id 3394 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11305 flower src_mac 02:b8:da:8e:d1:98 dst_mac 02:ba:65:fd:ee:df vlan_id 2996 vlan_ethtype ip src_ip 77.212.234.41 dst_ip 35.219.164.165 ip_proto tcp src_port 12748 dst_port 39239 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11306 flower src_mac 02:b7:4f:5e:57:53 dst_mac 02:53:6f:09:a4:24 vlan_id 3332 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11307 flower src_mac 02:a5:0e:50:bd:55 dst_mac 02:f8:15:9d:95:93 src_ip 62.130.114.12 dst_ip 21.165.178.144 ip_proto udp src_port 37576 dst_port 43790 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11308 flower src_mac 02:97:bf:7b:41:7f dst_mac 02:40:0d:33:a1:fb src_ip 119.118.111.153 dst_ip 118.5.247.190 ip_proto tcp src_port 57189 dst_port 11269 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11309 flower src_mac 02:67:3a:44:48:c8 dst_mac 02:8d:fe:35:2f:19 vlan_id 828 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11310 flower src_mac 02:f9:eb:67:f4:2a dst_mac 02:87:5c:97:6d:56 vlan_id 568 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11311 flower src_mac 02:40:9f:02:a7:71 dst_mac 02:e9:46:be:ad:7f vlan_id 2330 vlan_ethtype ip src_ip 66.51.33.102 dst_ip 74.175.34.179 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11312 flower src_mac 02:4f:a5:ce:61:cb dst_mac 02:a2:26:eb:66:08 vlan_id 490 vlan_ethtype 0x0800 src_ip 17.105.76.60 dst_ip 51.170.22.171 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11313 flower src_mac 02:3d:7c:61:75:6f dst_mac 02:7a:61:82:61:a5 src_ip 73.63.139.231 dst_ip 31.170.124.202 ip_proto udp src_port 32270 dst_port 30210 action drop && tc filter add dev swp33 ingress protocol ip pref 11314 flower src_mac 02:f5:48:6e:6b:e4 dst_mac 02:dc:af:92:16:b8 src_ip 45.122.249.94 dst_ip 81.92.202.216 ip_proto icmp code 27 type 13 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11315 flower src_mac 02:31:4b:76:67:9b dst_mac 02:12:c2:21:e7:8d vlan_id 3210 vlan_ethtype 0x0800 src_ip 50.171.131.149 dst_ip 54.160.182.38 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11316 flower src_mac 02:2b:0b:d0:94:f8 dst_mac 02:7b:d6:d7:d2:8b src_ip 54.144.180.199 dst_ip 26.61.117.197 ip_proto tcp src_port 47200 dst_port 11660 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11317 flower src_mac 02:4e:c0:76:41:6d dst_mac 02:f5:c7:13:1f:bc vlan_id 1507 vlan_ethtype ip src_ip 47.141.32.194 dst_ip 65.158.123.191 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11318 flower src_mac 02:d5:11:04:0e:d5 dst_mac 02:c4:e7:25:08:11 vlan_id 3392 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11319 flower src_mac 02:fd:64:c5:ca:b5 dst_mac 02:4f:56:52:eb:cf vlan_id 2575 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 11320 flower src_mac 02:74:42:e1:a9:49 dst_mac 02:3c:42:28:cc:0f src_ip 76.219.60.21 dst_ip 53.236.183.3 ip_proto icmp code 77 type 17 action trap && tc filter add dev swp33 ingress protocol ip pref 11321 flower src_mac 02:a2:45:c6:30:7c dst_mac 02:0a:1e:16:18:d4 src_ip 108.183.205.240 dst_ip 43.143.66.4 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11322 flower src_mac 02:8c:14:d5:84:01 dst_mac 02:7e:b0:ad:f8:4a action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11323 flower src_mac 02:2d:02:dd:b7:0f dst_mac 02:7e:72:0f:d7:37 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11324 flower src_mac 02:9b:b8:c8:e2:d5 dst_mac 02:23:1a:17:9f:06 vlan_id 1247 vlan_ethtype ipv4 src_ip 86.77.94.71 dst_ip 33.220.148.168 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11325 flower src_mac 02:f0:11:d4:7c:2a dst_mac 02:9c:30:2e:c0:e8 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11326 flower src_mac 02:a2:b7:0b:d3:28 dst_mac 02:9b:05:aa:c4:cd action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11327 flower src_mac 02:92:b9:0d:8f:4f dst_mac 02:b6:2b:fb:60:62 src_ip 18.51.154.150 dst_ip 69.195.231.71 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11328 flower src_mac 02:f9:3f:a7:68:6a dst_mac 02:4e:a4:e7:ae:42 vlan_id 3078 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11329 flower src_mac 02:6d:c7:f3:9d:ea dst_mac 02:e6:ac:7a:ea:75 vlan_id 3211 vlan_ethtype ip src_ip 25.59.27.126 dst_ip 75.201.152.19 action drop && tc filter add dev swp33 ingress protocol ip pref 11330 flower src_mac 02:ba:a6:53:62:58 dst_mac 02:9d:11:ac:64:ae src_ip 106.57.68.125 dst_ip 93.103.157.42 ip_proto tcp src_port 46854 dst_port 18874 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11331 flower src_mac 02:5b:1f:51:2c:51 dst_mac 02:96:29:96:54:28 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11332 flower src_mac 02:42:5e:9f:fe:1f dst_mac 02:3c:86:83:a9:20 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11333 flower src_mac 02:fa:5e:85:58:c9 dst_mac 02:97:1f:7d:82:9c src_ip 95.124.7.207 dst_ip 121.131.105.176 ip_proto tcp src_port 59797 dst_port 9867 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11334 flower src_mac 02:0b:67:57:75:da dst_mac 02:67:d5:6e:a5:4e vlan_id 3313 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11335 flower src_mac 02:32:92:91:a5:7a dst_mac 02:9c:9a:7a:eb:86 vlan_id 2630 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11336 flower src_mac 02:92:2b:e1:8a:f0 dst_mac 02:6b:65:db:32:b1 vlan_id 807 vlan_ethtype ip src_ip 50.146.159.215 dst_ip 111.188.102.68 ip_proto udp src_port 17203 dst_port 31191 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11337 flower src_mac 02:69:a3:fb:d8:2c dst_mac 02:b9:81:bf:4f:9f vlan_id 1907 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11338 flower src_mac 02:dc:cf:36:13:bf dst_mac 02:9e:7e:27:41:4d action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11339 flower src_mac 02:a7:87:65:1f:0d dst_mac 02:70:fd:75:13:27 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11340 flower src_mac 02:26:16:12:b4:f6 dst_mac 02:13:67:12:4a:ec vlan_id 2577 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11341 flower src_mac 02:9f:4a:6a:8a:f7 dst_mac 02:15:2d:46:56:46 src_ip 98.39.193.76 dst_ip 13.74.24.11 ip_proto icmp code 225 type 12 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11342 flower src_mac 02:ac:f8:48:53:70 dst_mac 02:1a:25:9a:68:22 vlan_id 921 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11343 flower src_mac 02:14:4b:06:4b:23 dst_mac 02:ae:cd:85:ab:82 vlan_id 98 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 11344 flower src_mac 02:3d:b2:ee:69:31 dst_mac 02:ca:39:40:f2:d0 src_ip 73.151.185.36 dst_ip 34.171.176.29 ip_proto tcp src_port 56906 dst_port 42707 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11345 flower src_mac 02:84:d1:ad:6d:a3 dst_mac 02:c6:7e:0a:b0:f2 src_ip 115.209.251.2 dst_ip 91.200.113.107 ip_proto icmp code 239 type 16 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11346 flower src_mac 02:b8:34:59:38:97 dst_mac 02:d1:7a:03:71:d5 vlan_id 1414 vlan_ethtype ip src_ip 68.60.113.52 dst_ip 53.58.227.94 action pass && tc filter add dev swp33 ingress protocol ip pref 11347 flower src_mac 02:1d:87:19:21:12 dst_mac 02:d9:5d:6d:40:22 src_ip 34.209.125.212 dst_ip 29.123.244.45 ip_proto udp src_port 24297 dst_port 52750 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11348 flower src_mac 02:6f:cb:56:0a:68 dst_mac 02:4b:ab:c1:06:66 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11349 flower src_mac 02:67:d1:e4:28:4f dst_mac 02:fa:f8:b3:83:87 src_ip 50.246.96.165 dst_ip 124.53.198.220 ip_proto icmp code 76 type 4 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11350 flower src_mac 02:4e:98:b2:4e:a0 dst_mac 02:6c:a0:15:a4:db action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11351 flower src_mac 02:3b:a3:8e:82:42 dst_mac 02:87:1c:88:77:75 action trap && tc filter add dev swp33 ingress protocol ip pref 11352 flower src_mac 02:74:a7:85:0a:f0 dst_mac 02:a2:d4:3c:c9:6a src_ip 31.51.117.237 dst_ip 24.7.5.59 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11353 flower src_mac 02:a3:55:cd:7c:f5 dst_mac 02:08:5c:ea:2b:17 vlan_id 2981 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11354 flower src_mac 02:4d:34:f6:ec:c0 dst_mac 02:be:60:bd:0a:6e vlan_id 1705 vlan_ethtype 0x0800 src_ip 52.78.77.147 dst_ip 104.11.210.50 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11355 flower src_mac 02:a6:af:61:31:3c dst_mac 02:b2:39:7d:41:d7 vlan_id 888 vlan_ethtype 0x0800 src_ip 85.87.30.77 dst_ip 91.153.58.102 ip_proto tcp src_port 36344 dst_port 11189 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11356 flower src_mac 02:77:45:36:b2:1e dst_mac 02:fc:f9:9d:b8:3f vlan_id 1105 vlan_ethtype 0x0800 src_ip 44.156.48.42 dst_ip 120.145.39.201 ip_proto udp src_port 63137 dst_port 35773 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11357 flower src_mac 02:cd:73:2b:df:bb dst_mac 02:9f:16:f1:3b:99 vlan_id 1209 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11358 flower src_mac 02:36:b1:69:9c:d6 dst_mac 02:af:7b:63:83:7c src_ip 103.57.156.206 dst_ip 87.177.24.23 ip_proto tcp src_port 62004 dst_port 5382 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11359 flower src_mac 02:e5:6c:47:28:c5 dst_mac 02:79:c5:be:9e:33 vlan_id 3901 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11360 flower src_mac 02:77:2a:77:c4:99 dst_mac 02:7e:eb:cb:bc:af action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11361 flower src_mac 02:24:c4:a6:d2:5b dst_mac 02:9d:f5:a7:47:ed src_ip 42.252.143.220 dst_ip 109.3.133.79 ip_proto icmp code 38 type 11 action pass && tc filter add dev swp33 ingress protocol ip pref 11362 flower src_mac 02:8c:33:68:ea:6e dst_mac 02:b8:78:dc:ef:db src_ip 111.80.130.167 dst_ip 83.159.219.9 ip_proto tcp src_port 38500 dst_port 43560 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11363 flower src_mac 02:e0:90:0e:75:3a dst_mac 02:3f:a0:45:fb:39 src_ip 109.64.50.139 dst_ip 36.132.235.209 ip_proto icmp code 139 type 15 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11364 flower src_mac 02:8a:2d:a0:0f:1e dst_mac 02:a2:6c:79:5c:a6 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11365 flower src_mac 02:f0:21:1f:ce:e0 dst_mac 02:bb:36:35:b5:1a action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11366 flower src_mac 02:cf:8d:4e:57:43 dst_mac 02:8e:11:49:91:21 vlan_id 3504 vlan_ethtype ip src_ip 126.189.184.155 dst_ip 85.159.89.225 ip_proto udp src_port 14 dst_port 49470 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11367 flower src_mac 02:3a:8b:5f:d6:6c dst_mac 02:fa:49:6a:2a:a5 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11368 flower src_mac 02:aa:03:2f:64:89 dst_mac 02:b1:c5:c8:21:a2 vlan_id 200 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11369 flower src_mac 02:20:3c:68:b8:d7 dst_mac 02:a0:58:33:ae:bc vlan_id 3936 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 11370 flower src_mac 02:b2:1b:a0:c4:50 dst_mac 02:b4:63:f5:34:11 src_ip 46.78.219.122 dst_ip 126.110.231.24 ip_proto tcp src_port 15360 dst_port 46605 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11371 flower src_mac 02:e9:76:4e:c2:35 dst_mac 02:69:d8:fe:68:34 vlan_id 3390 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11372 flower src_mac 02:64:c7:3a:47:93 dst_mac 02:a0:c5:f5:d4:e2 src_ip 15.170.124.130 dst_ip 89.108.157.165 ip_proto icmp code 178 type 0 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11373 flower src_mac 02:6e:48:0b:40:ff dst_mac 02:e1:e8:42:65:4a action drop && tc filter add dev swp33 ingress protocol ip pref 11374 flower src_mac 02:7b:b2:d7:f0:e4 dst_mac 02:04:b8:b2:ea:18 src_ip 54.175.237.185 dst_ip 50.103.249.157 ip_proto tcp src_port 23144 dst_port 61592 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11375 flower src_mac 02:40:3f:3d:9d:13 dst_mac 02:3f:69:ec:9b:20 action trap && tc filter add dev swp33 ingress protocol ip pref 11376 flower src_mac 02:72:f8:92:d9:19 dst_mac 02:6e:8f:e6:db:7a src_ip 80.191.234.121 dst_ip 65.206.36.19 ip_proto udp src_port 20101 dst_port 29207 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11377 flower src_mac 02:3e:94:d1:64:a7 dst_mac 02:5b:f1:ca:6a:a8 vlan_id 2060 vlan_ethtype 0x0800 src_ip 34.97.5.90 dst_ip 94.177.0.221 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11378 flower src_mac 02:88:10:ae:7c:b0 dst_mac 02:f9:a9:8f:a2:8c vlan_id 1670 vlan_ethtype ipv4 src_ip 103.85.225.103 dst_ip 81.76.23.202 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11379 flower src_mac 02:31:10:d6:5e:a8 dst_mac 02:a9:66:97:14:c8 vlan_id 843 vlan_ethtype 0x0800 src_ip 55.148.101.88 dst_ip 112.163.100.109 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11380 flower src_mac 02:38:d1:d8:c0:98 dst_mac 02:03:39:53:6d:76 vlan_id 1611 vlan_ethtype ip src_ip 126.221.88.187 dst_ip 59.134.68.23 action trap && tc filter add dev swp33 ingress protocol ip pref 11381 flower src_mac 02:b4:e0:6e:e8:73 dst_mac 02:d6:f7:08:37:9b src_ip 25.133.3.121 dst_ip 102.203.252.229 ip_proto icmp code 115 type 4 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11382 flower src_mac 02:e4:34:c5:54:53 dst_mac 02:1c:e4:35:64:11 src_ip 32.94.243.246 dst_ip 77.225.249.47 ip_proto tcp src_port 53170 dst_port 33027 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11383 flower src_mac 02:b6:6c:f9:62:ba dst_mac 02:c4:46:1c:0d:b0 src_ip 119.235.20.186 dst_ip 108.120.36.199 ip_proto tcp src_port 20853 dst_port 15771 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11384 flower src_mac 02:bc:60:fc:98:67 dst_mac 02:1c:36:0f:53:86 vlan_id 362 vlan_ethtype ip src_ip 77.55.100.136 dst_ip 76.80.153.205 ip_proto udp src_port 47938 dst_port 1961 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11385 flower src_mac 02:c5:23:9e:d2:b0 dst_mac 02:e2:c8:01:ef:58 vlan_id 925 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11386 flower src_mac 02:01:85:e5:54:b8 dst_mac 02:a8:c2:e5:49:2e src_ip 97.165.102.27 dst_ip 83.24.212.217 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11387 flower src_mac 02:28:cb:36:20:c5 dst_mac 02:bc:47:1a:47:dc action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11388 flower src_mac 02:30:b9:a6:a7:05 dst_mac 02:79:f2:cb:ed:3b vlan_id 789 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11389 flower src_mac 02:25:c4:7d:22:51 dst_mac 02:6e:e3:5b:20:12 src_ip 43.240.160.121 dst_ip 45.119.107.37 ip_proto icmp code 243 type 0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11390 flower src_mac 02:f6:55:bc:1f:e3 dst_mac 02:83:99:df:09:2b vlan_id 1973 vlan_ethtype ip src_ip 21.90.82.124 dst_ip 79.143.244.85 ip_proto udp src_port 11788 dst_port 39514 action pass && tc filter add dev swp33 ingress protocol ip pref 11391 flower src_mac 02:af:9f:a8:f3:77 dst_mac 02:3b:37:0e:02:63 src_ip 85.13.252.198 dst_ip 11.22.113.70 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11392 flower src_mac 02:f1:b8:39:d8:65 dst_mac 02:93:fc:95:46:ea action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11393 flower src_mac 02:ac:20:8b:c0:17 dst_mac 02:0f:e0:cc:2d:a3 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11394 flower src_mac 02:af:12:c6:6f:20 dst_mac 02:92:c2:67:00:63 vlan_id 472 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11395 flower src_mac 02:74:0a:7b:6f:70 dst_mac 02:ce:6d:6c:b5:ba vlan_id 2778 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11396 flower src_mac 02:ac:d0:a4:67:01 dst_mac 02:8e:b5:c7:38:f4 vlan_id 3142 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11397 flower src_mac 02:ad:f2:2a:fa:84 dst_mac 02:eb:4e:66:8d:d2 src_ip 34.200.36.158 dst_ip 101.218.116.28 ip_proto udp src_port 8017 dst_port 19363 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11398 flower src_mac 02:d8:05:b9:12:fa dst_mac 02:79:d1:ef:74:b9 vlan_id 810 vlan_ethtype 0x0800 src_ip 102.209.185.59 dst_ip 72.89.167.210 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11399 flower src_mac 02:94:c9:cd:3c:c5 dst_mac 02:12:3f:78:10:f8 vlan_id 1167 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11400 flower src_mac 02:e8:25:c0:34:12 dst_mac 02:90:1c:fa:b5:83 vlan_id 178 vlan_ethtype ip src_ip 52.227.30.235 dst_ip 14.0.95.178 ip_proto udp src_port 13837 dst_port 7947 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11401 flower src_mac 02:ac:67:bd:0a:4d dst_mac 02:5a:e6:d0:ae:83 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11402 flower src_mac 02:3f:7f:cc:74:85 dst_mac 02:51:52:1a:08:c4 vlan_id 3761 vlan_ethtype ip src_ip 67.236.28.110 dst_ip 11.187.146.239 ip_proto udp src_port 14501 dst_port 61770 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11403 flower src_mac 02:d3:75:1e:8c:6f dst_mac 02:e3:12:81:a2:c8 src_ip 113.13.156.217 dst_ip 109.13.129.161 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11404 flower src_mac 02:6d:b3:3e:4a:8d dst_mac 02:07:00:53:ca:23 vlan_id 1585 vlan_ethtype 0x0800 src_ip 33.18.79.28 dst_ip 17.12.32.223 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11405 flower src_mac 02:bb:96:a5:97:05 dst_mac 02:64:af:5d:70:f0 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11406 flower src_mac 02:8e:f2:bb:dc:fe dst_mac 02:e5:44:59:52:4e action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11407 flower src_mac 02:43:3a:a6:ac:f4 dst_mac 02:6e:cc:f0:80:4d action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11408 flower src_mac 02:f1:22:dc:04:5a dst_mac 02:3b:a7:b7:37:98 src_ip 50.44.114.98 dst_ip 106.30.91.203 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11409 flower src_mac 02:cc:b4:6e:ad:0d dst_mac 02:a8:e9:ee:02:c5 vlan_id 1204 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11410 flower src_mac 02:6a:27:5a:be:6f dst_mac 02:24:77:8e:bf:25 vlan_id 415 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11411 flower src_mac 02:82:5b:73:4d:70 dst_mac 02:73:4f:cf:0a:8f src_ip 80.113.244.148 dst_ip 81.220.215.11 ip_proto tcp src_port 18218 dst_port 57813 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11412 flower src_mac 02:cc:cc:dd:b5:29 dst_mac 02:be:65:e1:1e:b1 vlan_id 1834 vlan_ethtype 0x0800 src_ip 55.176.183.248 dst_ip 88.229.123.176 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11413 flower src_mac 02:56:8d:0f:4f:4a dst_mac 02:b4:8b:80:1b:d4 src_ip 119.49.98.83 dst_ip 45.242.234.217 ip_proto udp src_port 4996 dst_port 35381 action trap && tc filter add dev swp33 ingress protocol ip pref 11414 flower src_mac 02:92:81:12:14:18 dst_mac 02:e1:f0:e7:f9:30 src_ip 51.15.13.209 dst_ip 121.217.123.231 action pass && tc filter add dev swp33 ingress protocol ip pref 11415 flower src_mac 02:42:b9:8f:0d:4d dst_mac 02:16:b6:07:04:df src_ip 11.103.236.38 dst_ip 40.95.66.153 ip_proto udp src_port 14740 dst_port 43976 action drop && tc filter add dev swp33 ingress protocol ip pref 11416 flower src_mac 02:c9:d5:ce:5d:78 dst_mac 02:f7:69:19:66:ac src_ip 38.149.162.148 dst_ip 94.166.26.204 ip_proto tcp src_port 50551 dst_port 31034 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11417 flower src_mac 02:f0:f6:07:77:9d dst_mac 02:d6:2a:f0:29:c5 vlan_id 640 vlan_ethtype 0x0800 src_ip 87.0.71.198 dst_ip 115.110.192.155 ip_proto tcp src_port 64072 dst_port 7580 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11418 flower src_mac 02:ac:62:ea:3c:7e dst_mac 02:a9:19:11:38:57 vlan_id 2595 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11419 flower src_mac 02:68:af:12:6c:b0 dst_mac 02:45:e8:93:56:ca action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11420 flower src_mac 02:1f:70:76:2b:ee dst_mac 02:61:00:b3:b6:05 src_ip 67.75.120.71 dst_ip 56.126.162.122 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11421 flower src_mac 02:00:3b:40:72:8a dst_mac 02:83:78:ff:a8:84 src_ip 51.76.13.229 dst_ip 35.180.160.34 ip_proto icmp code 113 type 13 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11422 flower src_mac 02:5b:e9:5d:4f:cd dst_mac 02:39:4b:d9:50:6b action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11423 flower src_mac 02:df:58:d4:e3:bd dst_mac 02:30:af:7c:a3:e7 vlan_id 966 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11424 flower src_mac 02:da:11:a7:05:6f dst_mac 02:3c:27:e6:b2:2e vlan_id 684 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11425 flower src_mac 02:63:95:c0:46:a8 dst_mac 02:23:54:fe:ac:e3 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11426 flower src_mac 02:62:8f:c5:07:3e dst_mac 02:4c:73:15:64:ea action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11427 flower src_mac 02:11:f2:a2:07:4f dst_mac 02:0a:4b:be:d6:0e vlan_id 3691 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11428 flower src_mac 02:23:23:01:d9:cb dst_mac 02:dc:84:ed:74:94 vlan_id 49 vlan_ethtype 0x0800 src_ip 91.109.249.58 dst_ip 66.26.161.26 action trap && tc filter add dev swp33 ingress protocol ip pref 11429 flower src_mac 02:56:ef:5d:ce:56 dst_mac 02:40:52:87:cc:38 src_ip 105.41.26.106 dst_ip 11.157.172.48 ip_proto udp src_port 3746 dst_port 53834 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11430 flower src_mac 02:be:d8:49:18:8f dst_mac 02:e8:49:4b:b5:1c action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11431 flower src_mac 02:3b:7a:ae:b9:7f dst_mac 02:a8:f5:4d:78:f2 vlan_id 2804 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11432 flower src_mac 02:fa:7b:ad:da:96 dst_mac 02:d2:f9:70:f6:e9 vlan_id 1715 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11433 flower src_mac 02:2f:2a:e2:c8:e7 dst_mac 02:54:03:f2:75:90 vlan_id 1004 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11434 flower src_mac 02:26:a0:11:1b:50 dst_mac 02:2c:71:13:4f:e2 vlan_id 2328 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11435 flower src_mac 02:d0:27:e3:3b:c8 dst_mac 02:f1:17:56:3c:55 vlan_id 3669 vlan_ethtype ip src_ip 50.189.48.236 dst_ip 17.253.85.187 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11436 flower src_mac 02:97:ff:38:58:07 dst_mac 02:4a:d6:52:8b:99 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11437 flower src_mac 02:58:6f:94:42:08 dst_mac 02:21:c5:27:78:50 src_ip 125.4.247.196 dst_ip 91.196.123.95 ip_proto icmp code 69 type 5 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11438 flower src_mac 02:97:09:f0:bd:0f dst_mac 02:ef:2a:c7:52:38 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11439 flower src_mac 02:67:55:db:52:b4 dst_mac 02:ac:62:a4:f6:fd src_ip 105.161.118.155 dst_ip 27.51.120.236 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11440 flower src_mac 02:99:7c:6a:d2:a3 dst_mac 02:bb:57:53:b5:e3 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11441 flower src_mac 02:b5:94:cc:03:a2 dst_mac 02:f1:83:4c:54:a0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11442 flower src_mac 02:7a:9b:a6:ae:bb dst_mac 02:a3:58:8d:4b:15 vlan_id 1201 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 11443 flower src_mac 02:77:b3:5f:a7:59 dst_mac 02:75:97:43:ed:21 src_ip 122.187.36.58 dst_ip 111.148.40.173 ip_proto icmp code 101 type 11 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11444 flower src_mac 02:b5:7a:de:89:8b dst_mac 02:a8:2d:22:e8:df action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11445 flower src_mac 02:1a:b2:e0:19:d1 dst_mac 02:02:57:4f:71:69 vlan_id 3855 vlan_ethtype ip src_ip 93.76.59.102 dst_ip 89.110.48.126 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11446 flower src_mac 02:b4:02:32:f3:a1 dst_mac 02:81:6d:d0:00:e3 vlan_id 3074 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11447 flower src_mac 02:01:78:d2:84:66 dst_mac 02:3b:b6:b4:c3:32 src_ip 93.13.8.120 dst_ip 40.22.136.177 ip_proto tcp src_port 2480 dst_port 61880 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11448 flower src_mac 02:dd:b0:c1:a7:9e dst_mac 02:63:21:3d:46:5f action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11449 flower src_mac 02:0e:55:cf:56:52 dst_mac 02:b4:77:24:63:cb action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11450 flower src_mac 02:07:c5:ed:e0:b2 dst_mac 02:db:a7:30:e5:ac src_ip 81.182.115.71 dst_ip 50.182.193.89 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11451 flower src_mac 02:03:a2:88:e6:35 dst_mac 02:c3:4c:5e:ef:e1 src_ip 22.46.255.159 dst_ip 56.31.69.92 ip_proto tcp src_port 62736 dst_port 796 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11452 flower src_mac 02:aa:0c:11:5a:16 dst_mac 02:d2:d6:ce:f5:0f vlan_id 3418 vlan_ethtype ipv4 src_ip 111.43.107.134 dst_ip 77.132.107.173 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11453 flower src_mac 02:06:f1:b5:c2:05 dst_mac 02:57:db:11:57:bb vlan_id 1205 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11454 flower src_mac 02:ad:c5:4c:3c:22 dst_mac 02:2a:19:2d:16:b0 vlan_id 2688 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11455 flower src_mac 02:55:35:8b:a9:47 dst_mac 02:e4:cb:84:33:32 vlan_id 1013 vlan_ethtype ip src_ip 35.215.0.76 dst_ip 56.112.0.184 ip_proto udp src_port 35337 dst_port 54538 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11456 flower src_mac 02:6d:d3:29:86:66 dst_mac 02:9b:5e:3d:3c:79 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11457 flower src_mac 02:6c:1b:2b:e9:99 dst_mac 02:5e:ea:49:60:d1 src_ip 21.110.216.5 dst_ip 34.251.166.154 ip_proto udp src_port 44869 dst_port 4047 action pass && tc filter add dev swp33 ingress protocol ip pref 11458 flower src_mac 02:00:a6:87:26:eb dst_mac 02:3b:45:fe:a8:66 src_ip 64.227.104.20 dst_ip 21.56.219.234 ip_proto tcp src_port 28502 dst_port 9713 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11459 flower src_mac 02:48:e8:a1:ae:97 dst_mac 02:5e:31:21:bc:f6 src_ip 88.54.30.169 dst_ip 60.100.3.161 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11460 flower src_mac 02:5a:15:ae:f0:4d dst_mac 02:e9:a0:14:8c:5b action pass && tc filter add dev swp33 ingress protocol ip pref 11461 flower src_mac 02:a3:f7:22:f4:8d dst_mac 02:42:07:26:ac:10 src_ip 68.72.227.63 dst_ip 60.150.179.144 ip_proto icmp code 190 type 13 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11462 flower src_mac 02:79:98:8e:a6:25 dst_mac 02:ad:77:39:f4:a3 vlan_id 3925 vlan_ethtype ipv4 src_ip 25.134.217.198 dst_ip 83.182.172.240 ip_proto udp src_port 37067 dst_port 63428 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11463 flower src_mac 02:af:9e:29:81:59 dst_mac 02:6b:69:8f:69:36 src_ip 80.6.77.16 dst_ip 85.171.128.32 ip_proto tcp src_port 51355 dst_port 22506 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11464 flower src_mac 02:7f:e9:1c:30:19 dst_mac 02:6c:5c:01:b2:45 vlan_id 255 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11465 flower src_mac 02:59:4a:7c:76:a7 dst_mac 02:d5:e9:59:0c:92 action drop && tc filter add dev swp33 ingress protocol ip pref 11466 flower src_mac 02:5f:0b:e1:25:01 dst_mac 02:a5:fe:44:23:97 src_ip 110.173.255.154 dst_ip 93.248.58.99 ip_proto udp src_port 31021 dst_port 27801 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11467 flower src_mac 02:63:46:16:84:6e dst_mac 02:c6:c7:dc:fa:4e src_ip 37.58.226.69 dst_ip 114.219.246.127 ip_proto icmp code 200 type 14 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11468 flower src_mac 02:ed:02:77:c6:57 dst_mac 02:00:59:a6:bc:8c src_ip 119.42.223.4 dst_ip 50.57.210.225 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11469 flower src_mac 02:27:a7:00:aa:26 dst_mac 02:18:e8:56:82:96 vlan_id 1207 vlan_ethtype ip src_ip 95.127.215.186 dst_ip 85.164.2.8 ip_proto udp src_port 53943 dst_port 47137 action pass && tc filter add dev swp33 ingress protocol ip pref 11470 flower src_mac 02:7c:9c:3d:87:76 dst_mac 02:c0:b4:db:89:36 src_ip 126.74.199.41 dst_ip 22.231.38.65 ip_proto icmp code 56 type 0 action trap && tc filter add dev swp33 ingress protocol ip pref 11471 flower src_mac 02:33:cd:fb:f6:8b dst_mac 02:e6:28:e9:43:ef src_ip 28.5.95.135 dst_ip 53.138.247.18 ip_proto udp src_port 20004 dst_port 19664 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11472 flower src_mac 02:d6:e7:d1:00:c1 dst_mac 02:fa:5e:41:29:20 vlan_id 146 vlan_ethtype 0x0800 src_ip 60.84.181.213 dst_ip 93.125.224.157 ip_proto udp src_port 2183 dst_port 23565 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11473 flower src_mac 02:43:cf:5b:78:0c dst_mac 02:6f:db:0a:f7:bc action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11474 flower src_mac 02:e1:f8:e4:e7:d2 dst_mac 02:84:cb:5e:ee:ff src_ip 26.250.33.46 dst_ip 20.60.60.202 ip_proto icmp code 82 type 18 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11475 flower src_mac 02:69:32:2f:27:f7 dst_mac 02:34:5d:4a:05:f6 src_ip 103.166.105.226 dst_ip 50.212.181.240 ip_proto icmp code 139 type 12 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11476 flower src_mac 02:51:8d:6a:a0:f6 dst_mac 02:6d:4c:93:54:ba vlan_id 3235 vlan_ethtype ipv4 src_ip 83.58.66.71 dst_ip 64.120.11.81 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11477 flower src_mac 02:f8:3b:a4:fa:e3 dst_mac 02:70:47:c3:32:4a vlan_id 1536 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11478 flower src_mac 02:b5:75:b3:59:b8 dst_mac 02:b0:49:92:4e:1a vlan_id 3319 vlan_ethtype 0x0800 src_ip 120.207.191.18 dst_ip 42.96.224.131 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11479 flower src_mac 02:6a:60:86:95:c2 dst_mac 02:ce:72:9b:60:19 vlan_id 2615 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11480 flower src_mac 02:21:d4:f4:02:36 dst_mac 02:da:d8:c5:48:3b vlan_id 3650 vlan_ethtype ipv4 src_ip 59.108.0.163 dst_ip 26.99.206.24 ip_proto tcp src_port 58994 dst_port 44074 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11481 flower src_mac 02:3d:7c:3e:50:70 dst_mac 02:72:9f:d1:0f:b8 vlan_id 3131 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11482 flower src_mac 02:d5:5e:a4:9a:b6 dst_mac 02:48:9e:47:c1:46 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11483 flower src_mac 02:71:eb:56:6c:2f dst_mac 02:83:70:2e:6d:a7 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11484 flower src_mac 02:f8:e2:21:ad:71 dst_mac 02:80:d6:23:59:c7 vlan_id 3281 vlan_ethtype ip src_ip 15.203.3.246 dst_ip 79.234.253.76 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11485 flower src_mac 02:91:71:70:d6:48 dst_mac 02:18:1e:a3:fb:3d src_ip 88.29.65.70 dst_ip 124.79.203.112 ip_proto icmp code 36 type 13 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11486 flower src_mac 02:38:91:62:8e:dc dst_mac 02:84:be:1f:9c:f4 vlan_id 2062 vlan_ethtype ipv4 src_ip 82.175.111.177 dst_ip 69.52.235.8 ip_proto tcp src_port 23363 dst_port 42488 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11487 flower src_mac 02:98:33:68:45:98 dst_mac 02:ad:a8:a6:ee:76 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11488 flower src_mac 02:72:f2:91:0b:40 dst_mac 02:b5:06:bb:64:8f vlan_id 2145 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11489 flower src_mac 02:ef:95:7b:56:65 dst_mac 02:fb:06:2b:49:d8 vlan_id 2382 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11490 flower src_mac 02:3b:d9:e8:44:c2 dst_mac 02:3e:f6:e3:cd:43 vlan_id 1534 vlan_ethtype ipv4 src_ip 101.5.90.218 dst_ip 89.1.249.63 ip_proto udp src_port 65303 dst_port 38187 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11491 flower src_mac 02:99:5b:8f:3f:85 dst_mac 02:b4:ea:d1:02:e6 vlan_id 498 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11492 flower src_mac 02:55:94:e6:0d:2d dst_mac 02:7b:9a:e0:19:2c vlan_id 3856 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11493 flower src_mac 02:4f:2c:d0:78:b6 dst_mac 02:49:4e:b3:86:2e vlan_id 648 vlan_ethtype 0x0800 src_ip 126.170.4.46 dst_ip 124.146.50.14 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11494 flower src_mac 02:01:13:c3:42:32 dst_mac 02:51:2f:d2:a0:ed action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11495 flower src_mac 02:c1:24:0b:94:df dst_mac 02:a9:04:3d:3b:ec src_ip 23.216.209.115 dst_ip 99.91.71.167 ip_proto tcp src_port 17190 dst_port 55649 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11496 flower src_mac 02:ac:b3:37:10:ca dst_mac 02:05:4d:20:23:e1 vlan_id 3494 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11497 flower src_mac 02:74:93:02:b3:89 dst_mac 02:92:63:c6:dd:77 vlan_id 109 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11498 flower src_mac 02:e7:94:17:2c:0c dst_mac 02:7b:89:00:e5:57 action drop && tc filter add dev swp33 ingress protocol ip pref 11499 flower src_mac 02:14:a1:ab:be:0f dst_mac 02:b0:de:06:05:c0 src_ip 76.126.10.218 dst_ip 115.23.120.125 ip_proto tcp src_port 43146 dst_port 56296 action pass && tc filter add dev swp33 ingress protocol ip pref 11500 flower src_mac 02:06:4a:0a:18:cd dst_mac 02:b7:0f:ca:8f:69 src_ip 93.52.208.78 dst_ip 39.199.243.67 ip_proto icmp code 186 type 0 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11501 flower src_mac 02:b7:bf:68:64:02 dst_mac 02:55:33:8c:50:a7 vlan_id 452 vlan_ethtype ip src_ip 89.254.129.235 dst_ip 37.116.128.66 ip_proto udp src_port 58727 dst_port 18913 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11502 flower src_mac 02:7c:99:8a:09:4f dst_mac 02:db:37:a5:a7:1b vlan_id 3097 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11503 flower src_mac 02:92:57:74:bf:40 dst_mac 02:90:9b:a8:8a:1c vlan_id 41 vlan_ethtype 0x0800 src_ip 20.140.121.179 dst_ip 62.12.74.44 ip_proto tcp src_port 2850 dst_port 55857 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11504 flower src_mac 02:4e:77:ab:58:5a dst_mac 02:65:6a:97:2c:e2 vlan_id 1381 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11505 flower src_mac 02:cb:8e:8b:52:ad dst_mac 02:e8:47:8c:61:72 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11506 flower src_mac 02:13:64:3d:af:f1 dst_mac 02:46:8f:83:48:6d vlan_id 2569 vlan_ethtype ip src_ip 77.43.130.87 dst_ip 125.189.185.244 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11507 flower src_mac 02:fd:0c:7f:ac:d8 dst_mac 02:68:c3:26:fa:31 action pass && tc filter add dev swp33 ingress protocol ip pref 11508 flower src_mac 02:bd:2c:3f:73:2d dst_mac 02:f6:e0:72:e2:ab src_ip 94.127.64.238 dst_ip 117.31.166.94 ip_proto tcp src_port 46417 dst_port 18180 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11509 flower src_mac 02:5b:47:7b:2d:f2 dst_mac 02:67:a2:c3:fe:f7 vlan_id 2589 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11510 flower src_mac 02:69:31:c5:76:ab dst_mac 02:f7:c8:f3:ef:45 vlan_id 48 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11511 flower src_mac 02:e9:15:a2:20:68 dst_mac 02:77:71:f4:73:e4 src_ip 16.252.25.37 dst_ip 81.22.117.114 ip_proto icmp code 225 type 17 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11512 flower src_mac 02:cf:ef:3a:86:63 dst_mac 02:43:7e:be:07:45 vlan_id 256 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11513 flower src_mac 02:d2:69:cb:81:81 dst_mac 02:67:04:ec:2a:15 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11514 flower src_mac 02:19:98:cc:fe:66 dst_mac 02:53:36:ca:d9:a3 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11515 flower src_mac 02:56:df:cc:4f:1c dst_mac 02:8d:e9:03:f2:6d vlan_id 1678 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 11516 flower src_mac 02:fd:79:5e:ed:79 dst_mac 02:50:f1:3f:0a:68 src_ip 92.202.97.238 dst_ip 12.29.161.54 ip_proto tcp src_port 23482 dst_port 46099 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11517 flower src_mac 02:e1:e4:39:ac:5e dst_mac 02:fa:c4:08:64:e3 vlan_id 1575 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11518 flower src_mac 02:6f:ea:3e:b6:5b dst_mac 02:ec:c0:f5:30:3c src_ip 78.62.253.131 dst_ip 78.216.181.233 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11519 flower src_mac 02:7d:26:c2:e3:ee dst_mac 02:a8:bf:20:b7:2e action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11520 flower src_mac 02:c5:47:a8:1d:8e dst_mac 02:60:9f:43:32:6c src_ip 33.205.34.8 dst_ip 107.108.193.109 ip_proto udp src_port 64298 dst_port 7358 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11521 flower src_mac 02:bb:64:8d:58:88 dst_mac 02:12:1a:f3:37:ac vlan_id 74 vlan_ethtype ip src_ip 102.93.41.242 dst_ip 68.169.178.41 ip_proto udp src_port 22425 dst_port 47761 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11522 flower src_mac 02:ee:bb:dc:85:fa dst_mac 02:76:1a:e1:9c:54 vlan_id 3335 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11523 flower src_mac 02:c4:99:a7:20:ab dst_mac 02:40:52:09:72:b8 vlan_id 2433 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11524 flower src_mac 02:73:b9:a9:6c:79 dst_mac 02:3a:1d:91:d7:7b vlan_id 1971 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11525 flower src_mac 02:e5:61:9f:3d:a1 dst_mac 02:aa:d4:62:23:7c action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11526 flower src_mac 02:e2:90:27:73:41 dst_mac 02:25:53:65:05:f5 src_ip 69.159.83.232 dst_ip 31.205.94.246 ip_proto tcp src_port 63939 dst_port 20121 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11527 flower src_mac 02:79:6c:af:67:d9 dst_mac 02:eb:46:b0:6d:da action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11528 flower src_mac 02:c0:74:67:d7:0f dst_mac 02:aa:4e:bb:a3:80 src_ip 63.176.17.122 dst_ip 106.147.223.121 ip_proto udp src_port 3778 dst_port 52329 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11529 flower src_mac 02:3f:c3:02:72:c7 dst_mac 02:f7:cb:b7:f2:f8 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11530 flower src_mac 02:b7:94:f2:e0:be dst_mac 02:2b:a4:f8:53:bf src_ip 66.118.113.21 dst_ip 121.48.97.160 ip_proto tcp src_port 53714 dst_port 13507 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11531 flower src_mac 02:3f:2f:ad:01:f8 dst_mac 02:53:49:6e:eb:f8 vlan_id 462 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11532 flower src_mac 02:ec:e6:1a:54:7e dst_mac 02:91:37:d0:aa:cf vlan_id 1373 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11533 flower src_mac 02:08:03:03:0b:53 dst_mac 02:13:84:b1:81:30 vlan_id 1132 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11534 flower src_mac 02:08:b4:f0:09:37 dst_mac 02:00:eb:79:97:b1 vlan_id 3112 vlan_ethtype ip src_ip 100.252.137.163 dst_ip 63.229.13.231 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11535 flower src_mac 02:ad:2e:b6:de:02 dst_mac 02:d3:b1:aa:62:95 action drop INFO asyncssh:logging.py:92 [conn=24, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 11200 flower src_mac 02:19:b2:8d:e1:48 dst_mac 02:2f:e8:95:83:42 vlan_id 851 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11201 flower src_mac 02:59:c1:9e:21:2f dst_mac 02:85:43:f4:2a:37 vlan_id 604 vlan_ethtype ipv4 src_ip 125.21.24.96 dst_ip 89.75.225.189 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11202 flower src_mac 02:73:7c:73:6a:f4 dst_mac 02:4e:65:99:83:af vlan_id 387 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11203 flower src_mac 02:10:c2:88:fd:9c dst_mac 02:08:1f:e1:11:e3 vlan_id 4075 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11204 flower src_mac 02:49:a4:cf:4d:ed dst_mac 02:28:58:59:67:e9 vlan_id 1356 vlan_ethtype ipv4 src_ip 126.111.88.87 dst_ip 50.100.188.95 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11205 flower src_mac 02:b3:90:d7:31:e1 dst_mac 02:d8:6d:af:70:fb vlan_id 3486 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 11206 flower src_mac 02:5b:db:aa:6b:1a dst_mac 02:c7:40:74:6f:b5 src_ip 12.86.211.63 dst_ip 48.41.182.234 ip_proto tcp src_port 37929 dst_port 55570 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11207 flower src_mac 02:27:2f:01:fb:4d dst_mac 02:18:65:9d:f9:50 src_ip 60.120.69.154 dst_ip 98.53.102.137 ip_proto icmp code 227 type 8 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11208 flower src_mac 02:2d:2f:9c:02:31 dst_mac 02:b9:71:5d:4a:6d src_ip 32.27.209.11 dst_ip 95.1.102.46 ip_proto icmp code 116 type 15 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11209 flower src_mac 02:16:03:63:67:0e dst_mac 02:0a:26:9e:7b:d4 vlan_id 1111 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11210 flower src_mac 02:e3:1e:e1:44:9f dst_mac 02:59:a1:b4:ea:34 vlan_id 1600 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11211 flower src_mac 02:d1:92:72:1e:2a dst_mac 02:f7:13:c4:ee:ee vlan_id 3602 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11212 flower src_mac 02:5b:70:2c:e2:35 dst_mac 02:66:aa:4f:58:37 src_ip 50.159.241.42 dst_ip 26.254.215.237 ip_proto icmp code 1 type 8 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11213 flower src_mac 02:cb:da:0c:61:b4 dst_mac 02:e7:a4:04:86:c7 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11214 flower src_mac 02:4f:fa:64:80:bb dst_mac 02:de:03:f1:39:76 vlan_id 2509 vlan_ethtype ipv4 src_ip 109.144.244.141 dst_ip 17.20.12.193 ip_proto tcp src_port 33785 dst_port 64506 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11215 flower src_mac 02:43:86:69:93:32 dst_mac 02:36:4b:57:47:9f vlan_id 1764 vlan_ethtype ip src_ip 79.99.145.81 dst_ip 119.8.14.158 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11216 flower src_mac 02:cc:eb:f0:bf:6a dst_mac 02:8d:97:31:c5:34 vlan_id 2191 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11217 flower src_mac 02:db:74:ad:1b:de dst_mac 02:ab:d1:b6:63:c3 vlan_id 120 vlan_ethtype ip src_ip 80.203.42.185 dst_ip 93.244.109.70 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11218 flower src_mac 02:36:16:77:71:70 dst_mac 02:3d:59:6f:99:f1 src_ip 116.222.41.41 dst_ip 74.70.167.124 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11219 flower src_mac 02:0b:b4:8e:8b:88 dst_mac 02:4d:3c:55:0d:9c vlan_id 526 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11220 flower src_mac 02:e4:3e:55:ee:e8 dst_mac 02:91:de:ed:f6:e8 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11221 flower src_mac 02:a8:cf:ae:e7:78 dst_mac 02:66:86:66:4c:5c src_ip 50.201.52.225 dst_ip 113.136.68.153 ip_proto icmp code 88 type 8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11222 flower src_mac 02:a3:94:8d:09:c6 dst_mac 02:12:32:d4:c3:e3 vlan_id 3740 vlan_ethtype ipv4 src_ip 94.191.27.78 dst_ip 124.15.12.169 ip_proto udp src_port 48045 dst_port 54631 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11223 flower src_mac 02:be:f0:18:eb:5b dst_mac 02:ac:69:b6:db:56 vlan_id 2209 vlan_ethtype ipv4 src_ip 61.110.229.66 dst_ip 92.88.65.172 ip_proto tcp src_port 49739 dst_port 23297 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11224 flower src_mac 02:c2:4b:b0:fc:a7 dst_mac 02:57:4d:58:95:4e vlan_id 2485 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11225 flower src_mac 02:55:73:f1:34:2b dst_mac 02:9d:11:f5:63:03 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11226 flower src_mac 02:54:8e:64:3d:49 dst_mac 02:ae:96:8a:1c:bb src_ip 16.135.227.224 dst_ip 16.60.232.167 ip_proto icmp code 49 type 15 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11227 flower src_mac 02:e9:2c:14:86:78 dst_mac 02:4c:80:05:5a:d9 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11228 flower src_mac 02:c5:a1:55:41:39 dst_mac 02:a6:07:21:fe:7b action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11229 flower src_mac 02:8a:56:8b:10:c1 dst_mac 02:9b:82:fe:75:05 vlan_id 1507 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11230 flower src_mac 02:48:88:a5:97:19 dst_mac 02:3e:b2:54:b1:6c vlan_id 3905 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11231 flower src_mac 02:ab:2d:3d:07:37 dst_mac 02:5b:38:f2:70:92 vlan_id 1174 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11232 flower src_mac 02:00:32:6b:83:5d dst_mac 02:54:f5:c2:53:cc action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11233 flower src_mac 02:ad:2c:51:1d:21 dst_mac 02:83:8a:e6:7a:3e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11234 flower src_mac 02:cb:7d:bb:d0:3c dst_mac 02:3c:c0:48:2f:b6 vlan_id 1716 vlan_ethtype ipv4 src_ip 68.87.79.35 dst_ip 83.78.137.46 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11235 flower src_mac 02:2c:2f:3a:be:6d dst_mac 02:2b:fe:a4:8a:38 src_ip 78.191.121.168 dst_ip 49.133.85.165 ip_proto udp src_port 22966 dst_port 9362 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11236 flower src_mac 02:4f:1b:b6:f6:59 dst_mac 02:0f:7f:5d:57:c3 vlan_id 254 vlan_ethtype ip src_ip 86.141.120.39 dst_ip 36.106.167.82 ip_proto udp src_port 26169 dst_port 31346 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11237 flower src_mac 02:f2:5b:b3:de:5d dst_mac 02:c3:51:10:c1:27 vlan_id 3256 vlan_ethtype 0x0800 src_ip 75.254.15.245 dst_ip 15.138.115.238 ip_proto tcp src_port 1582 dst_port 17877 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11238 flower src_mac 02:79:88:18:a4:d0 dst_mac 02:75:64:3c:6f:93 vlan_id 1677 vlan_ethtype 0x0800 src_ip 81.196.230.158 dst_ip 122.107.145.129 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11239 flower src_mac 02:9c:33:93:73:1f dst_mac 02:f2:37:af:3a:81 vlan_id 2762 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11240 flower src_mac 02:37:a8:38:a5:1e dst_mac 02:86:05:b4:da:05 vlan_id 1989 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11241 flower src_mac 02:0c:1d:75:13:94 dst_mac 02:ed:f4:17:7c:e2 vlan_id 1693 vlan_ethtype ip src_ip 12.58.18.246 dst_ip 118.173.25.145 ip_proto udp src_port 47638 dst_port 32698 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11242 flower src_mac 02:40:4b:28:25:09 dst_mac 02:2f:16:2d:b4:ea src_ip 60.182.217.135 dst_ip 112.117.20.63 ip_proto icmp code 172 type 0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11243 flower src_mac 02:6b:9d:ce:0c:29 dst_mac 02:29:68:20:b4:40 vlan_id 3311 vlan_ethtype ipv4 src_ip 29.102.129.126 dst_ip 111.38.234.92 ip_proto udp src_port 2807 dst_port 20922 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11244 flower src_mac 02:db:c2:33:3c:d1 dst_mac 02:98:d2:2c:1e:66 vlan_id 136 vlan_ethtype 0x0800 src_ip 45.6.71.73 dst_ip 106.155.82.122 ip_proto udp src_port 24075 dst_port 33653 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11245 flower src_mac 02:f2:27:cf:53:4b dst_mac 02:35:4c:a0:d0:77 vlan_id 1880 vlan_ethtype ipv4 src_ip 90.21.148.146 dst_ip 91.205.76.132 ip_proto udp src_port 18923 dst_port 2963 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11246 flower src_mac 02:4e:59:49:81:e7 dst_mac 02:dd:f5:14:fb:c7 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11247 flower src_mac 02:16:2e:e3:ba:4f dst_mac 02:c6:76:22:fd:7c src_ip 118.8.94.52 dst_ip 86.243.57.198 ip_proto udp src_port 40087 dst_port 18927 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11248 flower src_mac 02:c0:62:d1:3e:21 dst_mac 02:9e:b8:9a:a3:20 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11249 flower src_mac 02:5f:42:fe:4e:f8 dst_mac 02:f9:d1:5f:23:f7 vlan_id 1556 vlan_ethtype ipv4 src_ip 37.175.189.65 dst_ip 52.62.60.42 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11250 flower src_mac 02:d7:36:a8:09:a8 dst_mac 02:01:94:fb:2a:f2 vlan_id 1553 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11251 flower src_mac 02:a4:b0:e3:b9:ee dst_mac 02:47:dd:a5:a7:45 src_ip 62.33.26.75 dst_ip 107.216.76.218 ip_proto icmp code 225 type 11 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11252 flower src_mac 02:84:7e:46:de:22 dst_mac 02:65:1e:6b:28:ba action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11253 flower src_mac 02:d3:4c:ad:c0:b3 dst_mac 02:45:56:c0:fa:6d action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11254 flower src_mac 02:60:ef:fb:a6:ce dst_mac 02:ae:04:b9:f9:d6 vlan_id 3980 vlan_ethtype 0x0800 src_ip 33.63.106.20 dst_ip 45.28.27.101 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11255 flower src_mac 02:89:5d:95:86:e8 dst_mac 02:5d:79:7d:d7:0e src_ip 43.194.191.166 dst_ip 42.104.108.178 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11256 flower src_mac 02:90:d0:98:ab:01 dst_mac 02:dd:83:67:fe:01 vlan_id 3378 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11257 flower src_mac 02:4c:4c:b7:5d:bf dst_mac 02:f8:84:6e:61:db src_ip 22.193.182.190 dst_ip 31.193.86.233 ip_proto udp src_port 62722 dst_port 50994 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11258 flower src_mac 02:0d:44:7b:1b:6a dst_mac 02:f9:19:9f:2c:5c src_ip 105.224.150.30 dst_ip 31.132.1.18 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11259 flower src_mac 02:65:58:71:ae:67 dst_mac 02:38:bb:46:7b:15 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11260 flower src_mac 02:b2:3c:8d:92:c6 dst_mac 02:87:e1:54:0a:3b vlan_id 2498 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11261 flower src_mac 02:4e:d8:c2:22:fc dst_mac 02:47:4f:01:99:0f action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11262 flower src_mac 02:27:fa:e4:f2:37 dst_mac 02:af:f9:33:79:52 vlan_id 3673 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11263 flower src_mac 02:64:ce:d5:7c:a6 dst_mac 02:70:13:d5:41:4f action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11264 flower src_mac 02:e3:a0:37:fb:85 dst_mac 02:b9:2f:12:f7:df action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11265 flower src_mac 02:e3:10:19:b2:ec dst_mac 02:ee:05:6a:3b:f6 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11266 flower src_mac 02:6c:b8:ac:ee:30 dst_mac 02:34:dc:d8:29:6f action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11267 flower src_mac 02:e8:9b:c4:b0:8b dst_mac 02:72:52:0b:c6:56 vlan_id 222 vlan_ethtype 0x0800 src_ip 80.251.45.149 dst_ip 46.82.115.182 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11268 flower src_mac 02:81:6f:34:a9:a7 dst_mac 02:dc:2c:34:13:3f vlan_id 3669 vlan_ethtype 0x0800 src_ip 117.226.15.225 dst_ip 28.141.37.13 ip_proto tcp src_port 21959 dst_port 58054 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11269 flower src_mac 02:ee:7f:d6:34:08 dst_mac 02:02:4c:0a:59:17 vlan_id 4005 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11270 flower src_mac 02:98:8c:16:a8:b6 dst_mac 02:08:83:7c:da:a3 src_ip 121.127.20.48 dst_ip 109.50.40.69 ip_proto tcp src_port 55596 dst_port 35132 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11271 flower src_mac 02:bb:89:53:fe:1c dst_mac 02:ad:1b:c4:dc:5e action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11272 flower src_mac 02:f5:93:12:23:1c dst_mac 02:cc:8a:06:84:fd src_ip 93.39.67.199 dst_ip 35.251.202.159 ip_proto udp src_port 54063 dst_port 8026 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11273 flower src_mac 02:3d:27:10:c9:fc dst_mac 02:41:96:d5:0a:9c src_ip 35.166.31.79 dst_ip 35.228.110.94 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11274 flower src_mac 02:65:98:0b:a1:3b dst_mac 02:dc:c3:fd:6b:a4 vlan_id 1980 vlan_ethtype ip src_ip 102.1.236.232 dst_ip 67.39.54.185 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11275 flower src_mac 02:86:fd:28:b5:19 dst_mac 02:c9:96:c9:f5:ec vlan_id 2104 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11276 flower src_mac 02:2d:81:c6:c3:32 dst_mac 02:80:f9:cf:71:43 vlan_id 3326 vlan_ethtype ip src_ip 111.70.92.50 dst_ip 15.35.49.218 ip_proto tcp src_port 39832 dst_port 42668 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11277 flower src_mac 02:12:6a:1d:2f:18 dst_mac 02:95:ab:dd:b1:66 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11278 flower src_mac 02:ca:88:6f:24:e8 dst_mac 02:d7:8b:ea:b6:72 src_ip 59.125.181.165 dst_ip 51.241.213.104 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11279 flower src_mac 02:ce:b3:df:19:a0 dst_mac 02:1e:92:77:d3:48 vlan_id 301 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11280 flower src_mac 02:cd:fa:04:a6:10 dst_mac 02:76:1f:95:3a:d6 src_ip 28.112.91.112 dst_ip 56.7.111.214 ip_proto tcp src_port 22863 dst_port 11190 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11281 flower src_mac 02:ae:75:22:24:92 dst_mac 02:b1:07:d7:92:07 vlan_id 3874 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11282 flower src_mac 02:3d:f2:42:03:69 dst_mac 02:d2:eb:3c:fd:b9 vlan_id 3191 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11283 flower src_mac 02:bd:12:aa:6f:87 dst_mac 02:22:0c:4e:5b:f1 vlan_id 1827 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11284 flower src_mac 02:1a:97:0b:3b:2e dst_mac 02:4e:7f:ef:2b:53 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11285 flower src_mac 02:16:b4:f0:67:09 dst_mac 02:d2:c6:89:53:d2 vlan_id 1546 vlan_ethtype 0x0800 src_ip 112.97.141.107 dst_ip 124.156.23.58 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11286 flower src_mac 02:91:a4:94:f5:6e dst_mac 02:4b:eb:ef:ef:24 vlan_id 2509 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 11287 flower src_mac 02:be:1f:90:13:0b dst_mac 02:e3:67:87:a6:0e src_ip 94.47.98.101 dst_ip 121.186.178.47 ip_proto tcp src_port 28655 dst_port 10601 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11288 flower src_mac 02:43:85:91:7d:af dst_mac 02:f7:1b:1d:e2:05 vlan_id 728 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11289 flower src_mac 02:e7:1d:50:d4:f8 dst_mac 02:23:4c:0a:83:7c vlan_id 1801 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11290 flower src_mac 02:ec:88:75:1b:ae dst_mac 02:7f:3e:25:13:81 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11291 flower src_mac 02:72:10:2c:75:4f dst_mac 02:0c:e0:97:fa:d7 vlan_id 768 vlan_ethtype ipv4 src_ip 114.94.83.15 dst_ip 61.119.151.22 ip_proto tcp src_port 35057 dst_port 12976 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11292 flower src_mac 02:a9:1a:83:c2:10 dst_mac 02:83:7b:f8:f1:3d src_ip 34.41.71.148 dst_ip 47.54.51.49 ip_proto udp src_port 25314 dst_port 61983 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11293 flower src_mac 02:fe:24:fa:6d:4c dst_mac 02:be:fa:04:1f:92 vlan_id 2289 vlan_ethtype 0x0800 src_ip 94.132.230.134 dst_ip 27.167.84.197 ip_proto tcp src_port 9859 dst_port 10749 action trap && tc filter add dev swp33 ingress protocol ip pref 11294 flower src_mac 02:df:26:58:a3:6f dst_mac 02:eb:96:0d:79:70 src_ip 110.216.214.71 dst_ip 40.52.97.86 ip_proto icmp code 94 type 3 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11295 flower src_mac 02:d5:97:78:3a:d0 dst_mac 02:e3:3b:d0:db:5b action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11296 flower src_mac 02:10:49:99:9b:dd dst_mac 02:e3:10:fe:8d:da action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11297 flower src_mac 02:7f:d7:1a:63:b4 dst_mac 02:f4:22:89:c8:ed vlan_id 2419 vlan_ethtype ipv4 src_ip 71.66.221.171 dst_ip 91.42.15.11 ip_proto udp src_port 53940 dst_port 29172 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11298 flower src_mac 02:eb:83:d4:fb:d3 dst_mac 02:b3:f6:21:8d:1f vlan_id 54 vlan_ethtype ip src_ip 100.31.127.1 dst_ip 27.255.171.46 ip_proto tcp src_port 23748 dst_port 27555 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11299 flower src_mac 02:c8:ab:6a:8f:b2 dst_mac 02:91:ea:d6:44:72 vlan_id 2460 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11300 flower src_mac 02:ae:ad:16:3e:76 dst_mac 02:fe:7b:19:a0:44 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11301 flower src_mac 02:d5:1a:0b:80:34 dst_mac 02:a5:42:fa:15:61 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11302 flower src_mac 02:80:79:82:0a:63 dst_mac 02:17:01:e0:9c:d3 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11303 flower src_mac 02:33:cf:c1:22:30 dst_mac 02:6c:a8:31:23:47 vlan_id 1027 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11304 flower src_mac 02:7f:b1:36:38:92 dst_mac 02:67:0b:d7:dc:15 vlan_id 3394 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11305 flower src_mac 02:b8:da:8e:d1:98 dst_mac 02:ba:65:fd:ee:df vlan_id 2996 vlan_ethtype ip src_ip 77.212.234.41 dst_ip 35.219.164.165 ip_proto tcp src_port 12748 dst_port 39239 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11306 flower src_mac 02:b7:4f:5e:57:53 dst_mac 02:53:6f:09:a4:24 vlan_id 3332 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11307 flower src_mac 02:a5:0e:50:bd:55 dst_mac 02:f8:15:9d:95:93 src_ip 62.130.114.12 dst_ip 21.165.178.144 ip_proto udp src_port 37576 dst_port 43790 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11308 flower src_mac 02:97:bf:7b:41:7f dst_mac 02:40:0d:33:a1:fb src_ip 119.118.111.153 dst_ip 118.5.247.190 ip_proto tcp src_port 57189 dst_port 11269 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11309 flower src_mac 02:67:3a:44:48:c8 dst_mac 02:8d:fe:35:2f:19 vlan_id 828 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11310 flower src_mac 02:f9:eb:67:f4:2a dst_mac 02:87:5c:97:6d:56 vlan_id 568 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11311 flower src_mac 02:40:9f:02:a7:71 dst_mac 02:e9:46:be:ad:7f vlan_id 2330 vlan_ethtype ip src_ip 66.51.33.102 dst_ip 74.175.34.179 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11312 flower src_mac 02:4f:a5:ce:61:cb dst_mac 02:a2:26:eb:66:08 vlan_id 490 vlan_ethtype 0x0800 src_ip 17.105.76.60 dst_ip 51.170.22.171 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11313 flower src_mac 02:3d:7c:61:75:6f dst_mac 02:7a:61:82:61:a5 src_ip 73.63.139.231 dst_ip 31.170.124.202 ip_proto udp src_port 32270 dst_port 30210 action drop && tc filter add dev swp33 ingress protocol ip pref 11314 flower src_mac 02:f5:48:6e:6b:e4 dst_mac 02:dc:af:92:16:b8 src_ip 45.122.249.94 dst_ip 81.92.202.216 ip_proto icmp code 27 type 13 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11315 flower src_mac 02:31:4b:76:67:9b dst_mac 02:12:c2:21:e7:8d vlan_id 3210 vlan_ethtype 0x0800 src_ip 50.171.131.149 dst_ip 54.160.182.38 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11316 flower src_mac 02:2b:0b:d0:94:f8 dst_mac 02:7b:d6:d7:d2:8b src_ip 54.144.180.199 dst_ip 26.61.117.197 ip_proto tcp src_port 47200 dst_port 11660 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11317 flower src_mac 02:4e:c0:76:41:6d dst_mac 02:f5:c7:13:1f:bc vlan_id 1507 vlan_ethtype ip src_ip 47.141.32.194 dst_ip 65.158.123.191 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11318 flower src_mac 02:d5:11:04:0e:d5 dst_mac 02:c4:e7:25:08:11 vlan_id 3392 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11319 flower src_mac 02:fd:64:c5:ca:b5 dst_mac 02:4f:56:52:eb:cf vlan_id 2575 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 11320 flower src_mac 02:74:42:e1:a9:49 dst_mac 02:3c:42:28:cc:0f src_ip 76.219.60.21 dst_ip 53.236.183.3 ip_proto icmp code 77 type 17 action trap && tc filter add dev swp33 ingress protocol ip pref 11321 flower src_mac 02:a2:45:c6:30:7c dst_mac 02:0a:1e:16:18:d4 src_ip 108.183.205.240 dst_ip 43.143.66.4 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11322 flower src_mac 02:8c:14:d5:84:01 dst_mac 02:7e:b0:ad:f8:4a action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11323 flower src_mac 02:2d:02:dd:b7:0f dst_mac 02:7e:72:0f:d7:37 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11324 flower src_mac 02:9b:b8:c8:e2:d5 dst_mac 02:23:1a:17:9f:06 vlan_id 1247 vlan_ethtype ipv4 src_ip 86.77.94.71 dst_ip 33.220.148.168 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11325 flower src_mac 02:f0:11:d4:7c:2a dst_mac 02:9c:30:2e:c0:e8 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11326 flower src_mac 02:a2:b7:0b:d3:28 dst_mac 02:9b:05:aa:c4:cd action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11327 flower src_mac 02:92:b9:0d:8f:4f dst_mac 02:b6:2b:fb:60:62 src_ip 18.51.154.150 dst_ip 69.195.231.71 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11328 flower src_mac 02:f9:3f:a7:68:6a dst_mac 02:4e:a4:e7:ae:42 vlan_id 3078 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11329 flower src_mac 02:6d:c7:f3:9d:ea dst_mac 02:e6:ac:7a:ea:75 vlan_id 3211 vlan_ethtype ip src_ip 25.59.27.126 dst_ip 75.201.152.19 action drop && tc filter add dev swp33 ingress protocol ip pref 11330 flower src_mac 02:ba:a6:53:62:58 dst_mac 02:9d:11:ac:64:ae src_ip 106.57.68.125 dst_ip 93.103.157.42 ip_proto tcp src_port 46854 dst_port 18874 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11331 flower src_mac 02:5b:1f:51:2c:51 dst_mac 02:96:29:96:54:28 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11332 flower src_mac 02:42:5e:9f:fe:1f dst_mac 02:3c:86:83:a9:20 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11333 flower src_mac 02:fa:5e:85:58:c9 dst_mac 02:97:1f:7d:82:9c src_ip 95.124.7.207 dst_ip 121.131.105.176 ip_proto tcp src_port 59797 dst_port 9867 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11334 flower src_mac 02:0b:67:57:75:da dst_mac 02:67:d5:6e:a5:4e vlan_id 3313 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11335 flower src_mac 02:32:92:91:a5:7a dst_mac 02:9c:9a:7a:eb:86 vlan_id 2630 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11336 flower src_mac 02:92:2b:e1:8a:f0 dst_mac 02:6b:65:db:32:b1 vlan_id 807 vlan_ethtype ip src_ip 50.146.159.215 dst_ip 111.188.102.68 ip_proto udp src_port 17203 dst_port 31191 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11337 flower src_mac 02:69:a3:fb:d8:2c dst_mac 02:b9:81:bf:4f:9f vlan_id 1907 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11338 flower src_mac 02:dc:cf:36:13:bf dst_mac 02:9e:7e:27:41:4d action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11339 flower src_mac 02:a7:87:65:1f:0d dst_mac 02:70:fd:75:13:27 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11340 flower src_mac 02:26:16:12:b4:f6 dst_mac 02:13:67:12:4a:ec vlan_id 2577 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11341 flower src_mac 02:9f:4a:6a:8a:f7 dst_mac 02:15:2d:46:56:46 src_ip 98.39.193.76 dst_ip 13.74.24.11 ip_proto icmp code 225 type 12 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11342 flower src_mac 02:ac:f8:48:53:70 dst_mac 02:1a:25:9a:68:22 vlan_id 921 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11343 flower src_mac 02:14:4b:06:4b:23 dst_mac 02:ae:cd:85:ab:82 vlan_id 98 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 11344 flower src_mac 02:3d:b2:ee:69:31 dst_mac 02:ca:39:40:f2:d0 src_ip 73.151.185.36 dst_ip 34.171.176.29 ip_proto tcp src_port 56906 dst_port 42707 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11345 flower src_mac 02:84:d1:ad:6d:a3 dst_mac 02:c6:7e:0a:b0:f2 src_ip 115.209.251.2 dst_ip 91.200.113.107 ip_proto icmp code 239 type 16 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11346 flower src_mac 02:b8:34:59:38:97 dst_mac 02:d1:7a:03:71:d5 vlan_id 1414 vlan_ethtype ip src_ip 68.60.113.52 dst_ip 53.58.227.94 action pass && tc filter add dev swp33 ingress protocol ip pref 11347 flower src_mac 02:1d:87:19:21:12 dst_mac 02:d9:5d:6d:40:22 src_ip 34.209.125.212 dst_ip 29.123.244.45 ip_proto udp src_port 24297 dst_port 52750 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11348 flower src_mac 02:6f:cb:56:0a:68 dst_mac 02:4b:ab:c1:06:66 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11349 flower src_mac 02:67:d1:e4:28:4f dst_mac 02:fa:f8:b3:83:87 src_ip 50.246.96.165 dst_ip 124.53.198.220 ip_proto icmp code 76 type 4 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11350 flower src_mac 02:4e:98:b2:4e:a0 dst_mac 02:6c:a0:15:a4:db action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11351 flower src_mac 02:3b:a3:8e:82:42 dst_mac 02:87:1c:88:77:75 action trap && tc filter add dev swp33 ingress protocol ip pref 11352 flower src_mac 02:74:a7:85:0a:f0 dst_mac 02:a2:d4:3c:c9:6a src_ip 31.51.117.237 dst_ip 24.7.5.59 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11353 flower src_mac 02:a3:55:cd:7c:f5 dst_mac 02:08:5c:ea:2b:17 vlan_id 2981 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11354 flower src_mac 02:4d:34:f6:ec:c0 dst_mac 02:be:60:bd:0a:6e vlan_id 1705 vlan_ethtype 0x0800 src_ip 52.78.77.147 dst_ip 104.11.210.50 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11355 flower src_mac 02:a6:af:61:31:3c dst_mac 02:b2:39:7d:41:d7 vlan_id 888 vlan_ethtype 0x0800 src_ip 85.87.30.77 dst_ip 91.153.58.102 ip_proto tcp src_port 36344 dst_port 11189 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11356 flower src_mac 02:77:45:36:b2:1e dst_mac 02:fc:f9:9d:b8:3f vlan_id 1105 vlan_ethtype 0x0800 src_ip 44.156.48.42 dst_ip 120.145.39.201 ip_proto udp src_port 63137 dst_port 35773 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11357 flower src_mac 02:cd:73:2b:df:bb dst_mac 02:9f:16:f1:3b:99 vlan_id 1209 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11358 flower src_mac 02:36:b1:69:9c:d6 dst_mac 02:af:7b:63:83:7c src_ip 103.57.156.206 dst_ip 87.177.24.23 ip_proto tcp src_port 62004 dst_port 5382 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11359 flower src_mac 02:e5:6c:47:28:c5 dst_mac 02:79:c5:be:9e:33 vlan_id 3901 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11360 flower src_mac 02:77:2a:77:c4:99 dst_mac 02:7e:eb:cb:bc:af action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11361 flower src_mac 02:24:c4:a6:d2:5b dst_mac 02:9d:f5:a7:47:ed src_ip 42.252.143.220 dst_ip 109.3.133.79 ip_proto icmp code 38 type 11 action pass && tc filter add dev swp33 ingress protocol ip pref 11362 flower src_mac 02:8c:33:68:ea:6e dst_mac 02:b8:78:dc:ef:db src_ip 111.80.130.167 dst_ip 83.159.219.9 ip_proto tcp src_port 38500 dst_port 43560 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11363 flower src_mac 02:e0:90:0e:75:3a dst_mac 02:3f:a0:45:fb:39 src_ip 109.64.50.139 dst_ip 36.132.235.209 ip_proto icmp code 139 type 15 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11364 flower src_mac 02:8a:2d:a0:0f:1e dst_mac 02:a2:6c:79:5c:a6 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11365 flower src_mac 02:f0:21:1f:ce:e0 dst_mac 02:bb:36:35:b5:1a action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11366 flower src_mac 02:cf:8d:4e:57:43 dst_mac 02:8e:11:49:91:21 vlan_id 3504 vlan_ethtype ip src_ip 126.189.184.155 dst_ip 85.159.89.225 ip_proto udp src_port 14 dst_port 49470 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11367 flower src_mac 02:3a:8b:5f:d6:6c dst_mac 02:fa:49:6a:2a:a5 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11368 flower src_mac 02:aa:03:2f:64:89 dst_mac 02:b1:c5:c8:21:a2 vlan_id 200 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11369 flower src_mac 02:20:3c:68:b8:d7 dst_mac 02:a0:58:33:ae:bc vlan_id 3936 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 11370 flower src_mac 02:b2:1b:a0:c4:50 dst_mac 02:b4:63:f5:34:11 src_ip 46.78.219.122 dst_ip 126.110.231.24 ip_proto tcp src_port 15360 dst_port 46605 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11371 flower src_mac 02:e9:76:4e:c2:35 dst_mac 02:69:d8:fe:68:34 vlan_id 3390 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11372 flower src_mac 02:64:c7:3a:47:93 dst_mac 02:a0:c5:f5:d4:e2 src_ip 15.170.124.130 dst_ip 89.108.157.165 ip_proto icmp code 178 type 0 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11373 flower src_mac 02:6e:48:0b:40:ff dst_mac 02:e1:e8:42:65:4a action drop && tc filter add dev swp33 ingress protocol ip pref 11374 flower src_mac 02:7b:b2:d7:f0:e4 dst_mac 02:04:b8:b2:ea:18 src_ip 54.175.237.185 dst_ip 50.103.249.157 ip_proto tcp src_port 23144 dst_port 61592 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11375 flower src_mac 02:40:3f:3d:9d:13 dst_mac 02:3f:69:ec:9b:20 action trap && tc filter add dev swp33 ingress protocol ip pref 11376 flower src_mac 02:72:f8:92:d9:19 dst_mac 02:6e:8f:e6:db:7a src_ip 80.191.234.121 dst_ip 65.206.36.19 ip_proto udp src_port 20101 dst_port 29207 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11377 flower src_mac 02:3e:94:d1:64:a7 dst_mac 02:5b:f1:ca:6a:a8 vlan_id 2060 vlan_ethtype 0x0800 src_ip 34.97.5.90 dst_ip 94.177.0.221 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11378 flower src_mac 02:88:10:ae:7c:b0 dst_mac 02:f9:a9:8f:a2:8c vlan_id 1670 vlan_ethtype ipv4 src_ip 103.85.225.103 dst_ip 81.76.23.202 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11379 flower src_mac 02:31:10:d6:5e:a8 dst_mac 02:a9:66:97:14:c8 vlan_id 843 vlan_ethtype 0x0800 src_ip 55.148.101.88 dst_ip 112.163.100.109 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11380 flower src_mac 02:38:d1:d8:c0:98 dst_mac 02:03:39:53:6d:76 vlan_id 1611 vlan_ethtype ip src_ip 126.221.88.187 dst_ip 59.134.68.23 action trap && tc filter add dev swp33 ingress protocol ip pref 11381 flower src_mac 02:b4:e0:6e:e8:73 dst_mac 02:d6:f7:08:37:9b src_ip 25.133.3.121 dst_ip 102.203.252.229 ip_proto icmp code 115 type 4 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11382 flower src_mac 02:e4:34:c5:54:53 dst_mac 02:1c:e4:35:64:11 src_ip 32.94.243.246 dst_ip 77.225.249.47 ip_proto tcp src_port 53170 dst_port 33027 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11383 flower src_mac 02:b6:6c:f9:62:ba dst_mac 02:c4:46:1c:0d:b0 src_ip 119.235.20.186 dst_ip 108.120.36.199 ip_proto tcp src_port 20853 dst_port 15771 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11384 flower src_mac 02:bc:60:fc:98:67 dst_mac 02:1c:36:0f:53:86 vlan_id 362 vlan_ethtype ip src_ip 77.55.100.136 dst_ip 76.80.153.205 ip_proto udp src_port 47938 dst_port 1961 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11385 flower src_mac 02:c5:23:9e:d2:b0 dst_mac 02:e2:c8:01:ef:58 vlan_id 925 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11386 flower src_mac 02:01:85:e5:54:b8 dst_mac 02:a8:c2:e5:49:2e src_ip 97.165.102.27 dst_ip 83.24.212.217 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11387 flower src_mac 02:28:cb:36:20:c5 dst_mac 02:bc:47:1a:47:dc action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11388 flower src_mac 02:30:b9:a6:a7:05 dst_mac 02:79:f2:cb:ed:3b vlan_id 789 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11389 flower src_mac 02:25:c4:7d:22:51 dst_mac 02:6e:e3:5b:20:12 src_ip 43.240.160.121 dst_ip 45.119.107.37 ip_proto icmp code 243 type 0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11390 flower src_mac 02:f6:55:bc:1f:e3 dst_mac 02:83:99:df:09:2b vlan_id 1973 vlan_ethtype ip src_ip 21.90.82.124 dst_ip 79.143.244.85 ip_proto udp src_port 11788 dst_port 39514 action pass && tc filter add dev swp33 ingress protocol ip pref 11391 flower src_mac 02:af:9f:a8:f3:77 dst_mac 02:3b:37:0e:02:63 src_ip 85.13.252.198 dst_ip 11.22.113.70 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11392 flower src_mac 02:f1:b8:39:d8:65 dst_mac 02:93:fc:95:46:ea action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11393 flower src_mac 02:ac:20:8b:c0:17 dst_mac 02:0f:e0:cc:2d:a3 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11394 flower src_mac 02:af:12:c6:6f:20 dst_mac 02:92:c2:67:00:63 vlan_id 472 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11395 flower src_mac 02:74:0a:7b:6f:70 dst_mac 02:ce:6d:6c:b5:ba vlan_id 2778 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11396 flower src_mac 02:ac:d0:a4:67:01 dst_mac 02:8e:b5:c7:38:f4 vlan_id 3142 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11397 flower src_mac 02:ad:f2:2a:fa:84 dst_mac 02:eb:4e:66:8d:d2 src_ip 34.200.36.158 dst_ip 101.218.116.28 ip_proto udp src_port 8017 dst_port 19363 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11398 flower src_mac 02:d8:05:b9:12:fa dst_mac 02:79:d1:ef:74:b9 vlan_id 810 vlan_ethtype 0x0800 src_ip 102.209.185.59 dst_ip 72.89.167.210 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11399 flower src_mac 02:94:c9:cd:3c:c5 dst_mac 02:12:3f:78:10:f8 vlan_id 1167 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11400 flower src_mac 02:e8:25:c0:34:12 dst_mac 02:90:1c:fa:b5:83 vlan_id 178 vlan_ethtype ip src_ip 52.227.30.235 dst_ip 14.0.95.178 ip_proto udp src_port 13837 dst_port 7947 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11401 flower src_mac 02:ac:67:bd:0a:4d dst_mac 02:5a:e6:d0:ae:83 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11402 flower src_mac 02:3f:7f:cc:74:85 dst_mac 02:51:52:1a:08:c4 vlan_id 3761 vlan_ethtype ip src_ip 67.236.28.110 dst_ip 11.187.146.239 ip_proto udp src_port 14501 dst_port 61770 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11403 flower src_mac 02:d3:75:1e:8c:6f dst_mac 02:e3:12:81:a2:c8 src_ip 113.13.156.217 dst_ip 109.13.129.161 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11404 flower src_mac 02:6d:b3:3e:4a:8d dst_mac 02:07:00:53:ca:23 vlan_id 1585 vlan_ethtype 0x0800 src_ip 33.18.79.28 dst_ip 17.12.32.223 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11405 flower src_mac 02:bb:96:a5:97:05 dst_mac 02:64:af:5d:70:f0 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11406 flower src_mac 02:8e:f2:bb:dc:fe dst_mac 02:e5:44:59:52:4e action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11407 flower src_mac 02:43:3a:a6:ac:f4 dst_mac 02:6e:cc:f0:80:4d action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11408 flower src_mac 02:f1:22:dc:04:5a dst_mac 02:3b:a7:b7:37:98 src_ip 50.44.114.98 dst_ip 106.30.91.203 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11409 flower src_mac 02:cc:b4:6e:ad:0d dst_mac 02:a8:e9:ee:02:c5 vlan_id 1204 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11410 flower src_mac 02:6a:27:5a:be:6f dst_mac 02:24:77:8e:bf:25 vlan_id 415 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11411 flower src_mac 02:82:5b:73:4d:70 dst_mac 02:73:4f:cf:0a:8f src_ip 80.113.244.148 dst_ip 81.220.215.11 ip_proto tcp src_port 18218 dst_port 57813 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11412 flower src_mac 02:cc:cc:dd:b5:29 dst_mac 02:be:65:e1:1e:b1 vlan_id 1834 vlan_ethtype 0x0800 src_ip 55.176.183.248 dst_ip 88.229.123.176 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11413 flower src_mac 02:56:8d:0f:4f:4a dst_mac 02:b4:8b:80:1b:d4 src_ip 119.49.98.83 dst_ip 45.242.234.217 ip_proto udp src_port 4996 dst_port 35381 action trap && tc filter add dev swp33 ingress protocol ip pref 11414 flower src_mac 02:92:81:12:14:18 dst_mac 02:e1:f0:e7:f9:30 src_ip 51.15.13.209 dst_ip 121.217.123.231 action pass && tc filter add dev swp33 ingress protocol ip pref 11415 flower src_mac 02:42:b9:8f:0d:4d dst_mac 02:16:b6:07:04:df src_ip 11.103.236.38 dst_ip 40.95.66.153 ip_proto udp src_port 14740 dst_port 43976 action drop && tc filter add dev swp33 ingress protocol ip pref 11416 flower src_mac 02:c9:d5:ce:5d:78 dst_mac 02:f7:69:19:66:ac src_ip 38.149.162.148 dst_ip 94.166.26.204 ip_proto tcp src_port 50551 dst_port 31034 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11417 flower src_mac 02:f0:f6:07:77:9d dst_mac 02:d6:2a:f0:29:c5 vlan_id 640 vlan_ethtype 0x0800 src_ip 87.0.71.198 dst_ip 115.110.192.155 ip_proto tcp src_port 64072 dst_port 7580 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11418 flower src_mac 02:ac:62:ea:3c:7e dst_mac 02:a9:19:11:38:57 vlan_id 2595 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11419 flower src_mac 02:68:af:12:6c:b0 dst_mac 02:45:e8:93:56:ca action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11420 flower src_mac 02:1f:70:76:2b:ee dst_mac 02:61:00:b3:b6:05 src_ip 67.75.120.71 dst_ip 56.126.162.122 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11421 flower src_mac 02:00:3b:40:72:8a dst_mac 02:83:78:ff:a8:84 src_ip 51.76.13.229 dst_ip 35.180.160.34 ip_proto icmp code 113 type 13 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11422 flower src_mac 02:5b:e9:5d:4f:cd dst_mac 02:39:4b:d9:50:6b action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11423 flower src_mac 02:df:58:d4:e3:bd dst_mac 02:30:af:7c:a3:e7 vlan_id 966 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11424 flower src_mac 02:da:11:a7:05:6f dst_mac 02:3c:27:e6:b2:2e vlan_id 684 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11425 flower src_mac 02:63:95:c0:46:a8 dst_mac 02:23:54:fe:ac:e3 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11426 flower src_mac 02:62:8f:c5:07:3e dst_mac 02:4c:73:15:64:ea action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11427 flower src_mac 02:11:f2:a2:07:4f dst_mac 02:0a:4b:be:d6:0e vlan_id 3691 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11428 flower src_mac 02:23:23:01:d9:cb dst_mac 02:dc:84:ed:74:94 vlan_id 49 vlan_ethtype 0x0800 src_ip 91.109.249.58 dst_ip 66.26.161.26 action trap && tc filter add dev swp33 ingress protocol ip pref 11429 flower src_mac 02:56:ef:5d:ce:56 dst_mac 02:40:52:87:cc:38 src_ip 105.41.26.106 dst_ip 11.157.172.48 ip_proto udp src_port 3746 dst_port 53834 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11430 flower src_mac 02:be:d8:49:18:8f dst_mac 02:e8:49:4b:b5:1c action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11431 flower src_mac 02:3b:7a:ae:b9:7f dst_mac 02:a8:f5:4d:78:f2 vlan_id 2804 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11432 flower src_mac 02:fa:7b:ad:da:96 dst_mac 02:d2:f9:70:f6:e9 vlan_id 1715 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11433 flower src_mac 02:2f:2a:e2:c8:e7 dst_mac 02:54:03:f2:75:90 vlan_id 1004 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11434 flower src_mac 02:26:a0:11:1b:50 dst_mac 02:2c:71:13:4f:e2 vlan_id 2328 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11435 flower src_mac 02:d0:27:e3:3b:c8 dst_mac 02:f1:17:56:3c:55 vlan_id 3669 vlan_ethtype ip src_ip 50.189.48.236 dst_ip 17.253.85.187 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11436 flower src_mac 02:97:ff:38:58:07 dst_mac 02:4a:d6:52:8b:99 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11437 flower src_mac 02:58:6f:94:42:08 dst_mac 02:21:c5:27:78:50 src_ip 125.4.247.196 dst_ip 91.196.123.95 ip_proto icmp code 69 type 5 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11438 flower src_mac 02:97:09:f0:bd:0f dst_mac 02:ef:2a:c7:52:38 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11439 flower src_mac 02:67:55:db:52:b4 dst_mac 02:ac:62:a4:f6:fd src_ip 105.161.118.155 dst_ip 27.51.120.236 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11440 flower src_mac 02:99:7c:6a:d2:a3 dst_mac 02:bb:57:53:b5:e3 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11441 flower src_mac 02:b5:94:cc:03:a2 dst_mac 02:f1:83:4c:54:a0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11442 flower src_mac 02:7a:9b:a6:ae:bb dst_mac 02:a3:58:8d:4b:15 vlan_id 1201 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 11443 flower src_mac 02:77:b3:5f:a7:59 dst_mac 02:75:97:43:ed:21 src_ip 122.187.36.58 dst_ip 111.148.40.173 ip_proto icmp code 101 type 11 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11444 flower src_mac 02:b5:7a:de:89:8b dst_mac 02:a8:2d:22:e8:df action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11445 flower src_mac 02:1a:b2:e0:19:d1 dst_mac 02:02:57:4f:71:69 vlan_id 3855 vlan_ethtype ip src_ip 93.76.59.102 dst_ip 89.110.48.126 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11446 flower src_mac 02:b4:02:32:f3:a1 dst_mac 02:81:6d:d0:00:e3 vlan_id 3074 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11447 flower src_mac 02:01:78:d2:84:66 dst_mac 02:3b:b6:b4:c3:32 src_ip 93.13.8.120 dst_ip 40.22.136.177 ip_proto tcp src_port 2480 dst_port 61880 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11448 flower src_mac 02:dd:b0:c1:a7:9e dst_mac 02:63:21:3d:46:5f action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11449 flower src_mac 02:0e:55:cf:56:52 dst_mac 02:b4:77:24:63:cb action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11450 flower src_mac 02:07:c5:ed:e0:b2 dst_mac 02:db:a7:30:e5:ac src_ip 81.182.115.71 dst_ip 50.182.193.89 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11451 flower src_mac 02:03:a2:88:e6:35 dst_mac 02:c3:4c:5e:ef:e1 src_ip 22.46.255.159 dst_ip 56.31.69.92 ip_proto tcp src_port 62736 dst_port 796 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11452 flower src_mac 02:aa:0c:11:5a:16 dst_mac 02:d2:d6:ce:f5:0f vlan_id 3418 vlan_ethtype ipv4 src_ip 111.43.107.134 dst_ip 77.132.107.173 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11453 flower src_mac 02:06:f1:b5:c2:05 dst_mac 02:57:db:11:57:bb vlan_id 1205 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11454 flower src_mac 02:ad:c5:4c:3c:22 dst_mac 02:2a:19:2d:16:b0 vlan_id 2688 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11455 flower src_mac 02:55:35:8b:a9:47 dst_mac 02:e4:cb:84:33:32 vlan_id 1013 vlan_ethtype ip src_ip 35.215.0.76 dst_ip 56.112.0.184 ip_proto udp src_port 35337 dst_port 54538 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11456 flower src_mac 02:6d:d3:29:86:66 dst_mac 02:9b:5e:3d:3c:79 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11457 flower src_mac 02:6c:1b:2b:e9:99 dst_mac 02:5e:ea:49:60:d1 src_ip 21.110.216.5 dst_ip 34.251.166.154 ip_proto udp src_port 44869 dst_port 4047 action pass && tc filter add dev swp33 ingress protocol ip pref 11458 flower src_mac 02:00:a6:87:26:eb dst_mac 02:3b:45:fe:a8:66 src_ip 64.227.104.20 dst_ip 21.56.219.234 ip_proto tcp src_port 28502 dst_port 9713 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11459 flower src_mac 02:48:e8:a1:ae:97 dst_mac 02:5e:31:21:bc:f6 src_ip 88.54.30.169 dst_ip 60.100.3.161 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11460 flower src_mac 02:5a:15:ae:f0:4d dst_mac 02:e9:a0:14:8c:5b action pass && tc filter add dev swp33 ingress protocol ip pref 11461 flower src_mac 02:a3:f7:22:f4:8d dst_mac 02:42:07:26:ac:10 src_ip 68.72.227.63 dst_ip 60.150.179.144 ip_proto icmp code 190 type 13 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11462 flower src_mac 02:79:98:8e:a6:25 dst_mac 02:ad:77:39:f4:a3 vlan_id 3925 vlan_ethtype ipv4 src_ip 25.134.217.198 dst_ip 83.182.172.240 ip_proto udp src_port 37067 dst_port 63428 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11463 flower src_mac 02:af:9e:29:81:59 dst_mac 02:6b:69:8f:69:36 src_ip 80.6.77.16 dst_ip 85.171.128.32 ip_proto tcp src_port 51355 dst_port 22506 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11464 flower src_mac 02:7f:e9:1c:30:19 dst_mac 02:6c:5c:01:b2:45 vlan_id 255 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11465 flower src_mac 02:59:4a:7c:76:a7 dst_mac 02:d5:e9:59:0c:92 action drop && tc filter add dev swp33 ingress protocol ip pref 11466 flower src_mac 02:5f:0b:e1:25:01 dst_mac 02:a5:fe:44:23:97 src_ip 110.173.255.154 dst_ip 93.248.58.99 ip_proto udp src_port 31021 dst_port 27801 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11467 flower src_mac 02:63:46:16:84:6e dst_mac 02:c6:c7:dc:fa:4e src_ip 37.58.226.69 dst_ip 114.219.246.127 ip_proto icmp code 200 type 14 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11468 flower src_mac 02:ed:02:77:c6:57 dst_mac 02:00:59:a6:bc:8c src_ip 119.42.223.4 dst_ip 50.57.210.225 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11469 flower src_mac 02:27:a7:00:aa:26 dst_mac 02:18:e8:56:82:96 vlan_id 1207 vlan_ethtype ip src_ip 95.127.215.186 dst_ip 85.164.2.8 ip_proto udp src_port 53943 dst_port 47137 action pass && tc filter add dev swp33 ingress protocol ip pref 11470 flower src_mac 02:7c:9c:3d:87:76 dst_mac 02:c0:b4:db:89:36 src_ip 126.74.199.41 dst_ip 22.231.38.65 ip_proto icmp code 56 type 0 action trap && tc filter add dev swp33 ingress protocol ip pref 11471 flower src_mac 02:33:cd:fb:f6:8b dst_mac 02:e6:28:e9:43:ef src_ip 28.5.95.135 dst_ip 53.138.247.18 ip_proto udp src_port 20004 dst_port 19664 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11472 flower src_mac 02:d6:e7:d1:00:c1 dst_mac 02:fa:5e:41:29:20 vlan_id 146 vlan_ethtype 0x0800 src_ip 60.84.181.213 dst_ip 93.125.224.157 ip_proto udp src_port 2183 dst_port 23565 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11473 flower src_mac 02:43:cf:5b:78:0c dst_mac 02:6f:db:0a:f7:bc action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11474 flower src_mac 02:e1:f8:e4:e7:d2 dst_mac 02:84:cb:5e:ee:ff src_ip 26.250.33.46 dst_ip 20.60.60.202 ip_proto icmp code 82 type 18 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11475 flower src_mac 02:69:32:2f:27:f7 dst_mac 02:34:5d:4a:05:f6 src_ip 103.166.105.226 dst_ip 50.212.181.240 ip_proto icmp code 139 type 12 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11476 flower src_mac 02:51:8d:6a:a0:f6 dst_mac 02:6d:4c:93:54:ba vlan_id 3235 vlan_ethtype ipv4 src_ip 83.58.66.71 dst_ip 64.120.11.81 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11477 flower src_mac 02:f8:3b:a4:fa:e3 dst_mac 02:70:47:c3:32:4a vlan_id 1536 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11478 flower src_mac 02:b5:75:b3:59:b8 dst_mac 02:b0:49:92:4e:1a vlan_id 3319 vlan_ethtype 0x0800 src_ip 120.207.191.18 dst_ip 42.96.224.131 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11479 flower src_mac 02:6a:60:86:95:c2 dst_mac 02:ce:72:9b:60:19 vlan_id 2615 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11480 flower src_mac 02:21:d4:f4:02:36 dst_mac 02:da:d8:c5:48:3b vlan_id 3650 vlan_ethtype ipv4 src_ip 59.108.0.163 dst_ip 26.99.206.24 ip_proto tcp src_port 58994 dst_port 44074 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11481 flower src_mac 02:3d:7c:3e:50:70 dst_mac 02:72:9f:d1:0f:b8 vlan_id 3131 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11482 flower src_mac 02:d5:5e:a4:9a:b6 dst_mac 02:48:9e:47:c1:46 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11483 flower src_mac 02:71:eb:56:6c:2f dst_mac 02:83:70:2e:6d:a7 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11484 flower src_mac 02:f8:e2:21:ad:71 dst_mac 02:80:d6:23:59:c7 vlan_id 3281 vlan_ethtype ip src_ip 15.203.3.246 dst_ip 79.234.253.76 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11485 flower src_mac 02:91:71:70:d6:48 dst_mac 02:18:1e:a3:fb:3d src_ip 88.29.65.70 dst_ip 124.79.203.112 ip_proto icmp code 36 type 13 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11486 flower src_mac 02:38:91:62:8e:dc dst_mac 02:84:be:1f:9c:f4 vlan_id 2062 vlan_ethtype ipv4 src_ip 82.175.111.177 dst_ip 69.52.235.8 ip_proto tcp src_port 23363 dst_port 42488 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11487 flower src_mac 02:98:33:68:45:98 dst_mac 02:ad:a8:a6:ee:76 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11488 flower src_mac 02:72:f2:91:0b:40 dst_mac 02:b5:06:bb:64:8f vlan_id 2145 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11489 flower src_mac 02:ef:95:7b:56:65 dst_mac 02:fb:06:2b:49:d8 vlan_id 2382 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11490 flower src_mac 02:3b:d9:e8:44:c2 dst_mac 02:3e:f6:e3:cd:43 vlan_id 1534 vlan_ethtype ipv4 src_ip 101.5.90.218 dst_ip 89.1.249.63 ip_proto udp src_port 65303 dst_port 38187 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11491 flower src_mac 02:99:5b:8f:3f:85 dst_mac 02:b4:ea:d1:02:e6 vlan_id 498 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11492 flower src_mac 02:55:94:e6:0d:2d dst_mac 02:7b:9a:e0:19:2c vlan_id 3856 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11493 flower src_mac 02:4f:2c:d0:78:b6 dst_mac 02:49:4e:b3:86:2e vlan_id 648 vlan_ethtype 0x0800 src_ip 126.170.4.46 dst_ip 124.146.50.14 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11494 flower src_mac 02:01:13:c3:42:32 dst_mac 02:51:2f:d2:a0:ed action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11495 flower src_mac 02:c1:24:0b:94:df dst_mac 02:a9:04:3d:3b:ec src_ip 23.216.209.115 dst_ip 99.91.71.167 ip_proto tcp src_port 17190 dst_port 55649 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11496 flower src_mac 02:ac:b3:37:10:ca dst_mac 02:05:4d:20:23:e1 vlan_id 3494 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11497 flower src_mac 02:74:93:02:b3:89 dst_mac 02:92:63:c6:dd:77 vlan_id 109 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11498 flower src_mac 02:e7:94:17:2c:0c dst_mac 02:7b:89:00:e5:57 action drop && tc filter add dev swp33 ingress protocol ip pref 11499 flower src_mac 02:14:a1:ab:be:0f dst_mac 02:b0:de:06:05:c0 src_ip 76.126.10.218 dst_ip 115.23.120.125 ip_proto tcp src_port 43146 dst_port 56296 action pass && tc filter add dev swp33 ingress protocol ip pref 11500 flower src_mac 02:06:4a:0a:18:cd dst_mac 02:b7:0f:ca:8f:69 src_ip 93.52.208.78 dst_ip 39.199.243.67 ip_proto icmp code 186 type 0 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11501 flower src_mac 02:b7:bf:68:64:02 dst_mac 02:55:33:8c:50:a7 vlan_id 452 vlan_ethtype ip src_ip 89.254.129.235 dst_ip 37.116.128.66 ip_proto udp src_port 58727 dst_port 18913 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11502 flower src_mac 02:7c:99:8a:09:4f dst_mac 02:db:37:a5:a7:1b vlan_id 3097 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11503 flower src_mac 02:92:57:74:bf:40 dst_mac 02:90:9b:a8:8a:1c vlan_id 41 vlan_ethtype 0x0800 src_ip 20.140.121.179 dst_ip 62.12.74.44 ip_proto tcp src_port 2850 dst_port 55857 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11504 flower src_mac 02:4e:77:ab:58:5a dst_mac 02:65:6a:97:2c:e2 vlan_id 1381 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11505 flower src_mac 02:cb:8e:8b:52:ad dst_mac 02:e8:47:8c:61:72 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11506 flower src_mac 02:13:64:3d:af:f1 dst_mac 02:46:8f:83:48:6d vlan_id 2569 vlan_ethtype ip src_ip 77.43.130.87 dst_ip 125.189.185.244 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11507 flower src_mac 02:fd:0c:7f:ac:d8 dst_mac 02:68:c3:26:fa:31 action pass && tc filter add dev swp33 ingress protocol ip pref 11508 flower src_mac 02:bd:2c:3f:73:2d dst_mac 02:f6:e0:72:e2:ab src_ip 94.127.64.238 dst_ip 117.31.166.94 ip_proto tcp src_port 46417 dst_port 18180 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11509 flower src_mac 02:5b:47:7b:2d:f2 dst_mac 02:67:a2:c3:fe:f7 vlan_id 2589 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11510 flower src_mac 02:69:31:c5:76:ab dst_mac 02:f7:c8:f3:ef:45 vlan_id 48 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11511 flower src_mac 02:e9:15:a2:20:68 dst_mac 02:77:71:f4:73:e4 src_ip 16.252.25.37 dst_ip 81.22.117.114 ip_proto icmp code 225 type 17 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11512 flower src_mac 02:cf:ef:3a:86:63 dst_mac 02:43:7e:be:07:45 vlan_id 256 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11513 flower src_mac 02:d2:69:cb:81:81 dst_mac 02:67:04:ec:2a:15 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11514 flower src_mac 02:19:98:cc:fe:66 dst_mac 02:53:36:ca:d9:a3 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11515 flower src_mac 02:56:df:cc:4f:1c dst_mac 02:8d:e9:03:f2:6d vlan_id 1678 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 11516 flower src_mac 02:fd:79:5e:ed:79 dst_mac 02:50:f1:3f:0a:68 src_ip 92.202.97.238 dst_ip 12.29.161.54 ip_proto tcp src_port 23482 dst_port 46099 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11517 flower src_mac 02:e1:e4:39:ac:5e dst_mac 02:fa:c4:08:64:e3 vlan_id 1575 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11518 flower src_mac 02:6f:ea:3e:b6:5b dst_mac 02:ec:c0:f5:30:3c src_ip 78.62.253.131 dst_ip 78.216.181.233 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11519 flower src_mac 02:7d:26:c2:e3:ee dst_mac 02:a8:bf:20:b7:2e action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11520 flower src_mac 02:c5:47:a8:1d:8e dst_mac 02:60:9f:43:32:6c src_ip 33.205.34.8 dst_ip 107.108.193.109 ip_proto udp src_port 64298 dst_port 7358 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11521 flower src_mac 02:bb:64:8d:58:88 dst_mac 02:12:1a:f3:37:ac vlan_id 74 vlan_ethtype ip src_ip 102.93.41.242 dst_ip 68.169.178.41 ip_proto udp src_port 22425 dst_port 47761 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11522 flower src_mac 02:ee:bb:dc:85:fa dst_mac 02:76:1a:e1:9c:54 vlan_id 3335 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11523 flower src_mac 02:c4:99:a7:20:ab dst_mac 02:40:52:09:72:b8 vlan_id 2433 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11524 flower src_mac 02:73:b9:a9:6c:79 dst_mac 02:3a:1d:91:d7:7b vlan_id 1971 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11525 flower src_mac 02:e5:61:9f:3d:a1 dst_mac 02:aa:d4:62:23:7c action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11526 flower src_mac 02:e2:90:27:73:41 dst_mac 02:25:53:65:05:f5 src_ip 69.159.83.232 dst_ip 31.205.94.246 ip_proto tcp src_port 63939 dst_port 20121 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11527 flower src_mac 02:79:6c:af:67:d9 dst_mac 02:eb:46:b0:6d:da action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11528 flower src_mac 02:c0:74:67:d7:0f dst_mac 02:aa:4e:bb:a3:80 src_ip 63.176.17.122 dst_ip 106.147.223.121 ip_proto udp src_port 3778 dst_port 52329 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11529 flower src_mac 02:3f:c3:02:72:c7 dst_mac 02:f7:cb:b7:f2:f8 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11530 flower src_mac 02:b7:94:f2:e0:be dst_mac 02:2b:a4:f8:53:bf src_ip 66.118.113.21 dst_ip 121.48.97.160 ip_proto tcp src_port 53714 dst_port 13507 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11531 flower src_mac 02:3f:2f:ad:01:f8 dst_mac 02:53:49:6e:eb:f8 vlan_id 462 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11532 flower src_mac 02:ec:e6:1a:54:7e dst_mac 02:91:37:d0:aa:cf vlan_id 1373 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11533 flower src_mac 02:08:03:03:0b:53 dst_mac 02:13:84:b1:81:30 vlan_id 1132 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11534 flower src_mac 02:08:b4:f0:09:37 dst_mac 02:00:eb:79:97:b1 vlan_id 3112 vlan_ethtype ip src_ip 100.252.137.163 dst_ip 63.229.13.231 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11535 flower src_mac 02:ad:2e:b6:de:02 dst_mac 02:d3:b1:aa:62:95 action drop INFO asyncssh:logging.py:92 [conn=24, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter show dev swp33 ingress | grep action | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=12] Command: tc filter show dev swp33 ingress | grep action | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=12] Channel closed DEBUG infra1:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=24, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter show dev swp33 ingress | grep in_hw | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=14] Command: tc filter show dev swp33 ingress | grep in_hw | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=14] Channel closed DEBUG infra1:Logger.py:156 1536 INFO DENT:Logger.py:84 [DENT infrastructure 1] Total number of rules: 1536, offloaded: 1536 INFO asyncssh:logging.py:92 [conn=24, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 10000 && tc filter delete dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=16] Command: tc filter delete dev swp33 ingress pref 10000 && tc filter delete dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter show dev swp33 ingress pref 10000 && tc filter show dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=18] Command: tc filter show dev swp33 ingress pref 10000 && tc filter show dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=18] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_rule_deletion from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=24, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:26:38 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=24, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=24, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=24, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=24, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:26:38 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=24, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:26:39 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=24, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=24, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=24, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=24, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=24, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=24, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=24, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=24, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=24, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=50] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=24, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=52] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=24, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=24, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=24, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=56] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=24, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=24, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=58] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=24, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_addition_deletion_under_traffic | 168.86 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_addition_deletion_under_traffic">Starting testcase:test_acl_addition_deletion_under_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1408' coro=<test_acl_addition_deletion_under_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:272> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=24, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=25] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=25] Local address: 172.17.0.4, port 41066 INFO asyncssh:logging.py:92 [conn=25] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=25] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=25] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:26:43 UTC 2087 INFO asyncssh:logging.py:92 [conn=25, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=25, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=25, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=25, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=25, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=25, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 49000 flower skip_sw src_ip 98.142.6.2 dst_ip 98.221.115.167 ip_proto udp src_port 62217 dst_port 20953 action pass && tc filter add dev swp33 ingress pref 49001 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=25, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=8] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 49000 flower skip_sw src_ip 98.142.6.2 dst_ip 98.221.115.167 ip_proto udp src_port 62217 dst_port 20953 action pass && tc filter add dev swp33 ingress pref 49001 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=25, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"98.221.115.167","src_ip":"98.142.6.2","dst_port":20953,"src_port":62217},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_ip_proto_udp_dst_ip_98.221.115.167_src_ip_98.142.6.2_dst_port_20953_src_port_62217 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad614100>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_eth_type_ipv4_ip_proto_udp_dst_ip_98.221.115.167_src_ip_98.142.6.2_dst_port_20953_src_port_62217 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 79822 Rx 79822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_eth_type_ipv4_ip_proto_udp_dst_ip_98.221.115.167_src_ip_98.142.6.2_dst_port_20953_src_port_62217 Tx Frames: 79822, Rx Frames: 79822, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=25, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7c0880>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_eth_type_ipv4_ip_proto_udp_dst_ip_98.221.115.167_src_ip_98.142.6.2_dst_port_20953_src_port_62217 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 84417 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_eth_type_ipv4_ip_proto_udp_dst_ip_98.221.115.167_src_ip_98.142.6.2_dst_port_20953_src_port_62217 Tx Frames: 104417, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=25, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 49000 flower skip_sw src_ip 98.142.6.2 dst_ip 98.221.115.167 ip_proto udp src_port 62217 dst_port 20953 action pass INFO asyncssh:logging.py:92 [conn=25, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=14] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 49000 flower skip_sw src_ip 98.142.6.2 dst_ip 98.221.115.167 ip_proto udp src_port 62217 dst_port 20953 action pass INFO asyncssh:logging.py:92 [conn=25, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad616d40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_eth_type_ipv4_ip_proto_udp_dst_ip_98.221.115.167_src_ip_98.142.6.2_dst_port_20953_src_port_62217 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 96681 Rx 96681 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_eth_type_ipv4_ip_proto_udp_dst_ip_98.221.115.167_src_ip_98.142.6.2_dst_port_20953_src_port_62217 Tx Frames: 96681, Rx Frames: 96681, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_addition_deletion_under_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=25, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:29:31 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=25, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=25, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=25, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":79,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=25, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=25, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:29:31 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=25, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:29:32 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=25, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=25, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=25, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=25, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=25, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=25, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=25, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=25, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=25, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=25, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=25, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=25, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=25, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=25, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=25, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=25, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-pass] | 199.39 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-pass]">Starting testcase:test_acl_all_selectors[shared_block-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1477' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=25, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=26] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=26] Local address: 172.17.0.4, port 58776 INFO asyncssh:logging.py:92 [conn=26] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=26] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=26] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:29:32 UTC 2087 INFO asyncssh:logging.py:92 [conn=26, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=26, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=26, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1142 && bridge vlan add dev swp34 vid 1142 INFO asyncssh:logging.py:92 [conn=26, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=6] Command: bridge vlan add dev swp33 vid 1142 && bridge vlan add dev swp34 vid 1142 INFO asyncssh:logging.py:92 [conn=26, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=8] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:fd:c9:b7:bd:73 dst_mac 02:a4:0d:e6:86:5e vlan_id 1142 vlan_ethtype ip src_ip 54.45.101.97 dst_ip 26.21.107.114 ip_proto udp src_port 14084 dst_port 60598 action pass INFO asyncssh:logging.py:92 [conn=26, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:fd:c9:b7:bd:73 dst_mac 02:a4:0d:e6:86:5e vlan_id 1142 vlan_ethtype ip src_ip 54.45.101.97 dst_ip 26.21.107.114 ip_proto udp src_port 14084 dst_port 60598 action pass INFO asyncssh:logging.py:92 [conn=26, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=26, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=26, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1142,"vlan_ethtype":"ip","dst_mac":"02:a4:0d:e6:86:5e","src_mac":"02:fd:c9:b7:bd:73","eth_type":"ipv4","ip_proto":"udp","dst_ip":"26.21.107.114","src_ip":"54.45.101.97","dst_port":60598,"src_port":14084},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1142, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1142, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6697e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084 SIP-DIP N/A Tx 60702 Rx 60702 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_srcMac SIP-DIP N/A Tx 60702 Rx 60702 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_dstMac SIP-DIP N/A Tx 60702 Rx 60702 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_vlanID SIP-DIP N/A Tx 60702 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_srcIp SIP-DIP N/A Tx 60702 Rx 60702 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_dstIp SIP-DIP N/A Tx 60702 Rx 60702 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_srcPort SIP-DIP N/A Tx 60702 Rx 60702 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_dstPort SIP-DIP N/A Tx 60702 Rx 60702 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084 Tx Frames: 60702, Rx Frames: 60702, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_srcMac Tx Frames: 60702, Rx Frames: 60702, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_dstMac Tx Frames: 60702, Rx Frames: 60702, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_vlanID Tx Frames: 60702, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_srcIp Tx Frames: 60702, Rx Frames: 60702, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_dstIp Tx Frames: 60702, Rx Frames: 60702, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_srcPort Tx Frames: 60702, Rx Frames: 60702, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1142_vlan_ethtype_ip_dst_mac_02:a4:0d:e6:86:5e_src_mac_02:fd:c9:b7:bd:73_eth_type_ipv4_ip_proto_udp_dst_ip_26.21.107.114_src_ip_54.45.101.97_dst_port_60598_src_port_14084_unmatch_dstPort Tx Frames: 60702, Rx Frames: 60702, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=26, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1142,"vlan_ethtype":"ip","dst_mac":"02:a4:0d:e6:86:5e","src_mac":"02:fd:c9:b7:bd:73","eth_type":"ipv4","ip_proto":"udp","dst_ip":"26.21.107.114","src_ip":"54.45.101.97","dst_port":60598,"src_port":14084},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":197,"stats":{"bytes":15539712,"packets":60702,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15539712,"hw_packets":60702,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60702, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60702, packets = 60702, expected = 60702, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60702, hw_packets = 60702, expected = 60702, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=26, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:32:51 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=26, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=26, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=26, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":80,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=26, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=26, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:32:51 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=26, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:32:51 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=26, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=26, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=26, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=26, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=26, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=26, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=26, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=26, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=26, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=26, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=26, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=26, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=26, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=26, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=26, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=26, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=26, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=26, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-drop] | 193.05 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-drop]">Starting testcase:test_acl_all_selectors[shared_block-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1546' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=26, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=27] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=27] Local address: 172.17.0.4, port 40426 INFO asyncssh:logging.py:92 [conn=27] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=27] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=27] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:32:52 UTC 2087 INFO asyncssh:logging.py:92 [conn=27, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=27, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=27, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2520 && bridge vlan add dev swp34 vid 2520 INFO asyncssh:logging.py:92 [conn=27, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=6] Command: bridge vlan add dev swp33 vid 2520 && bridge vlan add dev swp34 vid 2520 INFO asyncssh:logging.py:92 [conn=27, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=8] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:d6:d7:81:b4:c8 dst_mac 02:28:41:f8:d0:3e vlan_id 2520 vlan_ethtype ip src_ip 91.11.185.204 dst_ip 30.223.185.235 ip_proto udp src_port 64210 dst_port 16063 action drop INFO asyncssh:logging.py:92 [conn=27, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:d6:d7:81:b4:c8 dst_mac 02:28:41:f8:d0:3e vlan_id 2520 vlan_ethtype ip src_ip 91.11.185.204 dst_ip 30.223.185.235 ip_proto udp src_port 64210 dst_port 16063 action drop INFO asyncssh:logging.py:92 [conn=27, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=27, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=27, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2520,"vlan_ethtype":"ip","dst_mac":"02:28:41:f8:d0:3e","src_mac":"02:d6:d7:81:b4:c8","eth_type":"ipv4","ip_proto":"udp","dst_ip":"30.223.185.235","src_ip":"91.11.185.204","dst_port":16063,"src_port":64210},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2520, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2520, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad63a8c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210 SIP-DIP N/A Tx 60550 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_srcMac SIP-DIP N/A Tx 60550 Rx 60550 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_dstMac SIP-DIP N/A Tx 60550 Rx 60550 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_vlanID SIP-DIP N/A Tx 60550 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_srcIp SIP-DIP N/A Tx 60550 Rx 60550 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_dstIp SIP-DIP N/A Tx 60550 Rx 60550 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_srcPort SIP-DIP N/A Tx 60550 Rx 60550 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_dstPort SIP-DIP N/A Tx 60550 Rx 60550 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210 Tx Frames: 60550, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_srcMac Tx Frames: 60550, Rx Frames: 60550, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_dstMac Tx Frames: 60550, Rx Frames: 60550, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_vlanID Tx Frames: 60550, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_srcIp Tx Frames: 60550, Rx Frames: 60550, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_dstIp Tx Frames: 60550, Rx Frames: 60550, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_srcPort Tx Frames: 60550, Rx Frames: 60550, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2520_vlan_ethtype_ip_dst_mac_02:28:41:f8:d0:3e_src_mac_02:d6:d7:81:b4:c8_eth_type_ipv4_ip_proto_udp_dst_ip_30.223.185.235_src_ip_91.11.185.204_dst_port_16063_src_port_64210_unmatch_dstPort Tx Frames: 60550, Rx Frames: 60550, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=27, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2520,"vlan_ethtype":"ip","dst_mac":"02:28:41:f8:d0:3e","src_mac":"02:d6:d7:81:b4:c8","eth_type":"ipv4","ip_proto":"udp","dst_ip":"30.223.185.235","src_ip":"91.11.185.204","dst_port":16063,"src_port":64210},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":191,"stats":{"bytes":15500800,"packets":60550,"drops":60550,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15500800,"hw_packets":60550,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60550, drops = 60550, expected = 60550, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60550, packets = 60550, expected = 60550, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60550, hw_packets = 60550, expected = 60550, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=27, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:36:04 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=27, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=27, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=27, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":81,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=27, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=27, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:36:04 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=27, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:36:04 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=27, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=27, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=27, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=27, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=27, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=27, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=27, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=27, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=27, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=27, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=27, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=27, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=27, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=27, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=27, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=27, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=27, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=27, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-trap] | 197.98 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-trap]">Starting testcase:test_acl_all_selectors[shared_block-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1615' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=27, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=28] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=28] Local address: 172.17.0.4, port 44380 INFO asyncssh:logging.py:92 [conn=28] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=28] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=28] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:36:05 UTC 2087 INFO asyncssh:logging.py:92 [conn=28, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=28, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=28, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 331 && bridge vlan add dev swp34 vid 331 INFO asyncssh:logging.py:92 [conn=28, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=6] Command: bridge vlan add dev swp33 vid 331 && bridge vlan add dev swp34 vid 331 INFO asyncssh:logging.py:92 [conn=28, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=8] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:84:0d:7e:c4:e3 dst_mac 02:22:d9:b8:a0:d2 vlan_id 331 vlan_ethtype ip src_ip 74.17.8.82 dst_ip 47.0.98.237 ip_proto udp src_port 33386 dst_port 16419 action trap INFO asyncssh:logging.py:92 [conn=28, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:84:0d:7e:c4:e3 dst_mac 02:22:d9:b8:a0:d2 vlan_id 331 vlan_ethtype ip src_ip 74.17.8.82 dst_ip 47.0.98.237 ip_proto udp src_port 33386 dst_port 16419 action trap INFO asyncssh:logging.py:92 [conn=28, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=28, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=28, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":331,"vlan_ethtype":"ip","dst_mac":"02:22:d9:b8:a0:d2","src_mac":"02:84:0d:7e:c4:e3","eth_type":"ipv4","ip_proto":"udp","dst_ip":"47.0.98.237","src_ip":"74.17.8.82","dst_port":16419,"src_port":33386},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 331, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 331, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad66a020>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386 SIP-DIP N/A Tx 60826 Rx 24425 Loss 59.844 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_srcMac SIP-DIP N/A Tx 60826 Rx 60826 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_dstMac SIP-DIP N/A Tx 60826 Rx 60826 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_vlanID SIP-DIP N/A Tx 60826 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_srcIp SIP-DIP N/A Tx 60826 Rx 60826 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_dstIp SIP-DIP N/A Tx 60826 Rx 60826 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_srcPort SIP-DIP N/A Tx 60826 Rx 60826 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_dstPort SIP-DIP N/A Tx 60826 Rx 60826 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386 Tx Frames: 60826, Rx Frames: 24425, loss = 59.844, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_srcMac Tx Frames: 60826, Rx Frames: 60826, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_dstMac Tx Frames: 60826, Rx Frames: 60826, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_vlanID Tx Frames: 60826, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_srcIp Tx Frames: 60826, Rx Frames: 60826, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_dstIp Tx Frames: 60826, Rx Frames: 60826, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_srcPort Tx Frames: 60826, Rx Frames: 60826, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_331_vlan_ethtype_ip_dst_mac_02:22:d9:b8:a0:d2_src_mac_02:84:0d:7e:c4:e3_eth_type_ipv4_ip_proto_udp_dst_ip_47.0.98.237_src_ip_74.17.8.82_dst_port_16419_src_port_33386_unmatch_dstPort Tx Frames: 60826, Rx Frames: 60826, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=28, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":331,"vlan_ethtype":"ip","dst_mac":"02:22:d9:b8:a0:d2","src_mac":"02:84:0d:7e:c4:e3","eth_type":"ipv4","ip_proto":"udp","dst_ip":"47.0.98.237","src_ip":"74.17.8.82","dst_port":16419,"src_port":33386},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":196,"stats":{"bytes":15571456,"packets":60826,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15571456,"hw_packets":60826,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60826, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60826, packets = 60826, expected = 60826, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60826, hw_packets = 60826, expected = 60826, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=28, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:39:22 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=28, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=28, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=28, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":82,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=28, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=28, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:39:22 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=28, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:39:22 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=28, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=28, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=28, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=28, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=28, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=28, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=28, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=28, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=28, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=28, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=28, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=28, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=28, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=28, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=28, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=28, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=28, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=28, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-pass] | 186.15 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-pass]">Starting testcase:test_acl_all_selectors[shared_block-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1684' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=28, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=29] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=29] Local address: 172.17.0.4, port 50622 INFO asyncssh:logging.py:92 [conn=29] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=29] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=29] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:39:23 UTC 2087 INFO asyncssh:logging.py:92 [conn=29, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=29, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=29, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=29, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=29, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=6] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:aa:78:f6:ea:94 dst_mac 02:1b:52:03:c5:ff src_ip 111.5.241.213 dst_ip 22.247.32.49 ip_proto udp src_port 13285 dst_port 47152 action pass INFO asyncssh:logging.py:92 [conn=29, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:aa:78:f6:ea:94 dst_mac 02:1b:52:03:c5:ff src_ip 111.5.241.213 dst_ip 22.247.32.49 ip_proto udp src_port 13285 dst_port 47152 action pass INFO asyncssh:logging.py:92 [conn=29, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=29, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=29, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:1b:52:03:c5:ff","src_mac":"02:aa:78:f6:ea:94","eth_type":"ipv4","ip_proto":"udp","dst_ip":"22.247.32.49","src_ip":"111.5.241.213","dst_port":47152,"src_port":13285},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad638520>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285 SIP-DIP N/A Tx 60861 Rx 60861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_srcMac SIP-DIP N/A Tx 60861 Rx 60861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_dstMac SIP-DIP N/A Tx 60861 Rx 60861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_srcIp SIP-DIP N/A Tx 60861 Rx 60861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_dstIp SIP-DIP N/A Tx 60861 Rx 60861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_srcPort SIP-DIP N/A Tx 60861 Rx 60861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_dstPort SIP-DIP N/A Tx 60861 Rx 60861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285 Tx Frames: 60861, Rx Frames: 60861, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_srcMac Tx Frames: 60861, Rx Frames: 60861, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_dstMac Tx Frames: 60861, Rx Frames: 60861, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_srcIp Tx Frames: 60861, Rx Frames: 60861, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_dstIp Tx Frames: 60861, Rx Frames: 60861, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_srcPort Tx Frames: 60861, Rx Frames: 60861, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:1b:52:03:c5:ff_src_mac_02:aa:78:f6:ea:94_eth_type_ipv4_ip_proto_udp_dst_ip_22.247.32.49_src_ip_111.5.241.213_dst_port_47152_src_port_13285_unmatch_dstPort Tx Frames: 60861, Rx Frames: 60861, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=29, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:1b:52:03:c5:ff","src_mac":"02:aa:78:f6:ea:94","eth_type":"ipv4","ip_proto":"udp","dst_ip":"22.247.32.49","src_ip":"111.5.241.213","dst_port":47152,"src_port":13285},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":184,"stats":{"bytes":15580416,"packets":60861,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15580416,"hw_packets":60861,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60861, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60861, packets = 60861, expected = 60861, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60861, hw_packets = 60861, expected = 60861, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=29, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:42:28 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=29, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=29, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=29, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":83,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=29, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=29, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:42:28 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=29, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:42:28 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=29, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=29, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=29, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=29, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=29, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=29, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=29, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=29, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=29, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=29, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=29, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=29, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=29, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=29, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=29, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=29, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=29, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=29, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-drop] | 185.33 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-drop]">Starting testcase:test_acl_all_selectors[shared_block-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1751' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=29, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=30] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=30] Local address: 172.17.0.4, port 48922 INFO asyncssh:logging.py:92 [conn=30] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=30] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=30] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:42:29 UTC 2087 INFO asyncssh:logging.py:92 [conn=30, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=30, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=30, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=30, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=30, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=6] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:0e:a7:6c:b0:f8 dst_mac 02:26:21:fa:1e:6f src_ip 84.198.225.214 dst_ip 42.239.132.131 ip_proto udp src_port 10085 dst_port 40720 action drop INFO asyncssh:logging.py:92 [conn=30, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:0e:a7:6c:b0:f8 dst_mac 02:26:21:fa:1e:6f src_ip 84.198.225.214 dst_ip 42.239.132.131 ip_proto udp src_port 10085 dst_port 40720 action drop INFO asyncssh:logging.py:92 [conn=30, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=30, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=30, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:26:21:fa:1e:6f","src_mac":"02:0e:a7:6c:b0:f8","eth_type":"ipv4","ip_proto":"udp","dst_ip":"42.239.132.131","src_ip":"84.198.225.214","dst_port":40720,"src_port":10085},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad639810>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085 SIP-DIP N/A Tx 60645 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_srcMac SIP-DIP N/A Tx 60645 Rx 60645 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_dstMac SIP-DIP N/A Tx 60645 Rx 60645 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_srcIp SIP-DIP N/A Tx 60645 Rx 60645 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_dstIp SIP-DIP N/A Tx 60645 Rx 60645 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_srcPort SIP-DIP N/A Tx 60645 Rx 60645 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_dstPort SIP-DIP N/A Tx 60645 Rx 60645 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085 Tx Frames: 60645, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_srcMac Tx Frames: 60645, Rx Frames: 60645, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_dstMac Tx Frames: 60645, Rx Frames: 60645, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_srcIp Tx Frames: 60645, Rx Frames: 60645, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_dstIp Tx Frames: 60645, Rx Frames: 60645, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_srcPort Tx Frames: 60645, Rx Frames: 60645, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:26:21:fa:1e:6f_src_mac_02:0e:a7:6c:b0:f8_eth_type_ipv4_ip_proto_udp_dst_ip_42.239.132.131_src_ip_84.198.225.214_dst_port_40720_src_port_10085_unmatch_dstPort Tx Frames: 60645, Rx Frames: 60645, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=30, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:26:21:fa:1e:6f","src_mac":"02:0e:a7:6c:b0:f8","eth_type":"ipv4","ip_proto":"udp","dst_ip":"42.239.132.131","src_ip":"84.198.225.214","dst_port":40720,"src_port":10085},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":183,"stats":{"bytes":15525120,"packets":60645,"drops":60645,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15525120,"hw_packets":60645,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60645, drops = 60645, expected = 60645, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60645, packets = 60645, expected = 60645, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60645, hw_packets = 60645, expected = 60645, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=30, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:45:33 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=30, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=30, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=30, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":84,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=30, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=30, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:45:33 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=30, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:45:34 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=30, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=30, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=30, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=30, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=30, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=30, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=30, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=30, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=30, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=30, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=30, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=30, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=30, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=30, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=30, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=30, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=30, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=30, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-trap] | 188.35 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-trap]">Starting testcase:test_acl_all_selectors[shared_block-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1818' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=30, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=31] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=31] Local address: 172.17.0.4, port 33346 INFO asyncssh:logging.py:92 [conn=31] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=31] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=31] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:45:34 UTC 2087 INFO asyncssh:logging.py:92 [conn=31, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=31, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=31, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=31, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=31, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=6] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:1d:51:18:69:9b dst_mac 02:8b:bb:10:2f:e9 src_ip 94.196.68.107 dst_ip 45.245.0.131 ip_proto udp src_port 60601 dst_port 39644 action trap INFO asyncssh:logging.py:92 [conn=31, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:1d:51:18:69:9b dst_mac 02:8b:bb:10:2f:e9 src_ip 94.196.68.107 dst_ip 45.245.0.131 ip_proto udp src_port 60601 dst_port 39644 action trap INFO asyncssh:logging.py:92 [conn=31, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=31, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=31, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:8b:bb:10:2f:e9","src_mac":"02:1d:51:18:69:9b","eth_type":"ipv4","ip_proto":"udp","dst_ip":"45.245.0.131","src_ip":"94.196.68.107","dst_port":39644,"src_port":60601},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad63b220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601 SIP-DIP N/A Tx 60858 Rx 24419 Loss 59.875 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_srcMac SIP-DIP N/A Tx 60858 Rx 60858 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_dstMac SIP-DIP N/A Tx 60858 Rx 60858 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_srcIp SIP-DIP N/A Tx 60858 Rx 60858 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_dstIp SIP-DIP N/A Tx 60858 Rx 60858 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_srcPort SIP-DIP N/A Tx 60858 Rx 60858 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_dstPort SIP-DIP N/A Tx 60858 Rx 60858 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601 Tx Frames: 60858, Rx Frames: 24419, loss = 59.875, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_srcMac Tx Frames: 60858, Rx Frames: 60858, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_dstMac Tx Frames: 60858, Rx Frames: 60858, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_srcIp Tx Frames: 60858, Rx Frames: 60858, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_dstIp Tx Frames: 60858, Rx Frames: 60858, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_srcPort Tx Frames: 60858, Rx Frames: 60858, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:8b:bb:10:2f:e9_src_mac_02:1d:51:18:69:9b_eth_type_ipv4_ip_proto_udp_dst_ip_45.245.0.131_src_ip_94.196.68.107_dst_port_39644_src_port_60601_unmatch_dstPort Tx Frames: 60858, Rx Frames: 60858, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=31, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:8b:bb:10:2f:e9","src_mac":"02:1d:51:18:69:9b","eth_type":"ipv4","ip_proto":"udp","dst_ip":"45.245.0.131","src_ip":"94.196.68.107","dst_port":39644,"src_port":60601},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":186,"stats":{"bytes":15579648,"packets":60858,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15579648,"hw_packets":60858,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60858, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60858, packets = 60858, expected = 60858, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60858, hw_packets = 60858, expected = 60858, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=31, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:48:41 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=31, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=31, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=31, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":85,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=31, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=31, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:48:42 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=31, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:48:42 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=31, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=31, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=31, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=31, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=31, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=31, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=31, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=31, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=31, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=31, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=31, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=31, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=31, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=31, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=31, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=31, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=31, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=31, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-pass] | 199.35 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-pass]">Starting testcase:test_acl_all_selectors[port-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1885' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=31, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=32] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=32] Local address: 172.17.0.4, port 43420 INFO asyncssh:logging.py:92 [conn=32] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=32] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=32] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:48:43 UTC 2087 INFO asyncssh:logging.py:92 [conn=32, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=32, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=32, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1906 && bridge vlan add dev swp34 vid 1906 INFO asyncssh:logging.py:92 [conn=32, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=6] Command: bridge vlan add dev swp33 vid 1906 && bridge vlan add dev swp34 vid 1906 INFO asyncssh:logging.py:92 [conn=32, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:75:cd:fb:20:be dst_mac 02:f9:e7:b2:57:91 vlan_id 1906 vlan_ethtype ip src_ip 115.11.4.75 dst_ip 48.20.170.89 ip_proto udp src_port 28399 dst_port 19121 action pass INFO asyncssh:logging.py:92 [conn=32, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:75:cd:fb:20:be dst_mac 02:f9:e7:b2:57:91 vlan_id 1906 vlan_ethtype ip src_ip 115.11.4.75 dst_ip 48.20.170.89 ip_proto udp src_port 28399 dst_port 19121 action pass INFO asyncssh:logging.py:92 [conn=32, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=32, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=12] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=32, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1906,"vlan_ethtype":"ip","dst_mac":"02:f9:e7:b2:57:91","src_mac":"02:75:cd:fb:20:be","eth_type":"ipv4","ip_proto":"udp","dst_ip":"48.20.170.89","src_ip":"115.11.4.75","dst_port":19121,"src_port":28399},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1906, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1906, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad639270>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399 SIP-DIP N/A Tx 60876 Rx 60876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_srcMac SIP-DIP N/A Tx 60876 Rx 60876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_dstMac SIP-DIP N/A Tx 60876 Rx 60876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_vlanID SIP-DIP N/A Tx 60876 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_srcIp SIP-DIP N/A Tx 60876 Rx 60876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_dstIp SIP-DIP N/A Tx 60876 Rx 60876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_srcPort SIP-DIP N/A Tx 60876 Rx 60876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_dstPort SIP-DIP N/A Tx 60876 Rx 60876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399 Tx Frames: 60876, Rx Frames: 60876, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_srcMac Tx Frames: 60876, Rx Frames: 60876, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_dstMac Tx Frames: 60876, Rx Frames: 60876, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_vlanID Tx Frames: 60876, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_srcIp Tx Frames: 60876, Rx Frames: 60876, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_dstIp Tx Frames: 60876, Rx Frames: 60876, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_srcPort Tx Frames: 60876, Rx Frames: 60876, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1906_vlan_ethtype_ip_dst_mac_02:f9:e7:b2:57:91_src_mac_02:75:cd:fb:20:be_eth_type_ipv4_ip_proto_udp_dst_ip_48.20.170.89_src_ip_115.11.4.75_dst_port_19121_src_port_28399_unmatch_dstPort Tx Frames: 60876, Rx Frames: 60876, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=32, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=14] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1906,"vlan_ethtype":"ip","dst_mac":"02:f9:e7:b2:57:91","src_mac":"02:75:cd:fb:20:be","eth_type":"ipv4","ip_proto":"udp","dst_ip":"48.20.170.89","src_ip":"115.11.4.75","dst_port":19121,"src_port":28399},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":197,"stats":{"bytes":15584256,"packets":60876,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15584256,"hw_packets":60876,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60876, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60876, packets = 60876, expected = 60876, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60876, hw_packets = 60876, expected = 60876, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=32, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:52:01 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=32, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=32, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=32, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":86,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=32, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=32, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:52:01 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=32, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:52:01 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=32, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=32, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=32, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=32, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=32, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=32, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=32, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=32, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=32, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=32, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=32, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=32, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=32, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=32, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=32, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=32, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-drop] | 197.51 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-drop]">Starting testcase:test_acl_all_selectors[port-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1954' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=32, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=33] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=33] Local address: 172.17.0.4, port 48402 INFO asyncssh:logging.py:92 [conn=33] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=33] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=33] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:52:02 UTC 2087 INFO asyncssh:logging.py:92 [conn=33, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=33, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=33, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1741 && bridge vlan add dev swp34 vid 1741 INFO asyncssh:logging.py:92 [conn=33, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=6] Command: bridge vlan add dev swp33 vid 1741 && bridge vlan add dev swp34 vid 1741 INFO asyncssh:logging.py:92 [conn=33, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:a1:3b:c5:66:b7 dst_mac 02:b1:a6:91:4d:7a vlan_id 1741 vlan_ethtype ip src_ip 116.194.178.75 dst_ip 18.116.158.98 ip_proto udp src_port 42591 dst_port 52069 action drop INFO asyncssh:logging.py:92 [conn=33, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:a1:3b:c5:66:b7 dst_mac 02:b1:a6:91:4d:7a vlan_id 1741 vlan_ethtype ip src_ip 116.194.178.75 dst_ip 18.116.158.98 ip_proto udp src_port 42591 dst_port 52069 action drop INFO asyncssh:logging.py:92 [conn=33, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=33, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=12] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=33, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1741,"vlan_ethtype":"ip","dst_mac":"02:b1:a6:91:4d:7a","src_mac":"02:a1:3b:c5:66:b7","eth_type":"ipv4","ip_proto":"udp","dst_ip":"18.116.158.98","src_ip":"116.194.178.75","dst_port":52069,"src_port":42591},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1741, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1741, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6bf250>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591 SIP-DIP N/A Tx 60543 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_srcMac SIP-DIP N/A Tx 60543 Rx 60543 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_dstMac SIP-DIP N/A Tx 60543 Rx 60543 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_vlanID SIP-DIP N/A Tx 60543 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_srcIp SIP-DIP N/A Tx 60543 Rx 60543 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_dstIp SIP-DIP N/A Tx 60543 Rx 60543 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_srcPort SIP-DIP N/A Tx 60543 Rx 60543 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_dstPort SIP-DIP N/A Tx 60543 Rx 60543 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591 Tx Frames: 60543, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_srcMac Tx Frames: 60543, Rx Frames: 60543, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_dstMac Tx Frames: 60543, Rx Frames: 60543, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_vlanID Tx Frames: 60543, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_srcIp Tx Frames: 60543, Rx Frames: 60543, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_dstIp Tx Frames: 60543, Rx Frames: 60543, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_srcPort Tx Frames: 60543, Rx Frames: 60543, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1741_vlan_ethtype_ip_dst_mac_02:b1:a6:91:4d:7a_src_mac_02:a1:3b:c5:66:b7_eth_type_ipv4_ip_proto_udp_dst_ip_18.116.158.98_src_ip_116.194.178.75_dst_port_52069_src_port_42591_unmatch_dstPort Tx Frames: 60543, Rx Frames: 60543, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=33, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=14] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1741,"vlan_ethtype":"ip","dst_mac":"02:b1:a6:91:4d:7a","src_mac":"02:a1:3b:c5:66:b7","eth_type":"ipv4","ip_proto":"udp","dst_ip":"18.116.158.98","src_ip":"116.194.178.75","dst_port":52069,"src_port":42591},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":195,"stats":{"bytes":15499008,"packets":60543,"drops":60543,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15499008,"hw_packets":60543,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60543, drops = 60543, expected = 60543, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60543, packets = 60543, expected = 60543, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60543, hw_packets = 60543, expected = 60543, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=33, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:55:18 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=33, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=33, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=33, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":87,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=33, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=33, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:55:19 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=33, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:55:19 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=33, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=33, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=33, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=33, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=33, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=33, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=33, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=33, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=33, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=33, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=33, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=33, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=33, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=33, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=33, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=33, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-trap] | 199.28 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-trap]">Starting testcase:test_acl_all_selectors[port-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2023' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=33, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=34] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=34] Local address: 172.17.0.4, port 44676 INFO asyncssh:logging.py:92 [conn=34] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=34] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=34] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:55:20 UTC 2087 INFO asyncssh:logging.py:92 [conn=34, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=34, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=34, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1925 && bridge vlan add dev swp34 vid 1925 INFO asyncssh:logging.py:92 [conn=34, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=6] Command: bridge vlan add dev swp33 vid 1925 && bridge vlan add dev swp34 vid 1925 INFO asyncssh:logging.py:92 [conn=34, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:79:71:bd:b4:db dst_mac 02:eb:4d:2e:92:43 vlan_id 1925 vlan_ethtype ip src_ip 65.4.35.174 dst_ip 16.219.255.155 ip_proto udp src_port 62283 dst_port 22114 action trap INFO asyncssh:logging.py:92 [conn=34, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:79:71:bd:b4:db dst_mac 02:eb:4d:2e:92:43 vlan_id 1925 vlan_ethtype ip src_ip 65.4.35.174 dst_ip 16.219.255.155 ip_proto udp src_port 62283 dst_port 22114 action trap INFO asyncssh:logging.py:92 [conn=34, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=34, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=12] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=34, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1925,"vlan_ethtype":"ip","dst_mac":"02:eb:4d:2e:92:43","src_mac":"02:79:71:bd:b4:db","eth_type":"ipv4","ip_proto":"udp","dst_ip":"16.219.255.155","src_ip":"65.4.35.174","dst_port":22114,"src_port":62283},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1925, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1925, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad668190>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283 SIP-DIP N/A Tx 60639 Rx 24330 Loss 59.877 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_srcMac SIP-DIP N/A Tx 60638 Rx 60638 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_dstMac SIP-DIP N/A Tx 60638 Rx 60638 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_vlanID SIP-DIP N/A Tx 60639 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_srcIp SIP-DIP N/A Tx 60638 Rx 60638 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_dstIp SIP-DIP N/A Tx 60638 Rx 60638 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_srcPort SIP-DIP N/A Tx 60639 Rx 60639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_dstPort SIP-DIP N/A Tx 60638 Rx 60638 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283 Tx Frames: 60639, Rx Frames: 24330, loss = 59.877, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_srcMac Tx Frames: 60638, Rx Frames: 60638, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_dstMac Tx Frames: 60638, Rx Frames: 60638, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_vlanID Tx Frames: 60639, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_srcIp Tx Frames: 60638, Rx Frames: 60638, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_dstIp Tx Frames: 60638, Rx Frames: 60638, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_srcPort Tx Frames: 60639, Rx Frames: 60639, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1925_vlan_ethtype_ip_dst_mac_02:eb:4d:2e:92:43_src_mac_02:79:71:bd:b4:db_eth_type_ipv4_ip_proto_udp_dst_ip_16.219.255.155_src_ip_65.4.35.174_dst_port_22114_src_port_62283_unmatch_dstPort Tx Frames: 60638, Rx Frames: 60638, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=34, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=14] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1925,"vlan_ethtype":"ip","dst_mac":"02:eb:4d:2e:92:43","src_mac":"02:79:71:bd:b4:db","eth_type":"ipv4","ip_proto":"udp","dst_ip":"16.219.255.155","src_ip":"65.4.35.174","dst_port":22114,"src_port":62283},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":197,"stats":{"bytes":15523584,"packets":60639,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15523584,"hw_packets":60639,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60639, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60639, packets = 60639, expected = 60639, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60639, hw_packets = 60639, expected = 60639, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=34, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:58:38 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=34, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=34, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=34, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":88,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=34, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=34, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:58:38 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=34, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:58:38 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=34, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=34, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=34, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=34, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=34, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=34, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=34, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=34, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=34, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=34, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=34, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=34, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=34, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=34, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=34, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=34, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-pass] | 186.53 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-pass]">Starting testcase:test_acl_all_selectors[port-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2092' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=34, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=35] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=35] Local address: 172.17.0.4, port 58326 INFO asyncssh:logging.py:92 [conn=35] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=35] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=35] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 11:58:39 UTC 2087 INFO asyncssh:logging.py:92 [conn=35, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=35, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=35, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=35, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=35, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:06:9d:65:0f:2a dst_mac 02:b6:54:b4:fc:26 src_ip 41.187.235.111 dst_ip 108.122.115.186 ip_proto udp src_port 1643 dst_port 7209 action pass INFO asyncssh:logging.py:92 [conn=35, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=8] Command: tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:06:9d:65:0f:2a dst_mac 02:b6:54:b4:fc:26 src_ip 41.187.235.111 dst_ip 108.122.115.186 ip_proto udp src_port 1643 dst_port 7209 action pass INFO asyncssh:logging.py:92 [conn=35, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=35, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=35, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:b6:54:b4:fc:26","src_mac":"02:06:9d:65:0f:2a","eth_type":"ipv4","ip_proto":"udp","dst_ip":"108.122.115.186","src_ip":"41.187.235.111","dst_port":7209,"src_port":1643},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6beb00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643 SIP-DIP N/A Tx 60507 Rx 60507 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_srcMac SIP-DIP N/A Tx 60507 Rx 60507 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_dstMac SIP-DIP N/A Tx 60507 Rx 60507 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_srcIp SIP-DIP N/A Tx 60507 Rx 60507 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_dstIp SIP-DIP N/A Tx 60507 Rx 60507 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_srcPort SIP-DIP N/A Tx 60507 Rx 60507 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_dstPort SIP-DIP N/A Tx 60507 Rx 60507 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643 Tx Frames: 60507, Rx Frames: 60507, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_srcMac Tx Frames: 60507, Rx Frames: 60507, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_dstMac Tx Frames: 60507, Rx Frames: 60507, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_srcIp Tx Frames: 60507, Rx Frames: 60507, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_dstIp Tx Frames: 60507, Rx Frames: 60507, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_srcPort Tx Frames: 60507, Rx Frames: 60507, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:b6:54:b4:fc:26_src_mac_02:06:9d:65:0f:2a_eth_type_ipv4_ip_proto_udp_dst_ip_108.122.115.186_src_ip_41.187.235.111_dst_port_7209_src_port_1643_unmatch_dstPort Tx Frames: 60507, Rx Frames: 60507, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=35, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=12] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:b6:54:b4:fc:26","src_mac":"02:06:9d:65:0f:2a","eth_type":"ipv4","ip_proto":"udp","dst_ip":"108.122.115.186","src_ip":"41.187.235.111","dst_port":7209,"src_port":1643},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":184,"stats":{"bytes":15489792,"packets":60507,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15489792,"hw_packets":60507,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60507, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60507, packets = 60507, expected = 60507, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 60507, hw_packets = 60507, expected = 60507, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=35, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:01:44 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=35, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=35, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=35, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":89,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=35, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=35, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:01:44 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=35, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:01:45 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=35, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=35, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=35, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=35, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=35, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=35, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=35, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=35, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=35, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=35, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=35, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=35, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=35, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=35, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=35, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=35, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-drop] | 188.75 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-drop]">Starting testcase:test_acl_all_selectors[port-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2159' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=35, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=36] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=36] Local address: 172.17.0.4, port 44002 INFO asyncssh:logging.py:92 [conn=36] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=36] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=36] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:01:45 UTC 2087 INFO asyncssh:logging.py:92 [conn=36, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=36, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=36, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=36, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=36, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:ad:d8:39:6e:43 dst_mac 02:29:a1:5e:2c:ca src_ip 102.207.200.29 dst_ip 80.161.23.124 ip_proto udp src_port 15725 dst_port 20651 action drop INFO asyncssh:logging.py:92 [conn=36, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=8] Command: tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:ad:d8:39:6e:43 dst_mac 02:29:a1:5e:2c:ca src_ip 102.207.200.29 dst_ip 80.161.23.124 ip_proto udp src_port 15725 dst_port 20651 action drop INFO asyncssh:logging.py:92 [conn=36, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=36, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=36, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:29:a1:5e:2c:ca","src_mac":"02:ad:d8:39:6e:43","eth_type":"ipv4","ip_proto":"udp","dst_ip":"80.161.23.124","src_ip":"102.207.200.29","dst_port":20651,"src_port":15725},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6bd3c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725 SIP-DIP N/A Tx 60420 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_srcMac SIP-DIP N/A Tx 60420 Rx 60420 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_dstMac SIP-DIP N/A Tx 60420 Rx 60420 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_srcIp SIP-DIP N/A Tx 60420 Rx 60420 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_dstIp SIP-DIP N/A Tx 60420 Rx 60420 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_srcPort SIP-DIP N/A Tx 60420 Rx 60420 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_dstPort SIP-DIP N/A Tx 60420 Rx 60420 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725 Tx Frames: 60420, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_srcMac Tx Frames: 60420, Rx Frames: 60420, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_dstMac Tx Frames: 60420, Rx Frames: 60420, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_srcIp Tx Frames: 60420, Rx Frames: 60420, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_dstIp Tx Frames: 60420, Rx Frames: 60420, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_srcPort Tx Frames: 60420, Rx Frames: 60420, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:29:a1:5e:2c:ca_src_mac_02:ad:d8:39:6e:43_eth_type_ipv4_ip_proto_udp_dst_ip_80.161.23.124_src_ip_102.207.200.29_dst_port_20651_src_port_15725_unmatch_dstPort Tx Frames: 60420, Rx Frames: 60420, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=36, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=12] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:29:a1:5e:2c:ca","src_mac":"02:ad:d8:39:6e:43","eth_type":"ipv4","ip_proto":"udp","dst_ip":"80.161.23.124","src_ip":"102.207.200.29","dst_port":20651,"src_port":15725},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":187,"stats":{"bytes":15467520,"packets":60420,"drops":60420,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15467520,"hw_packets":60420,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60420, drops = 60420, expected = 60420, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60420, packets = 60420, expected = 60420, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 60420, hw_packets = 60420, expected = 60420, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=36, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:04:53 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=36, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=36, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=36, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":90,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=36, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=36, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:04:53 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=36, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:04:53 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=36, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=36, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=36, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=36, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=36, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=36, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=36, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=36, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=36, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=36, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=36, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=36, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=36, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=36, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=36, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=36, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-trap] | 187.44 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-trap]">Starting testcase:test_acl_all_selectors[port-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2226' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=36, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=37] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=37] Local address: 172.17.0.4, port 46686 INFO asyncssh:logging.py:92 [conn=37] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=37] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=37] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:04:54 UTC 2087 INFO asyncssh:logging.py:92 [conn=37, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=37, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=37, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=37, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=37, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:3e:9e:5a:04:bf dst_mac 02:64:80:cb:30:25 src_ip 125.228.179.145 dst_ip 56.44.200.206 ip_proto udp src_port 63975 dst_port 1087 action trap INFO asyncssh:logging.py:92 [conn=37, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=8] Command: tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:3e:9e:5a:04:bf dst_mac 02:64:80:cb:30:25 src_ip 125.228.179.145 dst_ip 56.44.200.206 ip_proto udp src_port 63975 dst_port 1087 action trap INFO asyncssh:logging.py:92 [conn=37, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=37, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=37, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:64:80:cb:30:25","src_mac":"02:3e:9e:5a:04:bf","eth_type":"ipv4","ip_proto":"udp","dst_ip":"56.44.200.206","src_ip":"125.228.179.145","dst_port":1087,"src_port":63975},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad638dc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975 SIP-DIP N/A Tx 60829 Rx 24422 Loss 59.851 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_srcMac SIP-DIP N/A Tx 60829 Rx 60829 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_dstMac SIP-DIP N/A Tx 60829 Rx 60829 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_srcIp SIP-DIP N/A Tx 60829 Rx 60829 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_dstIp SIP-DIP N/A Tx 60829 Rx 60829 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_srcPort SIP-DIP N/A Tx 60829 Rx 60829 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_dstPort SIP-DIP N/A Tx 60829 Rx 60829 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975 Tx Frames: 60829, Rx Frames: 24422, loss = 59.851, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_srcMac Tx Frames: 60829, Rx Frames: 60829, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_dstMac Tx Frames: 60829, Rx Frames: 60829, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_srcIp Tx Frames: 60829, Rx Frames: 60829, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_dstIp Tx Frames: 60829, Rx Frames: 60829, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_srcPort Tx Frames: 60829, Rx Frames: 60829, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:64:80:cb:30:25_src_mac_02:3e:9e:5a:04:bf_eth_type_ipv4_ip_proto_udp_dst_ip_56.44.200.206_src_ip_125.228.179.145_dst_port_1087_src_port_63975_unmatch_dstPort Tx Frames: 60829, Rx Frames: 60829, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=37, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=12] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:64:80:cb:30:25","src_mac":"02:3e:9e:5a:04:bf","eth_type":"ipv4","ip_proto":"udp","dst_ip":"56.44.200.206","src_ip":"125.228.179.145","dst_port":1087,"src_port":63975},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":185,"stats":{"bytes":15572224,"packets":60829,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15572224,"hw_packets":60829,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60829, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60829, packets = 60829, expected = 60829, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 60829, hw_packets = 60829, expected = 60829, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=37, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:08:00 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=37, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=37, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=37, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":91,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=37, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=37, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:08:01 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=37, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:08:01 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=37, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=37, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=37, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=37, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=37, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=37, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=37, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=37, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=37, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=37, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=37, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=37, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=37, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=37, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=37, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=37, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_negative.py::test_acl_rule_without_qdisc | 0.93 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_rule_without_qdisc">Starting testcase:test_acl_rule_without_qdisc from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2291' coro=<test_acl_rule_without_qdisc() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py:31> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=37, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=38] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=38] Local address: 172.17.0.4, port 48946 INFO asyncssh:logging.py:92 [conn=38] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=38] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=38] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=38, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:08:02 UTC 2087 INFO asyncssh:logging.py:92 [conn=38, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=1] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=2] Command: tc qdisc add dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=3] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=4] Command: tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=6] Command: tc qdisc delete dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=8] Command: tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=8] Channel closed DEBUG infra1:Logger.py:156 Error: Parent Qdisc doesn't exists. We have an error talking to the kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_rule_without_qdisc from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py INFO asyncssh:logging.py:92 [conn=38, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=38, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=10] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:08:02 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=38, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=38, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=12] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=38, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=38, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=38, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=14] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=38, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=14] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=38, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=16] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=38, chan=16] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=16] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=18] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=18] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=18] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=20] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=20] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=22] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=22] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=24] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=38, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=34] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=38, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=38, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=36] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=38, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=38, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=38] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=38, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=38, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=40] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=38, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/bridging/test_bridging_admin_state_down_up.py::test_bridging_admin_state_down_up | 209.84 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_admin_state_down_up">Starting testcase:test_bridging_admin_state_down_up from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2340' coro=<test_bridging_admin_state_down_up() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py:60> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=38, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=39] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=39] Local address: 172.17.0.4, port 48960 INFO asyncssh:logging.py:92 [conn=39] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=39] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=39] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:08:03 UTC 2087 INFO asyncssh:logging.py:92 [conn=39, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=39, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=39, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=39, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=39, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=39, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 down INFO asyncssh:logging.py:92 [conn=39, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=10] Command: ip link set dev br0 down INFO asyncssh:logging.py:92 [conn=39, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6bd150>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 320 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 320 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 320 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 320 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=39, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=39, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6bdf90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 320 Rx 0 Frames Delta 320 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 320 Rx 0 Frames Delta 320 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 320 Rx 0 Frames Delta 320 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 320 Rx 0 Frames Delta 320 Loss 100.000 INFO asyncssh:logging.py:92 [conn=39, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_admin_state_down_up from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=39, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:11:30 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=39, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:11:32 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=39, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=39, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=39, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":92,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=39, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=24] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_ageing.py::test_bridging_ageing_refresh | 301.97 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_ageing_refresh">Starting testcase:test_bridging_ageing_refresh from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2374' coro=<test_bridging_ageing_refresh() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=39, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=40] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=40] Local address: 172.17.0.4, port 52750 INFO asyncssh:logging.py:92 [conn=40] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=40] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=40] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:11:32 UTC 2087 INFO asyncssh:logging.py:92 [conn=40, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=40, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=40, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=40, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=40, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge ageing_time 4000 INFO asyncssh:logging.py:92 [conn=40, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=6] Command: ip link set dev br0 type bridge ageing_time 4000 INFO asyncssh:logging.py:92 [conn=40, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=40, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=10] Command: bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=40, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6bd540>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bridge SIP-DIP N/A Tx 219 Rx 219 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:88:e5:18","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6bf640>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bridge SIP-DIP N/A Tx 219 Rx 219 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=14] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:88:e5:18","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6bdcc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bridge SIP-DIP N/A Tx 3810 Rx 3810 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:88:e5:18","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_ageing_refresh from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=40, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:16:34 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=40, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:16:34 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=40, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=40, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=40, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":93,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=40, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=24] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_ageing.py::test_bridging_ageing_under_continue | 203.54 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_ageing_under_continue">Starting testcase:test_bridging_ageing_under_continue from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2408' coro=<test_bridging_ageing_under_continue() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py:191> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=40, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=41] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=41] Local address: 172.17.0.4, port 46430 INFO asyncssh:logging.py:92 [conn=41] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=41] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=41] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:16:34 UTC 2087 INFO asyncssh:logging.py:92 [conn=41, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=41, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=41, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=41, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=41, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge ageing_time 1000 INFO asyncssh:logging.py:92 [conn=41, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=6] Command: ip link set dev br0 type bridge ageing_time 1000 INFO asyncssh:logging.py:92 [conn=41, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=41, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=10] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=41, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6bf460>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 1994 Rx 1993 Frames Delta 1 Loss 0.050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 1994 Rx 1993 Frames Delta 1 Loss 0.050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 1994 Rx 1993 Frames Delta 1 Loss 0.050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 1994 Rx 1993 Frames Delta 1 Loss 0.050 INFO asyncssh:logging.py:92 [conn=41, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=41, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=41, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:14:f6:93","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_ageing_under_continue from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=41, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:19:57 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=41, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:19:57 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=41, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=41, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=41, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":94,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=41, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_bum_traffic_bridge.py::test_bridging_bum_traffic_bridge_with_rif | 274.84 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_bridge_with_rif">Starting testcase:test_bridging_bum_traffic_bridge_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2439' coro=<test_bridging_bum_traffic_bridge_with_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=41, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=42] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=42] Local address: 172.17.0.4, port 44906 INFO asyncssh:logging.py:92 [conn=42] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=42] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=42] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:19:58 UTC 2087 INFO asyncssh:logging.py:92 [conn=42, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=42, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=42, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=42, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=42, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip address add 100.1.1.253/24 dev br0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=8] Command: ip address add 100.1.1.253/24 dev br0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=42, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=10] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=42, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra1... INFO asyncssh:logging.py:92 [conn=42, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=42, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=12] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6d0be0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI BridgedLLDP SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI LACPDU SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4ToMe SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Request_BC SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Reply SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Broadcast SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_SSH SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_Telnet SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_ICMP_Request SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DCHP_BC SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Reserved_MC SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_OSPFIGP SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_VRRP SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_IGMP SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_BGP SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=42, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=12] Channel closed DEBUG infra1:Logger.py:156 12:24:17.171646 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.171723 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.171769 LLDP, length 82 [|LLDP] 12:24:17.171771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0098 8b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.171774 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.171785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.171789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.171793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.171807 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.171814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.171851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.171856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.171858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.171866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.171872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.179840 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.179862 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.179887 LLDP, length 82 [|LLDP] 12:24:17.179889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009e d849 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.179891 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.179898 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.179902 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.179908 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.179931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.179935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.179937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.179941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.179953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.179959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.179963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.190845 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.190861 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.190881 LLDP, length 82 [|LLDP] 12:24:17.190882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a7 3eb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.190884 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.190890 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.190894 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.190897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.190909 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.190916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.190935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.190939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.190941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.190946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.190950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.199092 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.199115 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.199135 LLDP, length 82 [|LLDP] 12:24:17.199136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ad 8b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.199138 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.199144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.199163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.199167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.199169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.199175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.199179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.199182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.199194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.199199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.199204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.210112 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.210137 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.210159 LLDP, length 82 [|LLDP] 12:24:17.210161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b5 f1e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.210163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.210169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.210173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.210176 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.210182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.210203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.210206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.210208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.210221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.210226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.210231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.221112 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.221133 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.221151 LLDP, length 82 [|LLDP] 12:24:17.221152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00be 584a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.221154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.221159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.221163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.221167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.221178 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.221184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.221203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.221206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.221208 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.221213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.221218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.229372 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.229392 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.229409 LLDP, length 82 [|LLDP] 12:24:17.229411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c4 a516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.229413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.229418 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.229424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.229433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.229436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.229438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.229442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.229445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.229458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.229463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.229467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.240378 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.240398 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.240415 LLDP, length 82 [|LLDP] 12:24:17.240417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00cd 0b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.240419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.240424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.240428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.240432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.240443 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.240449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.240458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.240461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.240463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.240467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.240472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.251413 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.251437 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.251458 LLDP, length 82 [|LLDP] 12:24:17.251459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d5 71e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.251461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.251467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.251470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.251474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.251485 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.251491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.251500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.251503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.251505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.251510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.251514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.259648 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.259666 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.259683 LLDP, length 82 [|LLDP] 12:24:17.259685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00db beb0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.259686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.259692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.259695 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.259700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.259709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.259712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.259714 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.259718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.259729 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.259734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.259739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.270656 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.270674 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.270690 LLDP, length 82 [|LLDP] 12:24:17.270692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e4 2517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.270693 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.270698 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.270702 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.270705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.270717 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.270722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.270731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.270734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.270736 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.270740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.270745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.278915 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.278934 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.278950 LLDP, length 82 [|LLDP] 12:24:17.278951 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ea 71e3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.278953 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.278958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.278967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.278970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.278972 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.278976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.278980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.278984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.278995 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.279000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.279005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.289925 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.289943 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.289960 LLDP, length 82 [|LLDP] 12:24:17.289961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f2 d84a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.289963 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.289968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.289972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.289975 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.289980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.289990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.289993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.289995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.290007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.290012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.290017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.300934 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.300952 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.300968 LLDP, length 82 [|LLDP] 12:24:17.300970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fb 3eb7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.300971 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.300976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.300980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.300983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.300995 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.301000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.301008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.301011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.301013 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.301018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.301022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.309194 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.309212 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.309228 LLDP, length 82 [|LLDP] 12:24:17.309230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0101 8b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.309231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.309236 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.309242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.309250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.309253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.309255 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.309259 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.309263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.309274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.309280 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.309284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.320201 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.320219 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.320234 LLDP, length 82 [|LLDP] 12:24:17.320236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0109 f1e3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.320238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.320243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.320246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.320250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.320261 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.320266 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.320275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.320278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.320280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.320285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.320289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.331211 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.331229 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.331245 LLDP, length 82 [|LLDP] 12:24:17.331246 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0112 584a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.331248 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.331253 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.331257 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.331261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.331272 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.331278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.331286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.331289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.331291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.331296 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.331300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.339469 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.339487 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.339503 LLDP, length 82 [|LLDP] 12:24:17.339504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0118 a517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.339506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.339511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.339515 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.339520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.339529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.339532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.339534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.339537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.339549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.339554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.339559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.350479 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.350497 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.350512 LLDP, length 82 [|LLDP] 12:24:17.350514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0121 0b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.350516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.350521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.350525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.350528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.350540 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.350546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.350555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.350558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.350560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.350564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.350569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.361490 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.361508 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.361524 LLDP, length 82 [|LLDP] 12:24:17.361525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0129 71e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.361527 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.361532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.361541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.361544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.361546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.361551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.361555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.361558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.361570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.361574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.361579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.369746 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.369765 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.369780 LLDP, length 82 [|LLDP] 12:24:17.369782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012f beb0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.369784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.369789 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.369792 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.369796 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.369801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.369810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.369812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.369815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.369826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.369832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.369836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.380758 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.380775 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.380790 LLDP, length 82 [|LLDP] 12:24:17.380792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0138 2518 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.380794 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.380799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.380802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.380806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.380818 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.380823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.380832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.380835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.380837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.380841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.380845 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.389016 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.389035 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.389051 LLDP, length 82 [|LLDP] 12:24:17.389053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013e 71e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.389054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.389060 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.389065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.389074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.389077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.389079 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.389083 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.389086 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.389098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.389103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.389108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.400037 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.400057 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.400072 LLDP, length 82 [|LLDP] 12:24:17.400074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0146 d84a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.400076 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.400081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.400084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.400088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.400099 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.400105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.400114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.400117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.400119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.400123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.400128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.411034 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.411052 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.411068 LLDP, length 82 [|LLDP] 12:24:17.411070 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014f 3eb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.411072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.411077 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.411080 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.411084 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.411095 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.411101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.411110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.411113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.411115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.411119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.411124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.419294 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.419315 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.419330 LLDP, length 82 [|LLDP] 12:24:17.419332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0155 8b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.419333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.419347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.419351 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.419356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.419365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.419368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.419370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.419374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.419386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.419391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.419396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.430303 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.430320 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.430336 LLDP, length 82 [|LLDP] 12:24:17.430338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015d f1e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.430340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.430345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.430348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.430352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.430364 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.430370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.430379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.430382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.430384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.430388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.430393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.441313 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.441332 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.441347 LLDP, length 82 [|LLDP] 12:24:17.441349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0166 584a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.441351 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.441356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.441365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.441368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.441370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.441375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.441378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.441382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.441393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.441398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.441402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.449572 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.449591 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.449607 LLDP, length 82 [|LLDP] 12:24:17.449609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016c a517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.449610 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.449615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.449619 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.449622 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.449628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.449637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.449640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.449642 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.449654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.449659 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.449664 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.460587 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.460611 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.460632 LLDP, length 82 [|LLDP] 12:24:17.460634 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0175 0b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.460636 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.460642 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.460645 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.460649 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.460661 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.460666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.460676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.460680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.460682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.460686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.460690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.468845 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.468867 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.468887 LLDP, length 82 [|LLDP] 12:24:17.468889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017b 584a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.468890 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.468896 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.468901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.468911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.468914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.468916 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.468919 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.468923 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.468935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.468940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.468944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.479858 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.479880 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.479899 LLDP, length 82 [|LLDP] 12:24:17.479900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0183 beb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.479902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.479908 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.479911 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.479915 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.479927 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.479932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.479942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.479945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.479947 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.479952 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.479956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.490868 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.490891 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.490909 LLDP, length 82 [|LLDP] 12:24:17.490911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018c 2517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.490913 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.490918 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.490922 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.490925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.490937 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.490942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.490952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.490955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.490957 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.490961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.490966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.499125 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.499147 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.499166 LLDP, length 82 [|LLDP] 12:24:17.499168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0192 71eb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.499170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.499175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.499179 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.499184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.499194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.499197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.499199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.499203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.499214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.499219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.499224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.510134 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.510156 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.510175 LLDP, length 82 [|LLDP] 12:24:17.510177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019a d84b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.510179 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.510184 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.510188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.510192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.510203 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.510209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.510219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.510222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.510224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.510229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.510233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.521147 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.521164 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.521182 LLDP, length 82 [|LLDP] 12:24:17.521184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a3 3eb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.521186 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.521191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.521201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.521204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.521206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.521211 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.521215 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.521218 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.521230 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.521235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.521240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.529403 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.529425 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.529444 LLDP, length 82 [|LLDP] 12:24:17.529446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a9 8b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.529448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.529453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.529457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.529461 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.529467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.529477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.529479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.529481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.529493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.529498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.529503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.540415 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.540430 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.540449 LLDP, length 82 [|LLDP] 12:24:17.540450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b1 f1e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.540452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.540458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.540461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.540465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.540476 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.540482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.540491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.540495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.540497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.540501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.540505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.551422 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.551443 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.551462 LLDP, length 82 [|LLDP] 12:24:17.551464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ba 5851 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.551466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.551471 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.551476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.551486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.551489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.551491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.551494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.551498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.551509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.551514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.551519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.559681 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.559703 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.559723 LLDP, length 82 [|LLDP] 12:24:17.559724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c0 a518 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.559726 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.559731 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.559735 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.559738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.559749 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.559755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.559765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.559768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.559770 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.559774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.559779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.570687 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.570710 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.570730 LLDP, length 82 [|LLDP] 12:24:17.570731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c9 0b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.570733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.570739 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.570742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.570746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.570758 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.570764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.570773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.570776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.570779 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.570783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.570788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.578944 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.578967 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.578985 LLDP, length 82 [|LLDP] 12:24:17.578986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cf 584b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.578988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.578994 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.578997 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.579002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.579011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.579014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.579017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.579020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.579032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.579036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.579041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.592064 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.592081 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.592099 LLDP, length 82 [|LLDP] 12:24:17.592101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d7 beb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.592103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.592109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.592112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.592116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.592127 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.592133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.592142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.592145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.592148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.592152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.592157 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.600973 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.600989 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.601007 LLDP, length 82 [|LLDP] 12:24:17.601009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e0 2518 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.601011 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.601016 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.601026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.601029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.601032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.601037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.601040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.601044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.601055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.601061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.601066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.609233 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.609249 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.609268 LLDP, length 82 [|LLDP] 12:24:17.609269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e6 71e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.609272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.609277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.609281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.609284 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.609289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.609299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.609302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.609305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.609316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.609321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.609326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.620246 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.620269 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.620287 LLDP, length 82 [|LLDP] 12:24:17.620289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ee d84b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.620291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.620296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.620300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.620304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.620315 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.620321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.620331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.620334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.620335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.620340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.620344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.634931 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.634947 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.634967 LLDP, length 82 [|LLDP] 12:24:17.634968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f7 3eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.634970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.634976 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.634981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.634990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.634993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.634996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.634999 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.635003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.635014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.635020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.635024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.639522 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.639546 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.639573 LLDP, length 82 [|LLDP] 12:24:17.639575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fd 8b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.639577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.639584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.639588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.639592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.639603 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.639610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.639621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.639624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.639626 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.639631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.639636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.650519 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.650545 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.650565 LLDP, length 82 [|LLDP] 12:24:17.650567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0205 f1e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.650569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.650575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.650578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.650582 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.650593 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.650599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.650609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.650612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.650614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.650618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.650623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.661535 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.661551 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.661571 LLDP, length 82 [|LLDP] 12:24:17.661573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020e 584c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.661574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.661580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.661584 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.661590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.661600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.661603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.661605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.661609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.661620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.661625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.661630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.669781 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.669804 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.669823 LLDP, length 82 [|LLDP] 12:24:17.669824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0214 a518 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.669826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.669832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.669835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.669839 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.669850 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.669856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.669866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.669869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.669871 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.669875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.669880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.680794 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.680819 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.680839 LLDP, length 82 [|LLDP] 12:24:17.680840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021d 0b7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.680842 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.680848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.680858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.680861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.680863 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.680868 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.680872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.680875 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.680887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.680891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.680896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.689057 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.689075 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.689094 LLDP, length 82 [|LLDP] 12:24:17.689096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0223 584b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.689098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.689103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.689107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.689110 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.689115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.689126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.689129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.689131 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.689143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.689148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.689152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.700061 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.700083 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.700102 LLDP, length 82 [|LLDP] 12:24:17.700103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022b beb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.700105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.700111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.700115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.700118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.700129 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.700136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.700145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.700148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.700151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.700155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.700159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.711074 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.711100 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.711121 LLDP, length 82 [|LLDP] 12:24:17.711122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0234 2518 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.711124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.711130 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.711135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.711145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.711148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.711150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.711154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.711158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.711169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.711175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.711179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.719331 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.719360 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.719380 LLDP, length 82 [|LLDP] 12:24:17.719382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023a 71e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.719384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.719390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.719394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.719397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.719408 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.719415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.719425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.719428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.719430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.719434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.719439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.730336 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.730359 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.730377 LLDP, length 82 [|LLDP] 12:24:17.730379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0242 d84a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.730381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.730387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.730390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.730394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.730405 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.730411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.730421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.730424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.730426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.730430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.730434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.741346 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.741368 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.741387 LLDP, length 82 [|LLDP] 12:24:17.741389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024b 3eb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.741390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.741396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.741400 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.741405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.741415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.741418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.741420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.741424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.741436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.741441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.741445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.749606 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.749628 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.749647 LLDP, length 82 [|LLDP] 12:24:17.749649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0251 8b84 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.749651 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.749656 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.749660 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.749663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.749675 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.749681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.749691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.749694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.749696 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.749700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.749705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.760627 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.760643 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.760662 LLDP, length 82 [|LLDP] 12:24:17.760663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0259 f1e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.760665 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.760671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.760681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.760684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.760686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.760691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.760695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.760698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.760710 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.760715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.760719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.768873 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.768896 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.768914 LLDP, length 82 [|LLDP] 12:24:17.768916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0260 3eb0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.768918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.768923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.768927 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.768931 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.768936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.768945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.768948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.768950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.768962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.768967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.768972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.779886 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.779910 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.779930 LLDP, length 82 [|LLDP] 12:24:17.779931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0268 a517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.779933 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.779939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.779943 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.779947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.779958 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.779964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.779973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.779976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.779978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.779982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.779987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.790908 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.790938 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.790963 LLDP, length 82 [|LLDP] 12:24:17.790965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0271 0b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.790967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.790974 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.790979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.790990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.790993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.790996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.790999 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.791003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.791015 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.791020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.791025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.799152 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.799175 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.799195 LLDP, length 82 [|LLDP] 12:24:17.799196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0277 5849 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.799198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.799204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.799208 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.799211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.799222 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.799228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.799238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.799241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.799243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.799247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.799252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.810167 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.810191 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.810211 LLDP, length 82 [|LLDP] 12:24:17.810212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027f beb0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.810214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.810220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.810223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.810227 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.810239 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.810244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.810254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.810257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.810259 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.810263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.810268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.821171 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.821194 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.821213 LLDP, length 82 [|LLDP] 12:24:17.821214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0288 2516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.821216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.821222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.821225 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.821230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.821240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.821243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.821245 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.821248 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.821260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.821265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.821269 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.829431 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.829453 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.829471 LLDP, length 82 [|LLDP] 12:24:17.829473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028e 71e3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.829475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.829480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.829484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.829487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.829499 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.829504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.829514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.829517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.829519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.829523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.829528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.840439 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.840462 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.840480 LLDP, length 82 [|LLDP] 12:24:17.840482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0296 d84a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.840483 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.840489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.840498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.840502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.840504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.840508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.840512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.840515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.840527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.840532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.840536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.851449 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.851472 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.851491 LLDP, length 82 [|LLDP] 12:24:17.851492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029f 3eb0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.851494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.851500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.851503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.851507 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.851512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.851522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.851525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.851527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.851538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.851543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.851548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.859706 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.859728 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.859746 LLDP, length 82 [|LLDP] 12:24:17.859748 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a5 8b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.859749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.859755 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.859759 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.859763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.859774 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.859780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.859789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.859792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.859794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.859798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.859803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.870716 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.870738 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.870757 LLDP, length 82 [|LLDP] 12:24:17.870759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ad f1e3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.870761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.870766 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.870772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.870782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.870785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.870787 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.870791 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.870794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.870805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.870811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.870815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.878974 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.879000 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.879018 LLDP, length 82 [|LLDP] 12:24:17.879019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b4 3eb0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.879021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.879027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.879030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.879034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.879045 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.879051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.879061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.879064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.879066 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.879071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.879075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.889989 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.890012 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.890032 LLDP, length 82 [|LLDP] 12:24:17.890033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02bc a516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.890035 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.890041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.890044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.890048 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.890059 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.890065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.890076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.890079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.890081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.890086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.890090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.901013 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.901038 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.901065 LLDP, length 82 [|LLDP] 12:24:17.901067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c5 0b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.901068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.901076 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.901079 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.901085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.901097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.901100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.901103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.901106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.901118 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.901123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.901128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.909254 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.909277 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.909297 LLDP, length 82 [|LLDP] 12:24:17.909299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cb 584a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.909301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.909306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.909310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.909314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.909325 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.909331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.909341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.909344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.909346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.909350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.909355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.920264 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.920286 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.920305 LLDP, length 82 [|LLDP] 12:24:17.920307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d3 beb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.920308 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.920314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.920324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.920327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.920330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.920335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.920338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.920341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.920353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.920358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.920363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.931274 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.931298 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.931318 LLDP, length 82 [|LLDP] 12:24:17.931319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02dc 2517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.931321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.931327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.931331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.931344 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.931351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.931361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.931364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.931367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.931379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.931384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.931389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.939532 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.939555 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.939574 LLDP, length 82 [|LLDP] 12:24:17.939576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e2 71e3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.939578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.939583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.939587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.939591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.939602 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.939607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.939617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.939620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.939622 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.939626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.939630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.950543 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.950565 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.950584 LLDP, length 82 [|LLDP] 12:24:17.950585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ea d84a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.950587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.950592 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.950597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.950607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.950610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.950612 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.950616 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.950619 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.950631 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.950636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.950640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.958800 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.958821 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.958840 LLDP, length 82 [|LLDP] 12:24:17.958841 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f1 2517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.958843 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.958849 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.958852 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.958856 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.958867 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.958873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.958882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.958885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.958887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.958892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.958896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.969810 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.969832 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.969851 LLDP, length 82 [|LLDP] 12:24:17.969852 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f9 8b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.969854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.969860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.969863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.969867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.969878 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.969884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.969894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.969897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.969899 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.969903 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.969908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.980821 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.980844 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.980863 LLDP, length 82 [|LLDP] 12:24:17.980864 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0301 f1e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.980866 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.980872 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.980875 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.980880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.980891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.980894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.980896 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.980900 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.980912 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.980917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.980922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.989078 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.989101 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.989120 LLDP, length 82 [|LLDP] 12:24:17.989122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0308 3eb0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.989124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.989129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.989133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.989136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.989148 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.989154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.989163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.989166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.989168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.989173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.989177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.000098 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.000125 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.000148 LLDP, length 82 [|LLDP] 12:24:18.000150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0310 a51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.000151 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.000157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.000168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.000171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.000174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.000179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.000183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.000187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.000198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.000204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.000209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.011100 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.011123 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.011142 LLDP, length 82 [|LLDP] 12:24:18.011144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0319 0b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.011146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.011151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.011155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.011158 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.011164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.011174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.011177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.011179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.011191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.011196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.011201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.019366 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.019389 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.019408 LLDP, length 82 [|LLDP] 12:24:18.019409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031f 584a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.019411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.019417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.019420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.019424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.019435 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.019441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.019450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.019454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.019456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.019460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.019465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.030367 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.030389 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.030409 LLDP, length 82 [|LLDP] 12:24:18.030424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0327 beb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.030427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.030433 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.030439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.030449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.030453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.030455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.030459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.030463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.030477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.030482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.030487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.041407 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.041442 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.041467 LLDP, length 82 [|LLDP] 12:24:18.041469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0330 2517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.041472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.041481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.041484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.041488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.041499 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.041507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.041521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.041525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.041527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.041532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.041538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.049640 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.049666 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.049692 LLDP, length 82 [|LLDP] 12:24:18.049693 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0336 71e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.049695 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.049701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.049706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.049709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.049721 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.049727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.049737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.049740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.049742 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.049746 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.049751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.060655 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.060674 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.060696 LLDP, length 82 [|LLDP] 12:24:18.060698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033e d84a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.060700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.060706 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.060709 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.060714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.060725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.060728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.060730 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.060734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.060745 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.060751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.060755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.068904 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.068929 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.068949 LLDP, length 82 [|LLDP] 12:24:18.068951 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0345 2517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.068952 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.068958 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.068962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.068965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.068976 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.068982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.068992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.068995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.068997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.069002 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.069006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.079916 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.079939 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.079960 LLDP, length 82 [|LLDP] 12:24:18.079962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034d 8b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.079964 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.079970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.079980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.079984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.079986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.079991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.079994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.079998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.080009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.080014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.080019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.090925 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.090948 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.090966 LLDP, length 82 [|LLDP] 12:24:18.090968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0355 f1e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.090970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.090976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.090980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.090984 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.090989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.091001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.091003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.091005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.091017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.091022 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.091027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.099182 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.099208 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.099229 LLDP, length 82 [|LLDP] 12:24:18.099230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035c 3eb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.099232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.099239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.099242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.099246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.099258 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.099264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.099275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.099278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.099280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.099284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.099289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.110194 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.110218 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.110239 LLDP, length 82 [|LLDP] 12:24:18.110241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0364 a539 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.110243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.110249 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.110254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.110265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.110268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.110270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.110274 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.110277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.110290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.110295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.110299 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.121204 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.121227 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.121247 LLDP, length 82 [|LLDP] 12:24:18.121249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036d 0ba0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.121251 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.121256 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.121260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.121264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.121276 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.121281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.121291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.121294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.121297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.121301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.121306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.129459 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.129482 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.129502 LLDP, length 82 [|LLDP] 12:24:18.129503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0373 586c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.129505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.129511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.129515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.129519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.129531 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.129537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.129547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.129550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.129552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.129556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.129560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.140469 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.140493 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.140513 LLDP, length 82 [|LLDP] 12:24:18.140515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037b bed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.140517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.140523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.140526 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.140531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.140542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.140545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.140547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.140551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.140563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.140568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.140572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.151481 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.151506 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.151525 LLDP, length 82 [|LLDP] 12:24:18.151527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0384 2539 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.151529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.151535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.151538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.151542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.151555 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.151561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.151570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.151574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.151576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.151580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.151585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.159738 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.159761 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.159780 LLDP, length 82 [|LLDP] 12:24:18.159782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038a 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.159784 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.159789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.159800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.159803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.159805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.159810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.159814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.159817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.159829 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.159834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.159839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.170751 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.170773 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.170793 LLDP, length 82 [|LLDP] 12:24:18.170794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0392 d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.170796 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.170802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.170805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.170809 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.170814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.170824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.170827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.170830 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.170841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.170846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.170851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.179009 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.179026 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.179046 LLDP, length 82 [|LLDP] 12:24:18.179048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0399 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.179050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.179055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.179059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.179062 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.179074 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.179080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.179103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.179106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.179109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.179114 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.179118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.190020 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.190044 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.190064 LLDP, length 82 [|LLDP] 12:24:18.190066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a1 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.190068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.190073 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.190079 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.190089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.190092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.190094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.190098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.190102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.190114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.190119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.190124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.201029 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.201053 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.201074 LLDP, length 82 [|LLDP] 12:24:18.201075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a9 f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.201077 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.201083 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.201086 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.201090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.201101 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.201107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.201117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.201120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.201122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.201127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.201131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.209285 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.209309 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.209328 LLDP, length 82 [|LLDP] 12:24:18.209329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b0 3ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.209331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.209337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.209341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.209345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.209357 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.209362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.209372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.209375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.209377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.209381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.209386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.220294 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.220318 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.220339 LLDP, length 82 [|LLDP] 12:24:18.220340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b8 a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.220342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.220348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.220352 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.220357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.220367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.220370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.220372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.220375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.220387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.220392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.220397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.231306 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.231329 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.231360 LLDP, length 82 [|LLDP] 12:24:18.231361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c1 0bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.231363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.231369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.231373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.231376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.231388 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.231394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.231404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.231407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.231409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.231414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.231418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.241746 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.241762 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.241782 LLDP, length 82 [|LLDP] 12:24:18.241783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c7 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.241785 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.241791 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.241801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.241804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.241806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.241812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.241815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.241819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.241830 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.241835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.241840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.250584 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.250600 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.250620 LLDP, length 82 [|LLDP] 12:24:18.250621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cf bef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.250623 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.250629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.250633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.250636 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.250642 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.250652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.250654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.250656 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.250669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.250674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.250678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.258829 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.258852 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.258872 LLDP, length 82 [|LLDP] 12:24:18.258874 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d6 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.258875 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.258881 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.258884 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.258888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.258900 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.258905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.258915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.258918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.258920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.258925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.258929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.269840 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.269864 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.269884 LLDP, length 82 [|LLDP] 12:24:18.269885 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03de 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.269887 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.269893 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.269898 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.269908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.269911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.269913 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.269917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.269921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.269933 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.269938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.269942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.280851 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.280875 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.280895 LLDP, length 82 [|LLDP] 12:24:18.280897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e6 d88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.280898 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.280904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.280908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.280911 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.280923 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.280928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.280938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.280941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.280943 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.280948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.280953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.289108 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.289131 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.289152 LLDP, length 82 [|LLDP] 12:24:18.289153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ed 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.289155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.289161 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.289164 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.289168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.289180 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.289185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.289195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.289198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.289200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.289204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.289209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.302413 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.302431 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.302452 LLDP, length 82 [|LLDP] 12:24:18.302453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f5 8bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.302455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.302461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.302464 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.302469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.302480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.302483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.302485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.302489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.302501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.302506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.302511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.311131 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.311154 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.311174 LLDP, length 82 [|LLDP] 12:24:18.311176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fd f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.311178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.311183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.311187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.311191 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.311202 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.311208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.311218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.311221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.311223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.311227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.311232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.319394 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.319418 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.319438 LLDP, length 82 [|LLDP] 12:24:18.319439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0404 3ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.319441 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.319447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.319457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.319461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.319463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.319467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.319471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.319475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.319487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.319492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.319496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.330399 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.330422 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.330442 LLDP, length 82 [|LLDP] 12:24:18.330444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040c a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.330445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.330451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.330455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.330459 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.330464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.330474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.330477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.330480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.330491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.330496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.330501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.341406 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.341428 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.341448 LLDP, length 82 [|LLDP] 12:24:18.341450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0415 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.341452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.341458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.341461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.341465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.341476 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.341482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.341491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.341495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.341497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.341501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.341506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.349667 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.349690 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.349709 LLDP, length 82 [|LLDP] 12:24:18.349711 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041b 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.349712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.349718 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.349723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.349733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.349736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.349738 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.349742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.349745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.349757 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.349762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.349767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.363075 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.363092 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.363113 LLDP, length 82 [|LLDP] 12:24:18.363114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0423 bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.363116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.363122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.363126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.363129 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.363141 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.363146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.363156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.363159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.363161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.363166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.363170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.368936 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.368960 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.368980 LLDP, length 82 [|LLDP] 12:24:18.368982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042a 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.368984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.368990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.368993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.368996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.369008 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.369014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.369024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.369027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.369029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.369033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.369038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.379943 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.379966 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.379986 LLDP, length 82 [|LLDP] 12:24:18.379988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0432 722e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.379990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.379996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.379999 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.380004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.380014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.380017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.380019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.380022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.380034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.380039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.380043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.390953 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.390976 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.390997 LLDP, length 82 [|LLDP] 12:24:18.390998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043a d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.391000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.391006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.391009 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.391013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.391024 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.391030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.391040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.391043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.391045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.391050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.391054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.399216 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.399238 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.399258 LLDP, length 82 [|LLDP] 12:24:18.399260 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0441 2559 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.399261 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.399267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.399278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.399281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.399283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.399288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.399292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.399295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.399307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.399312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.399316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.410222 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.410245 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.410265 LLDP, length 82 [|LLDP] 12:24:18.410267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0449 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.410268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.410274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.410277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.410281 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.410286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.410297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.410300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.410302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.410314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.410319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.410324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.423987 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.424003 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.424023 LLDP, length 82 [|LLDP] 12:24:18.424025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0451 f226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.424026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.424032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.424036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.424039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.424051 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.424056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.424066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.424070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.424072 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.424077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.424081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.429490 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.429512 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.429531 LLDP, length 82 [|LLDP] 12:24:18.429533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0458 3ef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.429535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.429540 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.429546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.429556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.429559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.429561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.429565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.429568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.429580 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.429585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.429590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.440499 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.440521 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.440541 LLDP, length 82 [|LLDP] 12:24:18.440543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0460 a559 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.440544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.440550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.440553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.440557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.440568 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.440574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.440584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.440587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.440589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.440594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.440598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.451509 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.451532 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.451552 LLDP, length 82 [|LLDP] 12:24:18.451554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0469 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.451556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.451561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.451565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.451569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.451580 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.451586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.451595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.451598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.451600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.451605 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.451609 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.459767 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.459790 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.459810 LLDP, length 82 [|LLDP] 12:24:18.459812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046f 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.459814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.459820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.459823 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.459828 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.459838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.459841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.459843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.459847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.459858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.459863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.459868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.470778 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.470802 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.470823 LLDP, length 82 [|LLDP] 12:24:18.470824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0477 bef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.470826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.470832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.470835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.470839 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.470850 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.470856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.470865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.470868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.470871 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.470875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.470880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.479034 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.479057 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.479078 LLDP, length 82 [|LLDP] 12:24:18.479079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047e 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.479081 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.479086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.479096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.479100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.479101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.479106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.479110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.479114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.479125 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.479130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.479135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.490047 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.490070 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.490089 LLDP, length 82 [|LLDP] 12:24:18.490091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0486 7226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.490093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.490099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.490103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.490106 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.490111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.490122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.490125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.490127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.490139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.490144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.490149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.501056 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.501080 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.501101 LLDP, length 82 [|LLDP] 12:24:18.501103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048e d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.501105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.501110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.501114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.501118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.501129 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.501135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.501145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.501148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.501150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.501154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.501159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.509314 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.509338 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.509358 LLDP, length 82 [|LLDP] 12:24:18.509360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0495 2559 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.509362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.509367 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.509373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.509383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.509386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.509388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.509392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.509395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.509407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.509412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.509416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.520321 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.520345 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.520366 LLDP, length 82 [|LLDP] 12:24:18.520368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049d 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.520369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.520375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.520379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.520382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.520394 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.520400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.520410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.520413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.520415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.520420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.520424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.531349 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.531368 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.531389 LLDP, length 82 [|LLDP] 12:24:18.531390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a5 f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.531392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.531398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.531402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.531405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.531416 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.531422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.531432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.531436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.531437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.531442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.531446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.539603 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.539621 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.539640 LLDP, length 82 [|LLDP] 12:24:18.539642 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ac 3ef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.539644 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.539650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.539653 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.539659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.539668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.539671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.539673 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.539677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.539689 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.539694 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.539699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.550613 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.550630 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.550649 LLDP, length 82 [|LLDP] 12:24:18.550651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b4 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.550653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.550658 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.550662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.550665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.550677 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.550683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.550693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.550696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.550698 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.550702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.550707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.558860 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.558883 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.558903 LLDP, length 82 [|LLDP] 12:24:18.558905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ba f226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.558907 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.558913 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.558923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.558926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.558928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.558933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.558937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.558941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.558952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.558957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.558962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.569870 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.569893 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.569913 LLDP, length 82 [|LLDP] 12:24:18.569914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c3 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.569916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.569922 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.569925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.569929 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.569934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.569944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.569947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.569950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.569962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.569967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.569971 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.580880 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.580903 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.580922 LLDP, length 82 [|LLDP] 12:24:18.580924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cb bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.580926 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.580931 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.580935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.580938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.580949 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.580956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.580965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.580968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.580970 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.580975 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.580980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.589136 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.589159 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.589179 LLDP, length 82 [|LLDP] 12:24:18.589180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d2 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.589182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.589188 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.589194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.589204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.589207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.589209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.589212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.589216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.589228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.589233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.589237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.600149 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.600172 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.600193 LLDP, length 82 [|LLDP] 12:24:18.600195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04da 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.600197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.600202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.600206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.600209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.600221 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.600226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.600237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.600240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.600243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.600247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.600251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.611160 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.611183 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.611202 LLDP, length 82 [|LLDP] 12:24:18.611204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e2 d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.611206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.611213 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.611216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.611220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.611232 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.611237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.611247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.611250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.611253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.611257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.611262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.619418 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.619442 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.619462 LLDP, length 82 [|LLDP] 12:24:18.619464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e9 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.619466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.619472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.619476 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.619481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.619491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.619494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.619496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.619500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.619512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.619517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.619521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.630431 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.630449 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.630469 LLDP, length 82 [|LLDP] 12:24:18.630470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f1 8bc8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.630472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.630477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.630481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.630485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.630497 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.630502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.630512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.630515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.630517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.630522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.630526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.641437 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.641461 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.641482 LLDP, length 82 [|LLDP] 12:24:18.641483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f9 f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.641485 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.641491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.641500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.641503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.641505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.641511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.641514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.641517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.641529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.641534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.641539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.649698 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.649721 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.649740 LLDP, length 82 [|LLDP] 12:24:18.649742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0500 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.649744 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.649749 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.649753 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.649756 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.649762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.649771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.649774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.649776 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.649788 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.649793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.649798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.660702 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.660726 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.660745 LLDP, length 82 [|LLDP] 12:24:18.660747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0508 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.660749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.660754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.660758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.660761 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.660773 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.660779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.660789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.660791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.660793 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.660797 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.660802 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.668976 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.668995 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.669016 LLDP, length 82 [|LLDP] 12:24:18.669017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050e f22b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.669019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.669025 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.669030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.669041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.669044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.669046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.669050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.669053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.669065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.669070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.669075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.679973 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.679996 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.680017 LLDP, length 82 [|LLDP] 12:24:18.680018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0517 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.680020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.680026 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.680029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.680033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.680044 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.680049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.680059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.680063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.680065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.680069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.680074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.690981 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.691004 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.691024 LLDP, length 82 [|LLDP] 12:24:18.691026 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051f bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.691028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.691033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.691037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.691040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.691052 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.691057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.691068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.691071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.691073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.691077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.691082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.699240 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.699264 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.699285 LLDP, length 82 [|LLDP] 12:24:18.699286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0526 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.699288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.699294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.699298 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.699303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.699314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.699317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.699318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.699322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.699343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.699349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.699354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.710250 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.710275 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.710295 LLDP, length 82 [|LLDP] 12:24:18.710297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052e 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.710299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.710305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.710308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.710311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.710323 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.710329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.710339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.710342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.710344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.710348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.710353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.721260 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.721285 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.721306 LLDP, length 82 [|LLDP] 12:24:18.721307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0536 d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.721309 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.721315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.721325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.721329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.721331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.721336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.721339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.721343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.721355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.721360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.721364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.729523 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.729546 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.729566 LLDP, length 82 [|LLDP] 12:24:18.729567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053d 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.729569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.729575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.729579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.729582 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.729588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.729598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.729601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.729603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.729614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.729619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.729624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.740539 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.740555 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.740575 LLDP, length 82 [|LLDP] 12:24:18.740576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0545 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.740578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.740584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.740587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.740591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.740602 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.740608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.740618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.740621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.740624 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.740628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.740632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.748786 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.748809 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.748829 LLDP, length 82 [|LLDP] 12:24:18.748831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054b d894 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.748832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.748838 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.748843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.748853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.748856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.748858 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.748862 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.748865 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.748877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.748882 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.748887 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.759796 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.759822 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.759843 LLDP, length 82 [|LLDP] 12:24:18.759844 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0554 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.759846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.759852 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.759856 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.759860 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.759871 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.759877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.759888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.759891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.759893 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.759898 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.759902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.770819 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.770849 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.770873 LLDP, length 82 [|LLDP] 12:24:18.770875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055c a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.770877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.770883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.770887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.770890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.770903 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.770909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.770920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.770923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.770925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.770930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.770935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.779064 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.779087 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.779106 LLDP, length 82 [|LLDP] 12:24:18.779108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0562 f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.779109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.779115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.779119 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.779124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.779134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.779137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.779139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.779143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.779154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.779159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.779164 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.790083 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.790112 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.790135 LLDP, length 82 [|LLDP] 12:24:18.790137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056b 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.790139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.790145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.790149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.790152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.790164 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.790170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.790181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.790184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.790186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.790191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.790196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.801087 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.801109 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.801130 LLDP, length 82 [|LLDP] 12:24:18.801132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0573 bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.801134 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.801140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.801150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.801153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.801155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.801161 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.801165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.801168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.801180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.801184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.801189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.809341 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.809363 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.809382 LLDP, length 82 [|LLDP] 12:24:18.809384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057a 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.809386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.809391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.809395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.809399 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.809404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.809414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.809417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.809419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.809431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.809435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.809440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.820351 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.820374 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.820394 LLDP, length 82 [|LLDP] 12:24:18.820396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0582 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.820397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.820403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.820407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.820410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.820421 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.820427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.820437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.820440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.820442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.820447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.820451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.831369 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.831392 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.831412 LLDP, length 82 [|LLDP] 12:24:18.831413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058a d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.831415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.831421 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.831426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.831435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.831438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.831441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.831444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.831448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.831460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.831465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.831470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.839620 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.839642 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.839661 LLDP, length 82 [|LLDP] 12:24:18.839663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0591 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.839665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.839670 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.839674 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.839677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.839689 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.839694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.839704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.839707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.839709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.839713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.839718 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.850631 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.850655 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.850674 LLDP, length 82 [|LLDP] 12:24:18.850675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0599 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.850677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.850683 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.850687 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.850690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.850701 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.850707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.850717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.850720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.850722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.850726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.850731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.858886 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.858909 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.858928 LLDP, length 82 [|LLDP] 12:24:18.858929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059f d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.858931 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.858937 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.858940 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.858945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.858955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.858958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.858961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.858964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.858976 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.858981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.858986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.869899 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.869921 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.869939 LLDP, length 82 [|LLDP] 12:24:18.869941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a8 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.869943 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.869948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.869952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.869955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.869967 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.869973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.869982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.869985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.869987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.869992 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.869996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.880906 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.880929 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.880948 LLDP, length 82 [|LLDP] 12:24:18.880949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b0 a562 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.880952 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.880957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.880967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.880971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.880973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.880977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.880981 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.880984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.880996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.881001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.881006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.889168 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.889183 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.889202 LLDP, length 82 [|LLDP] 12:24:18.889204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b6 f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.889206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.889212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.889229 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.889234 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.889239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.889249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.889252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.889255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.889267 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.889273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.889277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.900199 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.900232 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.900256 LLDP, length 82 [|LLDP] 12:24:18.900258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bf 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.900260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.900269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.900273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.900276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.900288 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.900295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.900307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.900311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.900313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.900318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.900324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.911197 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.911220 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.911246 LLDP, length 82 [|LLDP] 12:24:18.911247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c7 bef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.911249 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.911255 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.911261 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.911272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.911275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.911277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.911281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.911284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.911295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.911300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.911305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.919452 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.919471 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.919493 LLDP, length 82 [|LLDP] 12:24:18.919494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ce 0bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.919496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.919502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.919505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.919509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.919520 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.919526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.919536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.919540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.919542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.919546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.919551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.930456 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.930481 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.930503 LLDP, length 82 [|LLDP] 12:24:18.930505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d6 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.930507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.930513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.930516 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.930520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.930531 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.930537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.930547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.930549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.930552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.930556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.930561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.941466 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.941490 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.941515 LLDP, length 82 [|LLDP] 12:24:18.941517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05de d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.941519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.941525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.941528 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.941534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.941544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.941547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.941550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.941553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.941565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.941571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.941575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.949725 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.949748 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.949769 LLDP, length 82 [|LLDP] 12:24:18.949771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e5 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.949773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.949779 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.949782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.949786 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.949797 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.949803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.949813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.949816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.949818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.949823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.949828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.960732 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.960757 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.960776 LLDP, length 82 [|LLDP] 12:24:18.960778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ed 8bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.960780 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.960786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.960795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.960799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.960801 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.960806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.960809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.960813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.960824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.960829 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.960834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.973128 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.973146 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.973165 LLDP, length 82 [|LLDP] 12:24:18.973167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f3 d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.973169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.973175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.973179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.973182 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.973188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.973198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.973201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.973203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.973215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.973220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.973224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.980013 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.980030 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.980051 LLDP, length 82 [|LLDP] 12:24:18.980053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05fc 3ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.980054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.980060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.980064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.980067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.980079 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.980084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.980095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.980098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.980100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.980105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.980110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.991012 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.991036 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.991055 LLDP, length 82 [|LLDP] 12:24:18.991057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0604 a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.991059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.991065 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.991070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.991080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.991083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.991085 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.991089 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.991093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.991105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.991110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.991114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.999269 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.999293 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.999314 LLDP, length 82 [|LLDP] 12:24:18.999315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060a f22f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.999318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.999324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.999328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.999331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.999353 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.999360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.999370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.999373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.999376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.999380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.999385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.010280 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.010302 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.010322 LLDP, length 82 [|LLDP] 12:24:19.010323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0613 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.010325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.010331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.010334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.010338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.010349 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.010355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.010365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.010368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.010370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.010374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.010379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.021287 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.021311 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.021331 LLDP, length 82 [|LLDP] 12:24:19.021332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061b bef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.021334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.021340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.021344 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.021349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.021359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.021362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.021364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.021368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.021380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.021385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.021389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.033736 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.033753 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.033773 LLDP, length 82 [|LLDP] 12:24:19.033774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0622 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.033776 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.033782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.033786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.033789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.033801 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.033807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.033816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.033819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.033821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.033826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.033830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.040559 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.040581 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.040600 LLDP, length 82 [|LLDP] 12:24:19.040602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062a 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.040604 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.040609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.040619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.040622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.040624 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.040629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.040633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.040637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.040648 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.040653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.040658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.048815 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.048839 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.048858 LLDP, length 82 [|LLDP] 12:24:19.048859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0630 bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.048861 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.048867 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.048871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.048875 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.048880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.048890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.048893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.048895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.048907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.048913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.048917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.059825 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.059848 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.059868 LLDP, length 82 [|LLDP] 12:24:19.059869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0639 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.059871 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.059877 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.059881 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.059885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.059896 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.059901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.059911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.059915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.059917 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.059921 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.059925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.070834 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.070857 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.070877 LLDP, length 82 [|LLDP] 12:24:19.070878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0641 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.070880 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.070886 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.070891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.070901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.070904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.070906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.070910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.070913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.070925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.070930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.070934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.079091 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.079113 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.079134 LLDP, length 82 [|LLDP] 12:24:19.079135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0647 d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.079137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.079143 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.079146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.079150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.079161 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.079168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.079178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.079181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.079183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.079187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.079192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.094344 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.094361 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.094381 LLDP, length 82 [|LLDP] 12:24:19.094383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0650 3ef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.094385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.094391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.094395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.094398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.094410 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.094416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.094425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.094428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.094431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.094435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.094440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.101113 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.101136 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.101157 LLDP, length 82 [|LLDP] 12:24:19.101158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0658 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.101160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.101166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.101169 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.101174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.101185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.101188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.101190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.101194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.101205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.101211 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.101215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.109373 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.109396 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.109417 LLDP, length 82 [|LLDP] 12:24:19.109419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065e f226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.109421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.109427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.109430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.109434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.109445 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.109451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.109462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.109465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.109467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.109471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.109476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.120379 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.120407 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.120426 LLDP, length 82 [|LLDP] 12:24:19.120428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0667 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.120430 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.120436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.120445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.120449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.120451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.120456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.120459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.120463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.120475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.120480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.120484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.131397 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.131421 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.131441 LLDP, length 82 [|LLDP] 12:24:19.131443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066f bef9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.131445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.131451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.131454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.131458 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.131463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.131473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.131476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.131478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.131490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.131495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.131499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.139650 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.139674 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.139694 LLDP, length 82 [|LLDP] 12:24:19.139696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0676 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.139698 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.139704 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.139707 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.139711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.139722 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.139728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.139737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.139740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.139742 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.139747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.139751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.154951 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.154970 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.154990 LLDP, length 82 [|LLDP] 12:24:19.154992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067e 7226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.154994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.155000 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.155006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.155016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.155019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.155021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.155025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.155028 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.155040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.155045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.155049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.158919 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.158942 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.158962 LLDP, length 82 [|LLDP] 12:24:19.158964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0684 bef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.158965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.158971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.158975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.158978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.158990 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.158995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.159005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.159008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.159010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.159015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.159019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.169930 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.169954 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.169974 LLDP, length 82 [|LLDP] 12:24:19.169975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068d 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.169977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.169983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.169987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.169990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.170002 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.170008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.170017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.170020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.170022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.170027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.170031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.180945 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.180961 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.180981 LLDP, length 82 [|LLDP] 12:24:19.180982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0695 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.180984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.180990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.180993 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.180999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.181022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.181025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.181028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.181032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.181044 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.181049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.181053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.189196 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.189219 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.189239 LLDP, length 82 [|LLDP] 12:24:19.189241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069b d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.189243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.189248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.189252 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.189255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.189267 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.189272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.189283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.189286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.189288 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.189293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.189297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.200223 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.200254 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.200280 LLDP, length 82 [|LLDP] 12:24:19.200282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a4 3ef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.200284 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.200290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.200302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.200306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.200308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.200314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.200317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.200321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.200333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.200339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.200344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.215563 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.215584 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.215606 LLDP, length 82 [|LLDP] 12:24:19.215608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ac a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.215610 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.215616 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.215620 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.215623 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.215629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.215639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.215642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.215644 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.215657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.215662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.215666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.219486 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.219504 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.219524 LLDP, length 82 [|LLDP] 12:24:19.219526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b2 f226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.219528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.219534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.219537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.219541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.219553 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.219558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.219568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.219571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.219573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.219578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.219582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.230484 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.230507 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.230527 LLDP, length 82 [|LLDP] 12:24:19.230529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06bb 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.230531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.230537 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.230542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.230553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.230556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.230558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.230562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.230565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.230577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.230582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.230587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.238741 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.238764 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.238784 LLDP, length 82 [|LLDP] 12:24:19.238786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c1 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.238788 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.238794 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.238797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.238801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.238813 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.238819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.238828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.238832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.238834 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.238838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.238844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.249752 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.249776 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.249796 LLDP, length 82 [|LLDP] 12:24:19.249798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ca 0bc7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.249800 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.249806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.249810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.249813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.249825 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.249831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.249840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.249843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.249845 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.249850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.249854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.260764 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.260787 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.260807 LLDP, length 82 [|LLDP] 12:24:19.260809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d2 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.260811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.260816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.260820 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.260826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.260836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.260839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.260841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.260845 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.260857 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.260862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.260866 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.269020 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.269043 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.269062 LLDP, length 82 [|LLDP] 12:24:19.269064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d8 bef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.269067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.269072 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.269076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.269080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.269091 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.269097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.269106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.269109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.269112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.269116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.269120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.280031 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.280054 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.280073 LLDP, length 82 [|LLDP] 12:24:19.280075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e1 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.280077 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.280082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.280092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.280096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.280098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.280104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.280107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.280111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.280123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.280128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.280132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.291047 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.291064 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.291084 LLDP, length 82 [|LLDP] 12:24:19.291085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e9 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.291087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.291093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.291097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.291100 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.291105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.291115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.291118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.291120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.291132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.291137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.291142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.299297 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.299320 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.299350 LLDP, length 82 [|LLDP] 12:24:19.299352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ef d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.299354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.299360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.299364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.299367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.299380 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.299386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.299396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.299399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.299401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.299405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.299410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.310307 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.310331 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.310350 LLDP, length 82 [|LLDP] 12:24:19.310352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f8 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.310353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.310360 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.310365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.310375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.310378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.310380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.310384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.310388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.310400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.310405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.310410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.321318 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.321341 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.321361 LLDP, length 82 [|LLDP] 12:24:19.321363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0700 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.321365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.321370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.321374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.321378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.321389 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.321395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.321405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.321408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.321410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.321414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.321419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.329577 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.329600 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.329621 LLDP, length 82 [|LLDP] 12:24:19.329623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0706 f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.329625 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.329631 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.329634 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.329638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.329649 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.329655 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.329665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.329668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.329670 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.329674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.329679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.340586 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.340609 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.340629 LLDP, length 82 [|LLDP] 12:24:19.340631 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070f 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.340633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.340639 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.340642 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.340647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.340658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.340661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.340663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.340667 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.340679 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.340684 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.340688 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.348845 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.348868 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.348888 LLDP, length 82 [|LLDP] 12:24:19.348890 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0715 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.348892 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.348898 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.348902 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.348906 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.348917 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.348923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.348933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.348936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.348938 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.348943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.348947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.359855 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.359878 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.359897 LLDP, length 82 [|LLDP] 12:24:19.359899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071e 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.359901 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.359906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.359916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.359919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.359921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.359927 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.359930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.359934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.359946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.359951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.359955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.370865 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.370889 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.370908 LLDP, length 82 [|LLDP] 12:24:19.370910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0726 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.370911 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.370917 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.370921 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.370925 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.370930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.370940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.370943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.370945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.370958 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.370963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.370968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.379123 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.379146 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.379167 LLDP, length 82 [|LLDP] 12:24:19.379168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072c bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.379170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.379175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.379179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.379183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.379194 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.379200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.379210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.379213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.379215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.379220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.379224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.390141 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.390159 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.390179 LLDP, length 82 [|LLDP] 12:24:19.390181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0735 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.390183 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.390188 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.390193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.390204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.390207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.390209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.390213 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.390217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.390229 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.390234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.390239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.401143 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.401166 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.401186 LLDP, length 82 [|LLDP] 12:24:19.401187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073d 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.401189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.401195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.401199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.401202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.401213 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.401219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.401229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.401232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.401234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.401238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.401243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.409399 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.409422 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.409441 LLDP, length 82 [|LLDP] 12:24:19.409442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0743 d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.409444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.409450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.409454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.409457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.409469 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.409474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.409485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.409488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.409490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.409494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.409499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.420421 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.420438 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.420458 LLDP, length 82 [|LLDP] 12:24:19.420459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074c 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.420461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.420467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.420471 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.420476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.420485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.420488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.420490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.420494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.420507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.420512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.420517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.431420 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.431443 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.431462 LLDP, length 82 [|LLDP] 12:24:19.431464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0754 a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.431466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.431472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.431475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.431479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.431490 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.431497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.431506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.431509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.431512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.431516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.431521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.439678 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.439701 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.439720 LLDP, length 82 [|LLDP] 12:24:19.439722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075a f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.439724 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.439729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.439740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.439743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.439745 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.439750 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.439762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.439766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.439779 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.439784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.439789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.450690 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.450716 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.450737 LLDP, length 82 [|LLDP] 12:24:19.450739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0763 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.450741 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.450746 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.450750 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.450753 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.450759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.450769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.450772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.450774 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.450786 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.450791 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.450795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.458946 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.458969 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.458988 LLDP, length 82 [|LLDP] 12:24:19.458989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0769 a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.458992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.458997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.459001 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.459004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.459016 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.459022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.459033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.459036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.459038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.459042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.459047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.469959 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.469982 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.470003 LLDP, length 82 [|LLDP] 12:24:19.470004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0772 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.470006 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.470012 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.470017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.470028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.470031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.470033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.470037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.470041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.470053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.470058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.470062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.480967 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.480991 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.481009 LLDP, length 82 [|LLDP] 12:24:19.481011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077a 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.481013 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.481019 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.481023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.481026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.481037 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.481043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.481053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.481056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.481059 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.481063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.481068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.489224 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.489247 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.489267 LLDP, length 82 [|LLDP] 12:24:19.489268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0780 bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.489270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.489276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.489280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.489283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.489295 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.489301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.489310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.489313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.489315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.489320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.489324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.500234 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.500257 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.500277 LLDP, length 82 [|LLDP] 12:24:19.500278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0789 2562 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.500280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.500286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.500290 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.500295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.500305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.500308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.500310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.500314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.500325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.500331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.500335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.511255 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.511272 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.511291 LLDP, length 82 [|LLDP] 12:24:19.511293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0791 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.511295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.511300 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.511304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.511308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.511319 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.511325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.511344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.511349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.511351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.511357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.511361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.519504 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.519528 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.519548 LLDP, length 82 [|LLDP] 12:24:19.519549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0797 d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.519551 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.519557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.519567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.519570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.519572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.519577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.519580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.519584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.519596 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.519601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.519606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.530512 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.530535 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.530555 LLDP, length 82 [|LLDP] 12:24:19.530557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a0 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.530558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.530565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.530568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.530572 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.530577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.530587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.530590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.530592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.530604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.530608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.530613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.538781 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.538798 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.538818 LLDP, length 82 [|LLDP] 12:24:19.538819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a6 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.538821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.538827 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.538831 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.538835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.538846 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.538852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.538862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.538865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.538867 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.538871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.538876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.549781 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.549804 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.549824 LLDP, length 82 [|LLDP] 12:24:19.549826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ae f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.549828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.549833 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.549839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.549849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.549852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.549854 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.549858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.549861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.549873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.549878 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.549882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.560792 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.560818 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.560838 LLDP, length 82 [|LLDP] 12:24:19.560840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b7 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.560842 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.560847 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.560851 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.560855 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.560866 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.560872 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.560882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.560885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.560887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.560892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.560896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.569050 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.569074 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.569094 LLDP, length 82 [|LLDP] 12:24:19.569096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bd a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.569098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.569104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.569108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.569111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.569123 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.569129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.569138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.569142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.569144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.569148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.569153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.580061 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.580085 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.580105 LLDP, length 82 [|LLDP] 12:24:19.580106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c6 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.580108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.580114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.580118 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.580123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.580133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.580136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.580138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.580142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.580154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.580159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.580163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.591070 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.591093 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.591112 LLDP, length 82 [|LLDP] 12:24:19.591114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ce 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.591115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.591121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.591125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.591129 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.591140 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.591146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.591155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.591158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.591160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.591164 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.591169 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.599327 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.599356 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.599377 LLDP, length 82 [|LLDP] 12:24:19.599379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d4 bef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.599381 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.599387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.599397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.599400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.599403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.599408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.599411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.599415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.599427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.599432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.599436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.610338 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.610360 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.610380 LLDP, length 82 [|LLDP] 12:24:19.610381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07dd 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.610383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.610389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.610392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.610396 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.610401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.610411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.610414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.610416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.610428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.610433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.610438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.621351 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.621367 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.621387 LLDP, length 82 [|LLDP] 12:24:19.621388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e5 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.621390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.621396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.621399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.621403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.621415 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.621420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.621430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.621433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.621436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.621440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.621445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.629604 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.629627 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.629646 LLDP, length 82 [|LLDP] 12:24:19.629648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07eb d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.629650 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.629656 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.629661 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.629671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.629674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.629677 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.629680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.629684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.629696 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.629701 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.629706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.640616 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.640639 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.640657 LLDP, length 82 [|LLDP] 12:24:19.640659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f4 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.640661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.640667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.640670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.640674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.640685 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.640691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.640702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.640705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.640707 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.640711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.640716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.648871 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.648896 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.648916 LLDP, length 82 [|LLDP] 12:24:19.648918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fa 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.648919 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.648925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.648929 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.648932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.648944 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.648949 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.648959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.648962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.648964 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.648968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.648973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.659882 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.659907 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.659929 LLDP, length 82 [|LLDP] 12:24:19.659930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0802 f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.659932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.659938 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.659941 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.659947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.659957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.659960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.659962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.659966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.659978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.659983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.659988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.670896 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.670921 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.670941 LLDP, length 82 [|LLDP] 12:24:19.670943 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080b 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.670944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.670951 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.670954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.670958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.670970 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.670976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.670986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.670988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.670991 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.670995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.670999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.679151 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.679173 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.679193 LLDP, length 82 [|LLDP] 12:24:19.679195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0811 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.679197 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.679202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.679213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.679216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.679218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.679223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.679227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.679230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.679242 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.679247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.679252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.690165 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.690187 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.690209 LLDP, length 82 [|LLDP] 12:24:19.690211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081a 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.690213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.690219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.690222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.690226 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.690232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.690243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.690246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.690249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.690261 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.690266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.690271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.701182 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.701207 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.701229 LLDP, length 82 [|LLDP] 12:24:19.701231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0822 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.701233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.701239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.701242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.701246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.701258 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.701263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.701273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.701277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.701279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.701283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.701287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.709429 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.709453 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.709474 LLDP, length 82 [|LLDP] 12:24:19.709476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0828 bef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.709478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.709484 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.709490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.709500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.709503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.709505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.709509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.709512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.709525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.709530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.709534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.720439 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.720462 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.720482 LLDP, length 82 [|LLDP] 12:24:19.720483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0831 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.720485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.720491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.720495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.720498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.720510 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.720516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.720526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.720529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.720531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.720535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.720540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.731450 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.731474 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.731493 LLDP, length 82 [|LLDP] 12:24:19.731495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0839 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.731497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.731503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.731506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.731510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.731522 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.731528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.731539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.731542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.731544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.731548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.731553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.739733 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.739760 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.739790 LLDP, length 82 [|LLDP] 12:24:19.739792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083f d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.739794 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.739802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.739806 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.739812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.739824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.739827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.739829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.739833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.739847 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.739852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.739857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.750738 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.750765 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.750793 LLDP, length 82 [|LLDP] 12:24:19.750795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0848 3efa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.750798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.750805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.750809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.750813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.750826 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.750847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.750862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.750866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.750868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.750873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.750878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.759007 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.759036 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.759063 LLDP, length 82 [|LLDP] 12:24:19.759065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084e 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.759068 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.759075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.759090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.759095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.759097 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.759104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.759108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.759112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.759125 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.759131 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.759136 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.770006 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.770030 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.770060 LLDP, length 82 [|LLDP] 12:24:19.770062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0856 f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.770064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.770071 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.770075 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.770079 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.770085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.770096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.770100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.770102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.770115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.770120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.770125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.781001 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.781025 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.781047 LLDP, length 82 [|LLDP] 12:24:19.781049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085f 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.781051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.781057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.781060 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.781064 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.781076 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.781082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.781093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.781096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.781098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.781103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.781107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.789309 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.789355 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.789403 LLDP, length 82 [|LLDP] 12:24:19.789405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0865 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.789408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.789420 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.789428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.789446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.789450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.789452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.789457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.789461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.789475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.789482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.789489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.800294 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.800336 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.800372 LLDP, length 82 [|LLDP] 12:24:19.800374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086e 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.800376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.800387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.800391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.800394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.800407 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.800414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.800429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.800433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.800436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.800441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.800447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.811316 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.811367 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.811406 LLDP, length 82 [|LLDP] 12:24:19.811408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0876 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.811410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.811420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.811423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.811427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.811440 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.811446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.811461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.811465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.811467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.811472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.811478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.819567 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.819602 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.819638 LLDP, length 82 [|LLDP] 12:24:19.819640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087c bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.819643 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.819652 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.819656 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.819662 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.819677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.819680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.819682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.819686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.819699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.819705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.819710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.830563 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.830599 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.830638 LLDP, length 82 [|LLDP] 12:24:19.830641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0885 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.830643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.830652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.830656 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.830669 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.830676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.830692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.838836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.838850 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.838880 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.838920 LLDP, length 82 [|LLDP] 12:24:19.838922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088b 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.838925 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.838934 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.838941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.838959 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.838965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.838969 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.838974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.838979 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.838983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.838998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.849834 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.849876 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.849912 LLDP, length 82 [|LLDP] 12:24:19.849914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0893 d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.849917 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.849926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.849931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.849934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.849947 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.849954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.849971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.849977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.849981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.849983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.849989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.860865 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.860903 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.860941 LLDP, length 82 [|LLDP] 12:24:19.860944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089c 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.860946 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.860956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.860960 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.860964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.860977 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.860983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.860998 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.861004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.861008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.861010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.861016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.869090 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.869114 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.869138 LLDP, length 82 [|LLDP] 12:24:19.869140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a2 8bc7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.869142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.869149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.869153 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.869158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.869170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.869175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.869178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.869181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.869194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.869196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.869201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.880095 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.880120 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.880143 LLDP, length 82 [|LLDP] 12:24:19.880145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08aa f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.880147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.880153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.880157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.880160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.880172 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.880178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.880189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.880195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.880198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.880200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.880204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.891105 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.891130 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.891152 LLDP, length 82 [|LLDP] 12:24:19.891154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b3 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.891156 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.891162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.891172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.891178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.891181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.891186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.891190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.891193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.891205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.891208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.891213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.899365 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.899391 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.899411 LLDP, length 82 [|LLDP] 12:24:19.899414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b9 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.899415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.899421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.899425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.899429 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.899434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.899444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.899449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.899452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.899464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.899467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.899472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.910367 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.910392 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.910412 LLDP, length 82 [|LLDP] 12:24:19.910414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c2 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.910416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.910422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.910426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.910429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.910441 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.910447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.910457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.910462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.910466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.910468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.910472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.921377 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.921401 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.921422 LLDP, length 82 [|LLDP] 12:24:19.921424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ca 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.921426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.921432 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.921437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.921448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.921453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.921456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.921460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.921463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.921475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.921478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.921483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.929647 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.929666 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.929687 LLDP, length 82 [|LLDP] 12:24:19.929689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d0 bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.929691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.929697 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.929701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.929704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.929716 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.929722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.929732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.929737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.929740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.929743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.929747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.940647 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.940672 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.940693 LLDP, length 82 [|LLDP] 12:24:19.940695 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d9 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.940697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.940703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.940706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.940710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.940722 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.940728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.940738 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.940743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.940746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.940748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.940753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.948904 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.948929 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.948950 LLDP, length 82 [|LLDP] 12:24:19.948952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08df 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.948954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.948960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.948964 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.948969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.948979 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.948984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.948987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.948991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.949003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.949006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.949011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.959915 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.959940 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.959962 LLDP, length 82 [|LLDP] 12:24:19.959963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e7 d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.959966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.959971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.959975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.959978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.959990 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.959996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.960006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.960011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.960014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.960016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.960021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.970925 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.970952 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.970975 LLDP, length 82 [|LLDP] 12:24:19.970976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f0 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.970978 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.970985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.970995 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.971000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.971003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.971009 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.971013 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.971016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.971028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.971031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.971036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.979189 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.979208 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.979229 LLDP, length 82 [|LLDP] 12:24:19.979231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f6 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.979233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.979239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.979243 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.979247 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.979252 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.979262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.979267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.979270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.979282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.979285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.979290 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.990192 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.990216 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.990237 LLDP, length 82 [|LLDP] 12:24:19.990239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fe f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.990241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.990247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.990250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.990254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.990266 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.990272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.990282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.990287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.990290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.990292 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.990297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.001203 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.001228 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.001248 LLDP, length 82 [|LLDP] 12:24:20.001250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0907 5895 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.001252 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.001258 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.001263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.001273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.001278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.001282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.001285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.001289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.001301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.001304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.001309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.009461 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.009485 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.009505 LLDP, length 82 [|LLDP] 12:24:20.009507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090d a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.009509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.009515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.009518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.009522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.009534 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.009540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.009550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.009554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.009557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.009559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.009564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.020468 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.020493 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.020513 LLDP, length 82 [|LLDP] 12:24:20.020515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0916 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.020517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.020523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.020526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.020530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.020542 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.020547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.020558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.020563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.020566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.020568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.020572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.028727 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.028751 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.028771 LLDP, length 82 [|LLDP] 12:24:20.028773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091c 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.028775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.028781 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.028785 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.028790 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.028800 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.028805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.028808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.028811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.028824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.028826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.028831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.039737 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.039762 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.039782 LLDP, length 82 [|LLDP] 12:24:20.039784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0924 befa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.039786 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.039792 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.039795 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.039799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.039811 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.039816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.039826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.039831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.039834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.039836 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.039840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.050749 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.050774 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.050795 LLDP, length 82 [|LLDP] 12:24:20.050796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092d 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.050798 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.050804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.050815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.050821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.050824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.050829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.050833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.050836 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.050848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.050851 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.050856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.059006 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.059030 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.059051 LLDP, length 82 [|LLDP] 12:24:20.059052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0933 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.059054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.059060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.059064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.059068 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.059073 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.059084 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.059089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.059092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.059105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.059108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.059113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.070017 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.070042 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.070063 LLDP, length 82 [|LLDP] 12:24:20.070065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093b d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.070067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.070073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.070077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.070081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.070093 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.070099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.070109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.070114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.070117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.070119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.070123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.081030 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.081057 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.081077 LLDP, length 82 [|LLDP] 12:24:20.081079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0944 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.081081 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.081087 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.081092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.081102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.081107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.081110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.081114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.081118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.081130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.081132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.081138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.089284 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.089309 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.089331 LLDP, length 82 [|LLDP] 12:24:20.089332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094a 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.089334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.089340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.089344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.089347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.089359 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.089365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.089375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.089381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.089383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.089385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.089390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.100295 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.100320 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.100340 LLDP, length 82 [|LLDP] 12:24:20.100342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0952 f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.100343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.100350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.100354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.100357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.100369 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.100375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.100385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.100389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.100392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.100394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.100399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.111305 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.111330 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.111357 LLDP, length 82 [|LLDP] 12:24:20.111359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095b 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.111361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.111368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.111372 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.111377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.111388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.111392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.111395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.111399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.111412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.111414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.111419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.119562 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.119586 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.119607 LLDP, length 82 [|LLDP] 12:24:20.119608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0961 a562 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.119610 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.119616 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.119620 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.119624 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.119635 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.119641 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.119651 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.119656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.119659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.119661 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.119665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.130574 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.130598 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.130619 LLDP, length 82 [|LLDP] 12:24:20.130621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096a 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.130623 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.130629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.130640 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.130645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.130648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.130653 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.130657 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.130661 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.130673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.130676 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.130681 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.138829 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.138853 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.138873 LLDP, length 82 [|LLDP] 12:24:20.138875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0970 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.138877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.138883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.138887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.138890 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.138895 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.138905 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.138910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.138913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.138925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.138928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.138933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.149852 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.149870 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.149890 LLDP, length 82 [|LLDP] 12:24:20.149892 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0978 bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.149893 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.149899 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.149903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.149907 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.149919 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.149924 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.149934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.149939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.149942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.149944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.149949 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.160851 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.160868 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.160889 LLDP, length 82 [|LLDP] 12:24:20.160890 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0981 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.160892 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.160899 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.160904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.160914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.160919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.160922 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.160926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.160929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.160942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.160945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.160950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.169101 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.169124 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.169143 LLDP, length 82 [|LLDP] 12:24:20.169145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0987 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.169147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.169152 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.169156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.169160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.169171 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.169177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.169187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.169192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.169194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.169196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.169201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.180112 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.180132 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.180150 LLDP, length 82 [|LLDP] 12:24:20.180151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098f d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.180153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.180159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.180162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.180166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.180178 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.180183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.180204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.180210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.180213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.180215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.180219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.191125 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.191145 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.191162 LLDP, length 82 [|LLDP] 12:24:20.191163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0998 3ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.191165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.191171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.191175 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.191180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.191189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.191194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.191196 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.191200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.191212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.191215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.191220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.199385 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.199404 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.199421 LLDP, length 82 [|LLDP] 12:24:20.199423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099e 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.199425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.199431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.199434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.199438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.199449 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.199455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.199464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.199468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.199471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.199473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.199478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.210390 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.210409 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.210425 LLDP, length 82 [|LLDP] 12:24:20.210427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a6 f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.210429 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.210434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.210443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.210448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.210451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.210455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.210459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.210463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.210474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.210477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.210482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.221399 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.221417 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.221434 LLDP, length 82 [|LLDP] 12:24:20.221435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09af 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.221437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.221442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.221446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.221449 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.221454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.221464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.221468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.221471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.221482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.221485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.221490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.229644 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.229656 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.229672 LLDP, length 82 [|LLDP] 12:24:20.229673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b5 a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.229675 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.229681 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.229685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.229696 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.229702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.229710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.240667 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.240685 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.240701 LLDP, length 82 [|LLDP] 12:24:20.240703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09be 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.240704 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.240709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.240713 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.240718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.240727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.240729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.240731 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.240736 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.240747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.240752 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.240757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.248924 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.248942 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.248958 LLDP, length 82 [|LLDP] 12:24:20.248959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c4 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.248961 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.248966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.248970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.248974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.248985 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.248991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.249000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.249003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.249004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.249009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.249014 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.259934 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.259953 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.259969 LLDP, length 82 [|LLDP] 12:24:20.259971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09cc bef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.259972 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.259978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.259987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.259990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.259992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.259997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.260000 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.260004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.260015 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.260020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.260025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.270944 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.270963 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.270979 LLDP, length 82 [|LLDP] 12:24:20.270980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d5 2559 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.270983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.270988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.270992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.270995 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.271000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.271010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.271012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.271015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.271027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.271031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.271036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.279202 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.279219 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.279235 LLDP, length 82 [|LLDP] 12:24:20.279236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09db 7226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.279238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.279243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.279247 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.279250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.279262 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.279268 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.279277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.279280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.279282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.279286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.279291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.290214 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.290232 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.290249 LLDP, length 82 [|LLDP] 12:24:20.290250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e3 d891 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.290252 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.290257 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.290262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.290272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.290274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.290277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.290280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.290284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.290296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.290301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.290306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.301222 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.301241 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.301258 LLDP, length 82 [|LLDP] 12:24:20.301259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ec 3ef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.301261 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.301266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.301270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.301274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.301285 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.301291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.301300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.301303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.301305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.301309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.301314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.309484 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.309503 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.309518 LLDP, length 82 [|LLDP] 12:24:20.309520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f2 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.309522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.309527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.309531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.309535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.309546 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.309551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.309560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.309563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.309565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.309570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.309574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.320491 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.320511 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.320527 LLDP, length 82 [|LLDP] 12:24:20.320529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fa f226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.320531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.320536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.320540 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.320544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.320553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.320556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.320559 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.320562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.320574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.320579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.320583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.328747 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.328766 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.328781 LLDP, length 82 [|LLDP] 12:24:20.328783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a01 3ef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.328785 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.328790 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.328793 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.328797 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.328809 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.328814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.328823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.328825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.328828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.328832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.328836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.339757 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.339776 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.339793 LLDP, length 82 [|LLDP] 12:24:20.339794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a09 a559 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.339796 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.339802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.339811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.339814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.339816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.339820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.339824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.339828 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.339839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.339844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.339848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.350767 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.350785 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.350802 LLDP, length 82 [|LLDP] 12:24:20.350804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a12 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.350805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.350810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.350814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.350818 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.350823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.350832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.350835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.350837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.350849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.350854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.350858 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.359024 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.359042 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.359057 LLDP, length 82 [|LLDP] 12:24:20.359058 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a18 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.359060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.359065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.359069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.359072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.359083 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.359089 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.359098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.359100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.359102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.359107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.359111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.370036 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.370055 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.370072 LLDP, length 82 [|LLDP] 12:24:20.370074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a20 bef9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.370075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.370081 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.370086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.370095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.370097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.370100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.370104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.370108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.370120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.370124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.370129 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.381045 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.381070 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.381093 LLDP, length 82 [|LLDP] 12:24:20.381094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a29 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.381096 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.381102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.381106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.381109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.381122 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.381127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.381136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.381139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.381142 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.381146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.381150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.389306 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.389324 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.389341 LLDP, length 82 [|LLDP] 12:24:20.389343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2f 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.389345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.389351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.389355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.389358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.389370 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.389376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.389385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.389388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.389390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.389395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.389399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.400315 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.400337 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.400359 LLDP, length 82 [|LLDP] 12:24:20.400361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a37 d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.400363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.400368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.400372 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.400377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.400386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.400389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.400391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.400395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.400407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.400412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.400416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.411324 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.411351 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.411372 LLDP, length 82 [|LLDP] 12:24:20.411374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a40 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.411376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.411382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.411385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.411389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.411401 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.411407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.411416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.411418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.411421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.411425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.411430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.419584 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.419604 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.419621 LLDP, length 82 [|LLDP] 12:24:20.419623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a46 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.419625 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.419630 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.419640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.419643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.419645 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.419650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.419653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.419657 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.419669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.419674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.419678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.430593 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.430612 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.430629 LLDP, length 82 [|LLDP] 12:24:20.430630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4e f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.430633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.430638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.430642 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.430645 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.430651 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.430660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.430662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.430665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.430677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.430681 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.430686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.438850 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.438869 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.438886 LLDP, length 82 [|LLDP] 12:24:20.438888 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a55 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.438889 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.438894 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.438898 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.438902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.438913 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.438918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.438927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.438930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.438932 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.438937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.438941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.449860 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.449878 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.449896 LLDP, length 82 [|LLDP] 12:24:20.449897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5d a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.449899 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.449904 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.449909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.449918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.449921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.449923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.449927 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.449931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.449942 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.449947 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.449951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.460871 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.460889 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.460907 LLDP, length 82 [|LLDP] 12:24:20.460909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a66 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.460910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.460915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.460919 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.460923 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.460935 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.460940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.460949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.460952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.460954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.460959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.460964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.469129 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.469149 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.469165 LLDP, length 82 [|LLDP] 12:24:20.469167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6c 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.469168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.469174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.469177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.469181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.469192 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.469198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.469207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.469210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.469212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.469216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.469221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.480138 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.480157 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.480174 LLDP, length 82 [|LLDP] 12:24:20.480176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a74 bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.480178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.480182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.480187 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.480191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.480200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.480203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.480206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.480209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.480221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.480226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.480230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.491149 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.491169 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.491185 LLDP, length 82 [|LLDP] 12:24:20.491186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7d 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.491188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.491193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.491197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.491200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.491211 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.491217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.491226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.491229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.491231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.491236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.491240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.499406 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.499424 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.499441 LLDP, length 82 [|LLDP] 12:24:20.499442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a83 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.499445 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.499450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.499459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.499462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.499464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.499469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.499472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.499476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.499487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.499493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.499497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.510416 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.510434 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.510451 LLDP, length 82 [|LLDP] 12:24:20.510453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8b d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.510454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.510460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.510463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.510467 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.510472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.510481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.510484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.510486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.510497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.510502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.510506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.518672 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.518690 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.518706 LLDP, length 82 [|LLDP] 12:24:20.518708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a92 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.518710 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.518715 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.518719 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.518722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.518733 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.518738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.518747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.518750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.518752 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.518756 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.518761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.529687 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.529706 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.529722 LLDP, length 82 [|LLDP] 12:24:20.529724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9a 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.529726 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.529731 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.529736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.529745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.529748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.529750 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.529754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.529757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.529769 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.529774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.529778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.540695 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.540714 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.540730 LLDP, length 82 [|LLDP] 12:24:20.540732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa2 f22b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.540733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.540738 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.540742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.540746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.540757 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.540762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.540771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.540774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.540776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.540780 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.540785 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.548956 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.548975 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.548991 LLDP, length 82 [|LLDP] 12:24:20.548992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa9 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.548994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.548999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.549003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.549007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.549018 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.549024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.549033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.549035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.549038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.549042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.549047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.559964 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.559982 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.560000 LLDP, length 82 [|LLDP] 12:24:20.560001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab1 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.560003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.560008 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.560012 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.560017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.560026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.560029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.560031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.560035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.560047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.560052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.560056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.570972 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.570991 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.571006 LLDP, length 82 [|LLDP] 12:24:20.571008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aba 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.571010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.571015 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.571019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.571023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.571034 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.571039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.571048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.571051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.571053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.571058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.571062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.579229 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.579247 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.579262 LLDP, length 82 [|LLDP] 12:24:20.579264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac0 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.579266 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.579271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.579280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.579283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.579285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.579289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.579293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.579297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.579309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.579313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.579318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.590242 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.590262 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.590279 LLDP, length 82 [|LLDP] 12:24:20.590280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac8 bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.590282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.590288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.590291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.590295 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.590300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.590309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.590311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.590314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.590325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.590330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.590335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.601253 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.601272 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.601288 LLDP, length 82 [|LLDP] 12:24:20.601290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad1 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.601292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.601297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.601301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.601304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.601316 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.601321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.601330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.601333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.601335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.601340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.601345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.609512 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.609525 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.609541 LLDP, length 82 [|LLDP] 12:24:20.609543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad7 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.609545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.609550 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.609555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.609564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.609567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.609569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.609572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.609576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.609588 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.609593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.609597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.620519 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.620537 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.620553 LLDP, length 82 [|LLDP] 12:24:20.620555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0adf d895 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.620556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.620562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.620566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.620569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.620592 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.620599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.620609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.620612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.620614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.620618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.620623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.628811 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.628846 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.628870 LLDP, length 82 [|LLDP] 12:24:20.628872 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae6 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.628874 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.628883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.628887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.628891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.628903 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.628909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.628923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.628926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.628928 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.628933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.628938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.639796 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.639819 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.639841 LLDP, length 82 [|LLDP] 12:24:20.639843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aee 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.639845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.639851 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.639855 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.639860 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.639872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.639874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.639877 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.639881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.639892 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.639897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.639902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.650802 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.650827 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.650847 LLDP, length 82 [|LLDP] 12:24:20.650848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af6 f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.650851 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.650856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.650860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.650863 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.650875 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.650881 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.650891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.650894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.650896 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.650901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.650906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.659062 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.659084 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.659104 LLDP, length 82 [|LLDP] 12:24:20.659105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afd 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.659107 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.659112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.659123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.659126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.659128 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.659134 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.659137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.659141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.659153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.659158 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.659162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.670071 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.670093 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.670112 LLDP, length 82 [|LLDP] 12:24:20.670114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b05 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.670116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.670122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.670125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.670129 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.670134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.670149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.670152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.670155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.670166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.670171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.670176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.681080 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.681102 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.681121 LLDP, length 82 [|LLDP] 12:24:20.681123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0e 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.681125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.681131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.681134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.681138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.681149 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.681154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.681164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.681167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.681169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.681173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.681178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.689341 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.689365 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.689385 LLDP, length 82 [|LLDP] 12:24:20.689387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b14 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.689389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.689395 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.689400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.689410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.689413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.689415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.689419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.689422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.689434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.689439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.689444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.700347 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.700372 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.700395 LLDP, length 82 [|LLDP] 12:24:20.700397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1c bef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.700399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.700404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.700408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.700412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.700424 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.700429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.700440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.700443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.700445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.700450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.700454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.711367 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.711390 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.711411 LLDP, length 82 [|LLDP] 12:24:20.711413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b25 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.711415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.711420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.711424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.711428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.711439 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.711445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.711455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.711458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.711461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.711465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.711469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.719618 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.719643 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.719664 LLDP, length 82 [|LLDP] 12:24:20.719666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2b 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.719668 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.719674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.719677 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.719683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.719693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.719696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.719698 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.719702 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.719714 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.719719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.719724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.730629 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.730652 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.730672 LLDP, length 82 [|LLDP] 12:24:20.730673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b33 d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.730675 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.730681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.730684 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.730688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.730699 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.730705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.730715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.730718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.730720 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.730724 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.730729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.738883 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.738905 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.738924 LLDP, length 82 [|LLDP] 12:24:20.738926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3a 2561 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.738927 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.738933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.738943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.738946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.738948 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.738953 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.738956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.738960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.738971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.738976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.738981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.749892 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.749914 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.749934 LLDP, length 82 [|LLDP] 12:24:20.749935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b42 8bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.749937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.749943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.749946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.749950 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.749955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.749965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.749968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.749970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.749981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.749986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.749990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.760903 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.760925 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.760944 LLDP, length 82 [|LLDP] 12:24:20.760947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4a f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.760948 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.760954 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.760958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.760961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.760973 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.760978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.760988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.760991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.760993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.760997 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.761002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.769183 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.769206 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.769228 LLDP, length 82 [|LLDP] 12:24:20.769230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b51 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.769232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.769239 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.769245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.769255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.769258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.769260 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.769264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.769268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.769280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.769285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.769290 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.780176 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.780202 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.780223 LLDP, length 82 [|LLDP] 12:24:20.780224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b59 a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.780226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.780232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.780236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.780239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.780251 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.780257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.780267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.780270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.780272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.780277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.780282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.791207 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.791234 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.791264 LLDP, length 82 [|LLDP] 12:24:20.791266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b62 0bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.791268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.791275 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.791279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.791283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.791295 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.791301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.791314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.791317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.791320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.791324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.791329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.799454 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.799476 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.799501 LLDP, length 82 [|LLDP] 12:24:20.799503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b68 588f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.799505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.799511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.799515 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.799521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.799531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.799534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.799537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.799541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.799552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.799558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.799563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.810456 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.810481 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.810501 LLDP, length 82 [|LLDP] 12:24:20.810503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b70 bef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.810505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.810511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.810515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.810518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.810530 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.810535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.810546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.810549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.810551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.810555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.810560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.818709 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.818733 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.818755 LLDP, length 82 [|LLDP] 12:24:20.818757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b77 0bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.818759 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.818764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.818774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.818778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.818781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.818786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.818790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.818793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.818805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.818810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.818815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.829722 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.829743 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.829761 LLDP, length 82 [|LLDP] 12:24:20.829763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7f 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.829765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.829770 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.829774 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.829777 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.829782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.829791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.829794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.829796 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.829808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.829813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.829818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.840724 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.840744 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.840762 LLDP, length 82 [|LLDP] 12:24:20.840764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b87 d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.840766 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.840771 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.840775 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.840778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.840790 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.840795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.840804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.840807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.840809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.840814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.840819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.848987 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.849007 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.849025 LLDP, length 82 [|LLDP] 12:24:20.849027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8e 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.849029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.849034 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.849040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.849049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.849052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.849054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.849058 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.849062 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.849073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.849084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.849089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.860011 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.860033 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.860057 LLDP, length 82 [|LLDP] 12:24:20.860059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b96 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.860061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.860068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.860072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.860075 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.860088 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.860095 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.860106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.860110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.860112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.860116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.860121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.871049 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.871089 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.871127 LLDP, length 82 [|LLDP] 12:24:20.871130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9e f22e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.871132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.871142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.871146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.871150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.871161 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.871168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.871183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.871187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.871189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.871195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.871200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.879277 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.879309 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.879334 LLDP, length 82 [|LLDP] 12:24:20.879343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba5 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.879345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.879352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.879356 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.879362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.879374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.879377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.879379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.879383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.879396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.879401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.879406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.890299 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.890325 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.890353 LLDP, length 82 [|LLDP] 12:24:20.890354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bad a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.890356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.890364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.890368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.890372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.890384 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.890390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.890402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.890405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.890407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.890412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.890417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.901291 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.901318 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.901340 LLDP, length 82 [|LLDP] 12:24:20.901342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb6 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.901344 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.901349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.901360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.901364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.901366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.901371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.901375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.901378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.901390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.901395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.901400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.909543 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.909568 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.909590 LLDP, length 82 [|LLDP] 12:24:20.909592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbc 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.909594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.909600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.909604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.909607 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.909612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.909623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.909626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.909628 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.909639 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.909644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.909649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.920572 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.920610 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.920643 LLDP, length 82 [|LLDP] 12:24:20.920645 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc4 bef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.920648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.920656 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.920660 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.920663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.920675 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.920682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.920694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.920697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.920699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.920704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.920710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.928817 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.928845 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.928869 LLDP, length 82 [|LLDP] 12:24:20.928871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcb 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.928873 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.928879 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.928885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.928896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.928899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.928901 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.928905 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.928909 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.928920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.928925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.928930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.939822 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.939846 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.939867 LLDP, length 82 [|LLDP] 12:24:20.939869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd3 7226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.939871 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.939876 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.939880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.939883 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.939896 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.939901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.939912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.939915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.939917 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.939922 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.939927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.950835 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.950857 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.950878 LLDP, length 82 [|LLDP] 12:24:20.950880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdb d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.950882 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.950888 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.950892 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.950895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.950907 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.950912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.950923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.950926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.950929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.950933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.950938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.959089 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.959113 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.959133 LLDP, length 82 [|LLDP] 12:24:20.959135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be2 2559 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.959137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.959142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.959146 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.959151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.959161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.959164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.959166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.959170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.959181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.959186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.959191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.970099 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.970122 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.970143 LLDP, length 82 [|LLDP] 12:24:20.970145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bea 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.970147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.970152 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.970156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.970159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.970171 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.970176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.970186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.970190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.970192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.970196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.970201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.981111 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.981135 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.981154 LLDP, length 82 [|LLDP] 12:24:20.981156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf2 f226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.981158 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.981163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.981174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.981177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.981180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.981185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.981188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.981192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.981203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.981208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.981213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.989368 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.989391 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.989410 LLDP, length 82 [|LLDP] 12:24:20.989412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf9 3efa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.989414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.989419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.989423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.989426 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.989431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.989442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.989445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.989447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.989458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.989464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.989468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.000379 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.000401 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.000422 LLDP, length 82 [|LLDP] 12:24:21.000423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c01 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.000425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.000431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.000435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.000438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.000450 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.000455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.000466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.000469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.000471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.000475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.000480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.011397 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.011424 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.011444 LLDP, length 82 [|LLDP] 12:24:21.011446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0a 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.011448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.011454 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.011459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.011470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.011473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.011475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.011479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.011482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.011494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.011499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.011504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.019649 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.019672 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.019693 LLDP, length 82 [|LLDP] 12:24:21.019695 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c10 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.019697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.019703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.019706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.019710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.019721 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.019727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.019737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.019740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.019743 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.019747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.019751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.030659 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.030683 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.030703 LLDP, length 82 [|LLDP] 12:24:21.030704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c18 bef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.030706 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.030712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.030716 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.030719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.030731 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.030737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.030747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.030750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.030752 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.030756 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.030761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.038917 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.038940 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.038959 LLDP, length 82 [|LLDP] 12:24:21.038961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1f 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.038963 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.038968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.038972 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.038977 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.038987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.038990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.038992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.038996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.039008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.039013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.039017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.049939 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.049956 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.049977 LLDP, length 82 [|LLDP] 12:24:21.049978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c27 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.049980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.049986 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.049990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.049993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.050004 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.050011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.050021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.050024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.050026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.050030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.050035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.060936 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.060959 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.060979 LLDP, length 82 [|LLDP] 12:24:21.060980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2f d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.060982 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.060987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.060997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.061001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.061003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.061008 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.061012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.061015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.061027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.061032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.061036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.069193 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.069217 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.069236 LLDP, length 82 [|LLDP] 12:24:21.069238 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c36 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.069240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.069245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.069249 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.069253 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.069258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.069268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.069271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.069273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.069285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.069290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.069294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.080201 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.080224 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.080243 LLDP, length 82 [|LLDP] 12:24:21.080245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3e 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.080247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.080253 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.080256 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.080260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.080271 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.080277 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.080287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.080290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.080292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.080296 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.080301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.091212 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.091234 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.091254 LLDP, length 82 [|LLDP] 12:24:21.091256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c46 f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.091258 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.091263 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.091269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.091279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.091282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.091284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.091288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.091291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.091303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.091308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.091312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.099471 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.099495 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.099514 LLDP, length 82 [|LLDP] 12:24:21.099516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4d 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.099518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.099524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.099528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.099531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.099542 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.099548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.099559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.099561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.099564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.099568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.099573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.110481 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.110505 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.110525 LLDP, length 82 [|LLDP] 12:24:21.110527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c55 a57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.110529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.110535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.110538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.110542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.110554 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.110559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.110569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.110572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.110575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.110579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.110584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.118740 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.118764 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.118783 LLDP, length 82 [|LLDP] 12:24:21.118785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5b f248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.118787 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.118792 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.118796 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.118802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.118813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.118815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.118817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.118821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.118833 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.118838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.118842 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.129753 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.129777 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.129797 LLDP, length 82 [|LLDP] 12:24:21.129799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c64 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.129801 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.129807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.129810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.129814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.129825 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.129831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.129841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.129844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.129846 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.129850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.129855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.140761 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.140784 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.140803 LLDP, length 82 [|LLDP] 12:24:21.140805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6c bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.140807 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.140812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.140822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.140825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.140828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.140832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.140836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.140840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.140851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.140856 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.140861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.149017 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.149039 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.149058 LLDP, length 82 [|LLDP] 12:24:21.149060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c73 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.149062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.149068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.149072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.149076 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.149081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.149091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.149094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.149096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.149108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.149113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.149118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.160036 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.160052 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.160073 LLDP, length 82 [|LLDP] 12:24:21.160074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7b 724f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.160076 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.160082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.160086 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.160089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.160100 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.160106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.160116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.160119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.160121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.160126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.160130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.171039 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.171062 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.171082 LLDP, length 82 [|LLDP] 12:24:21.171084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c83 d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.171085 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.171091 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.171097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.171107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.171110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.171112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.171116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.171120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.171131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.171136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.171141 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.179294 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.179317 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.179344 LLDP, length 82 [|LLDP] 12:24:21.179346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8a 257b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.179348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.179354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.179358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.179361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.179374 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.179380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.179404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.179407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.179410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.179414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.179419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.190307 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.190330 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.190350 LLDP, length 82 [|LLDP] 12:24:21.190351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c92 8be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.190353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.190359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.190363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.190366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.190378 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.190384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.190394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.190397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.190399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.190404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.190408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.201314 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.201338 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.201357 LLDP, length 82 [|LLDP] 12:24:21.201359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9a f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.201361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.201366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.201370 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.201376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.201386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.201389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.201391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.201395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.201407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.201412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.201417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.209573 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.209596 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.209617 LLDP, length 82 [|LLDP] 12:24:21.209619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca1 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.209620 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.209626 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.209629 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.209633 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.209645 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.209650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.209660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.209663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.209665 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.209670 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.209674 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.220585 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.220608 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.220628 LLDP, length 82 [|LLDP] 12:24:21.220630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca9 a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.220632 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.220637 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.220647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.220651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.220653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.220657 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.220661 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.220664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.220676 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.220681 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.220685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.228851 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.228869 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.228889 LLDP, length 82 [|LLDP] 12:24:21.228891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0caf f248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.228893 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.228899 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.228903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.228906 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.228912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.228923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.228926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.228928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.228940 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.228945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.228950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.239853 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.239876 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.239896 LLDP, length 82 [|LLDP] 12:24:21.239898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb8 58b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.239900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.239906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.239910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.239913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.239925 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.239930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.239941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.239943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.239946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.239950 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.239954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.250862 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.250885 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.250904 LLDP, length 82 [|LLDP] 12:24:21.250906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc0 bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.250908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.250913 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.250918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.250928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.250931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.250933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.250937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.250940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.250952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.250957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.250961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.259119 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.259142 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.259161 LLDP, length 82 [|LLDP] 12:24:21.259163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc7 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.259165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.259170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.259174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.259177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.259189 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.259194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.259204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.259207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.259209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.259213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.259218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.270130 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.270153 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.270173 LLDP, length 82 [|LLDP] 12:24:21.270174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccf 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.270176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.270183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.270186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.270190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.270202 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.270207 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.270217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.270220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.270222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.270227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.270231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.281140 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.281164 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.281183 LLDP, length 82 [|LLDP] 12:24:21.281185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd7 d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.281187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.281192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.281196 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.281201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.281211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.281214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.281216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.281219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.281231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.281236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.281241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.289399 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.289416 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.289435 LLDP, length 82 [|LLDP] 12:24:21.289436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cde 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.289438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.289444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.289447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.289451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.289463 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.289468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.289478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.289481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.289483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.289487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.289492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.300412 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.300429 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.300449 LLDP, length 82 [|LLDP] 12:24:21.300451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce6 8be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.300453 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.300458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.300468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.300471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.300473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.300478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.300482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.300485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.300497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.300502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.300507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.308665 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.308688 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.308708 LLDP, length 82 [|LLDP] 12:24:21.308709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cec d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.308711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.308717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.308721 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.308724 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.308730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.308740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.308743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.308745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.308757 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.308762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.308766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.319676 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.319700 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.319720 LLDP, length 82 [|LLDP] 12:24:21.319721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf5 3f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.319723 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.319729 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.319733 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.319736 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.319748 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.319754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.319764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.319767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.319769 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.319774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.319779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.330686 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.330709 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.330729 LLDP, length 82 [|LLDP] 12:24:21.330730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfd a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.330732 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.330738 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.330743 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.330754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.330757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.330759 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.330763 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.330766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.330780 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.330785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.330789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.338953 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.338969 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.338989 LLDP, length 82 [|LLDP] 12:24:21.338990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d03 f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.338992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.338998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.339002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.339005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.339017 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.339022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.339032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.339035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.339037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.339041 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.339045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.349966 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.349988 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.350012 LLDP, length 82 [|LLDP] 12:24:21.350014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0c 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.350016 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.350023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.350027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.350030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.350042 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.350048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.350059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.350062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.350065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.350069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.350074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.360965 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.360990 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.361010 LLDP, length 82 [|LLDP] 12:24:21.361012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d14 bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.361014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.361019 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.361023 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.361028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.361039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.361042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.361045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.361048 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.361060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.361065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.361070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.369223 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.369247 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.369267 LLDP, length 82 [|LLDP] 12:24:21.369268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1b 0be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.369270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.369276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.369280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.369283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.369295 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.369301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.369311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.369314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.369316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.369320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.369325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.380232 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.380256 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.380276 LLDP, length 82 [|LLDP] 12:24:21.380277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d23 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.380279 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.380284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.380294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.380298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.380300 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.380305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.380308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.380312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.380324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.380329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.380334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.391243 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.391266 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.391286 LLDP, length 82 [|LLDP] 12:24:21.391288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2b d8b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.391290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.391296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.391299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.391303 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.391308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.391318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.391321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.391323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.391345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.391351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.391356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.399501 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.399518 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.399538 LLDP, length 82 [|LLDP] 12:24:21.399540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d32 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.399542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.399548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.399552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.399555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.399567 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.399572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.399582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.399585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.399588 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.399592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.399596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.410517 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.410534 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.410554 LLDP, length 82 [|LLDP] 12:24:21.410555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3a 8bea 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.410557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.410563 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.410568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.410578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.410581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.410583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.410587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.410591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.410603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.410608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.410613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.418768 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.418791 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.418810 LLDP, length 82 [|LLDP] 12:24:21.418811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d40 d8b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.418813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.418819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.418822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.418826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.418838 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.418844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.418854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.418857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.418859 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.418863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.418868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.429779 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.429803 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.429823 LLDP, length 82 [|LLDP] 12:24:21.429825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d49 3f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.429827 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.429833 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.429837 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.429840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.429852 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.429857 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.429867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.429870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.429873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.429877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.429881 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.440790 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.440813 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.440833 LLDP, length 82 [|LLDP] 12:24:21.440835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d51 a57d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.440837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.440842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.440846 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.440851 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.440861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.440864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.440866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.440870 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.440882 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.440886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.440891 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.449046 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.449069 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.449088 LLDP, length 82 [|LLDP] 12:24:21.449090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d57 f24b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.449092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.449097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.449101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.449105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.449116 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.449122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.449132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.449135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.449137 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.449141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.449146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.460056 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.460080 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.460098 LLDP, length 82 [|LLDP] 12:24:21.460100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d60 58b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.460102 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.460107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.460118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.460122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.460124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.460129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.460132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.460136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.460148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.460153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.460157 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.471067 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.471093 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.471112 LLDP, length 82 [|LLDP] 12:24:21.471114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d68 bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.471115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.471121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.471125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.471129 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.471134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.471144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.471147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.471149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.471161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.471166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.471171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.479324 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.479354 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.479375 LLDP, length 82 [|LLDP] 12:24:21.479377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6f 0be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.479378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.479384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.479388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.479391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.479403 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.479409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.479419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.479434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.479437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.479442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.479448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.490368 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.490394 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.490419 LLDP, length 82 [|LLDP] 12:24:21.490421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d77 724a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.490423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.490432 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.490439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.490453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.490457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.490459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.490463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.490466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.490480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.490486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.490491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.501356 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.501378 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.501403 LLDP, length 82 [|LLDP] 12:24:21.501404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7f d8b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.501406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.501413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.501416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.501420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.501432 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.501438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.501449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.501452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.501455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.501460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.501465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.509607 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.509632 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.509654 LLDP, length 82 [|LLDP] 12:24:21.509655 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d86 257d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.509657 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.509663 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.509667 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.509671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.509682 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.509688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.509698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.509701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.509704 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.509708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.509713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.520614 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.520637 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.520657 LLDP, length 82 [|LLDP] 12:24:21.520659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8e 8be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.520661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.520666 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.520670 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.520675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.520685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.520688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.520691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.520695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.520707 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.520712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.520717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.528873 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.528898 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.528918 LLDP, length 82 [|LLDP] 12:24:21.528920 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d94 d8b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.528921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.528927 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.528931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.528935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.528947 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.528953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.528963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.528967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.528969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.528973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.528978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.539882 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.539909 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.539930 LLDP, length 82 [|LLDP] 12:24:21.539931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9d 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.539934 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.539939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.539949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.539953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.539955 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.539961 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.539965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.539968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.539980 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.539985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.539990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.550892 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.550916 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.550935 LLDP, length 82 [|LLDP] 12:24:21.550937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da5 a57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.550939 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.550944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.550948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.550952 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.550957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.550968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.550971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.550973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.550985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.550990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.550994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.559152 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.559175 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.559196 LLDP, length 82 [|LLDP] 12:24:21.559197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dab f248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.559199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.559204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.559208 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.559211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.559223 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.559229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.559239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.559242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.559244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.559249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.559254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.570159 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.570183 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.570202 LLDP, length 82 [|LLDP] 12:24:21.570204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db4 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.570206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.570212 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.570218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.570228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.570231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.570233 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.570237 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.570241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.570253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.570257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.570262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.581168 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.581190 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.581211 LLDP, length 82 [|LLDP] 12:24:21.581212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dbc bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.581214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.581220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.581224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.581227 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.581239 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.581244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.581254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.581257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.581259 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.581264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.581268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.589429 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.589452 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.589471 LLDP, length 82 [|LLDP] 12:24:21.589473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc3 0be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.589475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.589480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.589484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.589487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.589499 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.589504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.589514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.589517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.589519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.589523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.589528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.600434 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.600457 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.600477 LLDP, length 82 [|LLDP] 12:24:21.600478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dcb 7248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.600480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.600486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.600489 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.600494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.600504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.600507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.600509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.600513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.600525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.600530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.600534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.608693 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.608715 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.608735 LLDP, length 82 [|LLDP] 12:24:21.608737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd1 bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.608739 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.608745 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.608748 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.608752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.608764 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.608769 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.608779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.608782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.608784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.608788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.608793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.619707 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.619731 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.619750 LLDP, length 82 [|LLDP] 12:24:21.619752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dda 257b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.619754 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.619760 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.619770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.619773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.619775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.619781 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.619784 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.619788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.619800 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.619805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.619810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.630727 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.630746 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.630766 LLDP, length 82 [|LLDP] 12:24:21.630767 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de2 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.630769 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.630775 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.630779 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.630783 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.630788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.630798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.630801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.630803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.630816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.630821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.630825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.638973 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.638997 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.639017 LLDP, length 82 [|LLDP] 12:24:21.639019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de8 d8ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.639020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.639027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.639031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.639034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.639046 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.639052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.639063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.639066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.639068 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.639072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.639077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.649983 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.650010 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.650029 LLDP, length 82 [|LLDP] 12:24:21.650031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df1 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.650032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.650038 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.650044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.650054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.650057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.650060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.650063 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.650067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.650079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.650084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.650089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.660991 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.661015 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.661034 LLDP, length 82 [|LLDP] 12:24:21.661036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df9 a581 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.661038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.661044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.661047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.661051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.661062 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.661068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.661078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.661081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.661083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.661087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.661092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.669251 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.669274 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.669294 LLDP, length 82 [|LLDP] 12:24:21.669295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dff f248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.669297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.669303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.669307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.669310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.669322 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.669328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.669338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.669341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.669343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.669347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.669352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.680262 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.680287 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.680307 LLDP, length 82 [|LLDP] 12:24:21.680309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e08 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.680311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.680317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.680320 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.680325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.680336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.680339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.680341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.680345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.680357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.680362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.680366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.691274 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.691298 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.691318 LLDP, length 82 [|LLDP] 12:24:21.691319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e10 bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.691321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.691327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.691332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.691346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.691360 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.691366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.691376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.691379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.691381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.691386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.691390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.699542 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.699575 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.699602 LLDP, length 82 [|LLDP] 12:24:21.699604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e17 0be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.699607 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.699613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.699625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.699629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.699631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.699638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.699642 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.699645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.699658 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.699663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.699668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.710553 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.710577 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.710600 LLDP, length 82 [|LLDP] 12:24:21.710602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1f 7248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.710605 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.710611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.710615 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.710619 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.710624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.710635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.710638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.710640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.710653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.710658 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.710662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.718798 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.718823 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.718843 LLDP, length 82 [|LLDP] 12:24:21.718845 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e25 bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.718847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.718853 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.718857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.718860 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.718872 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.718877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.718888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.718891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.718893 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.718897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.718902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.729812 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.729837 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.729858 LLDP, length 82 [|LLDP] 12:24:21.729860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2e 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.729862 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.729868 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.729873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.729883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.729886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.729889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.729892 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.729896 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.729908 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.729913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.729917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.740818 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.740844 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.740865 LLDP, length 82 [|LLDP] 12:24:21.740866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e36 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.740869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.740875 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.740879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.740882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.740896 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.740902 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.740913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.740916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.740919 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.740923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.740928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.749079 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.749102 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.749122 LLDP, length 82 [|LLDP] 12:24:21.749124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3c d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.749126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.749131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.749135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.749139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.749150 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.749156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.749165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.749168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.749170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.749175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.749180 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.760084 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.760107 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.760127 LLDP, length 82 [|LLDP] 12:24:21.760129 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e45 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.760131 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.760136 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.760140 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.760145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.760155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.760159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.760161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.760165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.760177 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.760182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.760186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.771096 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.771120 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.771139 LLDP, length 82 [|LLDP] 12:24:21.771141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4d a57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.771143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.771149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.771153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.771156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.771168 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.771174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.771184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.771187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.771190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.771194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.771199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.779359 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.779382 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.779401 LLDP, length 82 [|LLDP] 12:24:21.779403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e53 f250 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.779405 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.779411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.779421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.779425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.779427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.779432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.779436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.779439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.779451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.779456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.779461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.790362 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.790384 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.790404 LLDP, length 82 [|LLDP] 12:24:21.790406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5c 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.790408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.790414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.790417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.790421 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.790426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.790436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.790439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.790441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.790453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.790458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.790463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.798634 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.798663 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.798686 LLDP, length 82 [|LLDP] 12:24:21.798688 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e62 a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.798690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.798696 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.798700 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.798704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.798716 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.798722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.798741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.798745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.798747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.798753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.798758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.809635 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.809660 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.809682 LLDP, length 82 [|LLDP] 12:24:21.809684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6b 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.809686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.809692 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.809697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.809707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.809710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.809712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.809716 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.809720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.809732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.809737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.809742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.820640 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.820662 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.820681 LLDP, length 82 [|LLDP] 12:24:21.820683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e73 7248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.820685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.820691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.820694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.820698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.820710 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.820715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.820726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.820729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.820731 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.820735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.820739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.828898 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.828920 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.828940 LLDP, length 82 [|LLDP] 12:24:21.828941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e79 bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.828943 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.828949 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.828953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.828956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.828968 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.828974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.828984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.828987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.828989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.828993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.828998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.839911 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.839934 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.839954 LLDP, length 82 [|LLDP] 12:24:21.839955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e82 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.839957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.839963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.839967 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.839972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.839983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.839986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.839988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.839992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.840004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.840009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.840013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.850919 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.850944 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.850963 LLDP, length 82 [|LLDP] 12:24:21.850965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8a 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.850967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.850972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.850976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.850980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.850991 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.850998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.851007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.851010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.851013 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.851017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.851021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.859178 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.859200 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.859219 LLDP, length 82 [|LLDP] 12:24:21.859221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e90 d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.859223 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.859228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.859238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.859242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.859244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.859249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.859252 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.859256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.859268 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.859273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.859277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.870187 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.870210 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.870229 LLDP, length 82 [|LLDP] 12:24:21.870231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e99 3f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.870233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.870238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.870242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.870245 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.870251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.870261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.870264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.870266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.870277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.870283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.870287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.881197 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.881219 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.881237 LLDP, length 82 [|LLDP] 12:24:21.881239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea1 a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.881241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.881246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.881250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.881254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.881265 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.881271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.881281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.881284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.881286 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.881290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.881295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.889456 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.889479 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.889497 LLDP, length 82 [|LLDP] 12:24:21.889499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea7 f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.889501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.889507 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.889512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.889521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.889524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.889527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.889530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.889534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.889546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.889550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.889555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.900465 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.900488 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.900507 LLDP, length 82 [|LLDP] 12:24:21.900509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb0 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.900511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.900517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.900520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.900524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.900535 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.900541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.900551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.900554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.900556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.900560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.900566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.908721 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.908743 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.908763 LLDP, length 82 [|LLDP] 12:24:21.908765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb6 a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.908767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.908772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.908776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.908780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.908792 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.908797 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.908807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.908810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.908812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.908816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.908821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.919732 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.919754 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.919773 LLDP, length 82 [|LLDP] 12:24:21.919775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebf 0be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.919777 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.919782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.919786 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.919791 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.919801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.919804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.919806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.919810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.919821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.919826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.919830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.930742 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.930767 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.930789 LLDP, length 82 [|LLDP] 12:24:21.930791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec7 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.930793 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.930799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.930802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.930806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.930818 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.930824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.930835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.930838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.930840 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.930844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.930849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.939003 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.939026 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.939046 LLDP, length 82 [|LLDP] 12:24:21.939047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecd bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.939049 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.939055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.939065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.939068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.939070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.939075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.939078 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.939082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.939094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.939099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.939103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.950011 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.950034 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.950053 LLDP, length 82 [|LLDP] 12:24:21.950055 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed6 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.950057 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.950062 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.950066 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.950070 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.950075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.950085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.950088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.950090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.950102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.950107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.950111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.961022 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.961045 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.961063 LLDP, length 82 [|LLDP] 12:24:21.961065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ede 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.961067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.961073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.961076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.961080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.961091 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.961097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.961107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.961110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.961112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.961116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.961120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.969278 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.969299 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.969318 LLDP, length 82 [|LLDP] 12:24:21.969320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee4 d8b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.969322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.969327 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.969332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.969342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.969345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.969347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.969351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.969354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.969366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.969371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.969376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.980288 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.980311 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.980330 LLDP, length 82 [|LLDP] 12:24:21.980332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eed 3f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.980334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.980340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.980343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.980347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.980359 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.980364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.980374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.980377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.980379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.980384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.980388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.991298 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.991322 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.991351 LLDP, length 82 [|LLDP] 12:24:21.991352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef5 a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.991354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.991361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.991365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.991369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.991382 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.991387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.991397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.991400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.991402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.991406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.991411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.999557 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.999579 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.999599 LLDP, length 82 [|LLDP] 12:24:21.999601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efb f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.999603 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.999608 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.999612 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.999617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.999628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.999631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.999633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.999637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.999649 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.999654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.999658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.010571 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.010587 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.010606 LLDP, length 82 [|LLDP] 12:24:22.010608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f04 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.010610 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.010615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.010619 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.010623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.010635 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.010641 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.010651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.010654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.010656 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.010660 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.010665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.018830 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.018846 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.018864 LLDP, length 82 [|LLDP] 12:24:22.018866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0a a57d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.018867 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.018873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.018883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.018886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.018888 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.018893 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.018897 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.018900 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.018912 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.018917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.018921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.029836 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.029859 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.029878 LLDP, length 82 [|LLDP] 12:24:22.029879 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f13 0beb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.029881 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.029886 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.029890 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.029894 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.029899 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.029909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.029912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.029914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.029925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.029930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.029935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.040845 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.040867 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.040885 LLDP, length 82 [|LLDP] 12:24:22.040887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1b 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.040889 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.040895 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.040899 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.040902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.040914 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.040919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.040929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.040932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.040934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.040939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.040943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.049102 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.049126 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.049145 LLDP, length 82 [|LLDP] 12:24:22.049147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f21 bf17 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.049149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.049155 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.049160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.049170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.049172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.049174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.049178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.049181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.049193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.049198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.049203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.060110 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.060134 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.060153 LLDP, length 82 [|LLDP] 12:24:22.060155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2a 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.060157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.060163 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.060166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.060170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.060183 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.060189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.060199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.060202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.060204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.060209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.060213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.071126 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.071149 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.071167 LLDP, length 82 [|LLDP] 12:24:22.071169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f32 8be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.071171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.071176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.071180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.071184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.071195 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.071201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.071210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.071213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.071215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.071219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.071224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.079386 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.079409 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.079428 LLDP, length 82 [|LLDP] 12:24:22.079430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f38 d8b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.079432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.079438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.079441 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.079446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.079456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.079459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.079461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.079465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.079477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.079482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.079486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.090392 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.090414 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.090432 LLDP, length 82 [|LLDP] 12:24:22.090434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f41 3f17 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.090436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.090441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.090445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.090448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.090460 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.090466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.090475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.090478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.090480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.090485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.090489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.098647 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.098672 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.098691 LLDP, length 82 [|LLDP] 12:24:22.098692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f47 8be4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.098694 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.098699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.098709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.098712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.098714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.098720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.098723 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.098727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.098738 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.098743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.098748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.109676 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.109706 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.109731 LLDP, length 82 [|LLDP] 12:24:22.109733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4f f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.109735 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.109742 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.109746 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.109750 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.109755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.109766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.109769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.109771 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.109784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.109790 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.109794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.120670 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.120694 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.120714 LLDP, length 82 [|LLDP] 12:24:22.120716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f58 58b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.120718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.120724 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.120728 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.120732 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.120743 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.120749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.120759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.120762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.120764 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.120769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.120773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.128930 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.128951 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.128970 LLDP, length 82 [|LLDP] 12:24:22.128972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5e a57d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.128974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.128979 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.128985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.128995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.128998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.129000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.129004 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.129007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.129020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.129025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.129029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.139941 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.139963 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.139982 LLDP, length 82 [|LLDP] 12:24:22.139984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f67 0be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.139986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.139991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.139995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.139998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.140010 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.140016 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.140026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.140029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.140031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.140035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.140040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.150946 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.150970 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.150990 LLDP, length 82 [|LLDP] 12:24:22.150991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6f 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.150993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.150999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.151003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.151006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.151018 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.151024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.151034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.151036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.151038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.151043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.151047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.159204 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.159227 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.159247 LLDP, length 82 [|LLDP] 12:24:22.159249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f75 bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.159251 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.159257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.159261 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.159266 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.159276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.159279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.159281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.159285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.159297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.159302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.159306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.170217 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.170241 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.170260 LLDP, length 82 [|LLDP] 12:24:22.170262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7e 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.170264 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.170269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.170273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.170276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.170288 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.170293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.170303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.170306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.170308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.170312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.170317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.181227 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.181251 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.181271 LLDP, length 82 [|LLDP] 12:24:22.181272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f86 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.181274 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.181280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.181302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.181306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.181308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.181313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.181316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.181320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.181332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.181337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.181342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.189486 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.189509 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.189528 LLDP, length 82 [|LLDP] 12:24:22.189529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8c d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.189531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.189537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.189540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.189544 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.189549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.189559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.189562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.189564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.189576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.189581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.189585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.200494 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.200517 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.200536 LLDP, length 82 [|LLDP] 12:24:22.200538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f95 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.200540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.200545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.200549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.200552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.200564 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.200570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.200579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.200582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.200585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.200589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.200594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.208749 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.208771 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.208791 LLDP, length 82 [|LLDP] 12:24:22.208793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9b 8be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.208794 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.208800 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.208805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.208816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.208818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.208820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.208824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.208828 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.208839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.208844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.208849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.219761 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.219783 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.219801 LLDP, length 82 [|LLDP] 12:24:22.219803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa3 f248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.219805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.219811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.219814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.219818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.219829 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.219835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.219845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.219848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.219850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.219854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.219859 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.230773 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.230795 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.230814 LLDP, length 82 [|LLDP] 12:24:22.230815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fac 58ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.230817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.230823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.230826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.230830 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.230842 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.230847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.230857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.230860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.230862 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.230866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.230871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.239033 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.239056 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.239076 LLDP, length 82 [|LLDP] 12:24:22.239078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb2 a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.239080 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.239085 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.239089 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.239094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.239104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.239107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.239109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.239113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.239125 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.239130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.239134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.250040 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.250062 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.250081 LLDP, length 82 [|LLDP] 12:24:22.250082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbb 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.250084 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.250090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.250093 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.250097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.250108 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.250114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.250124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.250127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.250129 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.250134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.250138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.261050 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.261074 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.261093 LLDP, length 82 [|LLDP] 12:24:22.261095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc3 7248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.261097 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.261102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.261112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.261116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.261118 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.261123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.261127 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.261130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.261142 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.261147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.261152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.269309 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.269332 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.269350 LLDP, length 82 [|LLDP] 12:24:22.269351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc9 bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.269353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.269358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.269362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.269366 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.269371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.269381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.269384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.269386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.269398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.269403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.269408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.280317 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.280340 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.280359 LLDP, length 82 [|LLDP] 12:24:22.280361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd2 2583 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.280363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.280369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.280372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.280376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.280387 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.280393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.280403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.280406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.280408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.280412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.280417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.291330 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.291359 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.291378 LLDP, length 82 [|LLDP] 12:24:22.291379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fda 8be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.291381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.291386 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.291391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.291401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.291404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.291406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.291410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.291414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.291426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.291431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.291436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.299585 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.299607 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.299627 LLDP, length 82 [|LLDP] 12:24:22.299628 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe0 d8ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.299630 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.299636 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.299640 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.299644 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.299655 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.299661 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.299671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.299674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.299676 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.299680 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.299685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.310599 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.310622 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.310641 LLDP, length 82 [|LLDP] 12:24:22.310643 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe9 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.310644 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.310650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.310654 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.310658 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.310670 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.310676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.310685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.310688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.310691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.310695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.310700 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.318857 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.318879 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.318898 LLDP, length 82 [|LLDP] 12:24:22.318900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fef 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.318902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.318908 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.318911 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.318916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.318926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.318929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.318931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.318935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.318947 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.318952 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.318957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.329865 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.329887 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.329907 LLDP, length 82 [|LLDP] 12:24:22.329909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff7 f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.329910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.329916 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.329920 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.329924 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.329935 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.329941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.329951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.329954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.329956 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.329961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.329965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.340873 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.340895 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.340914 LLDP, length 82 [|LLDP] 12:24:22.340915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1000 58ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.340917 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.340923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.340932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.340935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.340938 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.340943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.340946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.340950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.340961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.340966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.340984 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.349161 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.349194 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.349219 LLDP, length 82 [|LLDP] 12:24:22.349221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1006 a57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.349223 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.349231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.349235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.349239 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.349245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.349258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.349262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.349265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.349277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.349283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.349289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.360166 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.360188 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.360212 LLDP, length 82 [|LLDP] 12:24:22.360214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100f 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.360216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.360223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.360227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.360231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.360243 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.360249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.360260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.360264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.360266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.360271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.360275 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.371158 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.371184 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.371204 LLDP, length 82 [|LLDP] 12:24:22.371206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1017 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.371208 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.371214 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.371219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.371229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.371232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.371235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.371238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.371242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.371254 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.371259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.371264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.379415 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.379439 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.379459 LLDP, length 82 [|LLDP] 12:24:22.379460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101d bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.379462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.379468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.379472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.379475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.379487 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.379493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.379503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.379506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.379509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.379514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.379518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.390424 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.390448 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.390467 LLDP, length 82 [|LLDP] 12:24:22.390468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1026 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.390470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.390476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.390480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.390484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.390496 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.390501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.390511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.390514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.390516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.390521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.390526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.398679 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.398702 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.398722 LLDP, length 82 [|LLDP] 12:24:22.398724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102c 724f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.398725 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.398731 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.398735 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.398740 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.398749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.398752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.398755 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.398758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.398771 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.398776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.398781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.409691 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.409714 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.409733 LLDP, length 82 [|LLDP] 12:24:22.409735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1034 d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.409737 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.409743 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.409746 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.409750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.409761 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.409767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.409777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.409780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.409783 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.409787 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.409791 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.420709 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.420726 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.420746 LLDP, length 82 [|LLDP] 12:24:22.420748 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103d 3f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.420750 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.420755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.420765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.420768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.420771 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.420776 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.420780 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.420783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.420795 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.420800 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.420805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.428957 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.428980 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.428999 LLDP, length 82 [|LLDP] 12:24:22.429001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1043 8be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.429003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.429008 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.429012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.429015 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.429021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.429031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.429034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.429036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.429048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.429053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.429058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.439968 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.439991 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.440010 LLDP, length 82 [|LLDP] 12:24:22.440012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104b f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.440014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.440020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.440023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.440027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.440038 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.440044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.440053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.440056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.440058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.440062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.440067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.450978 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.451002 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.451023 LLDP, length 82 [|LLDP] 12:24:22.451024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1054 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.451026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.451032 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.451037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.451047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.451049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.451052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.451055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.451059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.451071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.451076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.451081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.459234 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.459257 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.459278 LLDP, length 82 [|LLDP] 12:24:22.459280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105a a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.459282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.459288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.459292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.459295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.459307 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.459313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.459323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.459326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.459328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.459333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.459346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.470245 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.470270 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.470290 LLDP, length 82 [|LLDP] 12:24:22.470292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1063 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.470294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.470299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.470303 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.470307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.470318 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.470324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.470335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.470338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.470340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.470344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.470349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.481254 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.481277 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.481297 LLDP, length 82 [|LLDP] 12:24:22.481298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106b 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.481300 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.481306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.481310 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.481315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.481325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.481328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.481330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.481334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.481346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.481351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.481356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.489514 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.489538 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.489559 LLDP, length 82 [|LLDP] 12:24:22.489560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1071 bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.489562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.489568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.489572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.489575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.489587 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.489593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.489603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.489606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.489608 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.489612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.489616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.500527 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.500551 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.500571 LLDP, length 82 [|LLDP] 12:24:22.500573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107a 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.500574 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.500580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.500590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.500593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.500595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.500600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.500604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.500608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.500620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.500625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.500629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.508780 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.508802 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.508823 LLDP, length 82 [|LLDP] 12:24:22.508825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1080 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.508827 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.508832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.508836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.508839 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.508844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.508854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.508857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.508859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.508871 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.508877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.508881 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.519790 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.519813 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.519832 LLDP, length 82 [|LLDP] 12:24:22.519834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1088 d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.519836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.519842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.519845 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.519849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.519860 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.519866 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.519876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.519879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.519881 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.519885 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.519890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.530812 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.530829 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.530848 LLDP, length 82 [|LLDP] 12:24:22.530850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1091 3f1d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.530851 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.530857 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.530862 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.530872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.530876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.530878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.530882 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.530885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.530897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.530902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.530907 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.539061 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.539083 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.539103 LLDP, length 82 [|LLDP] 12:24:22.539105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1097 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.539107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.539113 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.539117 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.539120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.539132 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.539138 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.539147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.539150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.539153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.539157 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.539162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.550070 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.550093 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.550114 LLDP, length 82 [|LLDP] 12:24:22.550115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109f f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.550117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.550123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.550127 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.550130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.550142 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.550147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.550158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.550161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.550163 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.550167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.550172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.561083 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.561107 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.561126 LLDP, length 82 [|LLDP] 12:24:22.561127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a8 58b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.561129 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.561136 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.561140 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.561145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.561155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.561158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.561160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.561164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.561176 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.561181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.561185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.569337 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.569362 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.569382 LLDP, length 82 [|LLDP] 12:24:22.569384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ae a581 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.569386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.569391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.569395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.569399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.569410 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.569416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.569426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.569429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.569432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.569436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.569441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.580348 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.580371 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.580392 LLDP, length 82 [|LLDP] 12:24:22.580393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b7 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.580395 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.580401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.580411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.580414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.580417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.580421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.580425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.580429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.580441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.580446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.580451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.588605 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.588629 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.588649 LLDP, length 82 [|LLDP] 12:24:22.588651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bd 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.588653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.588659 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.588662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.588666 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.588671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.588682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.588685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.588687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.588699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.588704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.588708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.599615 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.599638 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.599657 LLDP, length 82 [|LLDP] 12:24:22.599658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c5 bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.599660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.599666 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.599670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.599674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.599685 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.599691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.599700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.599703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.599706 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.599710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.599715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.610628 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.610651 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.610670 LLDP, length 82 [|LLDP] 12:24:22.610672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ce 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.610674 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.610679 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.610684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.610694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.610697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.610699 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.610703 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.610707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.610718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.610723 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.610728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.618901 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.618926 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.618953 LLDP, length 82 [|LLDP] 12:24:22.618955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d4 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.618957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.618964 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.618968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.618972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.618984 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.618990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.619001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.619005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.619007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.619012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.619017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.629902 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.629930 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.629952 LLDP, length 82 [|LLDP] 12:24:22.629954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10dc d8b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.629956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.629962 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.629966 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.629969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.629981 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.629987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.629998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.630001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.630003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.630008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.630013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.640906 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.640930 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.640951 LLDP, length 82 [|LLDP] 12:24:22.640952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e5 3f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.640954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.640961 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.640965 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.640970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.640980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.640984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.640986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.640990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.641001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.641006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.641011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.649161 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.649184 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.649203 LLDP, length 82 [|LLDP] 12:24:22.649205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10eb 8bea 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.649207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.649212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.649216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.649219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.649231 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.649237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.649247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.649250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.649252 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.649256 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.649261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.660172 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.660196 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.660216 LLDP, length 82 [|LLDP] 12:24:22.660217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f3 f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.660219 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.660225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.660234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.660238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.660240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.660245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.660248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.660252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.660264 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.660269 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.660273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.671183 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.671207 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.671227 LLDP, length 82 [|LLDP] 12:24:22.671229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fc 58b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.671231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.671237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.671241 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.671244 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.671250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.671260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.671263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.671265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.671277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.671283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.671288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.679443 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.679468 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.679489 LLDP, length 82 [|LLDP] 12:24:22.679490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1102 a57d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.679492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.679498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.679502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.679505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.679517 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.679523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.679533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.679536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.679538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.679543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.679547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.690451 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.690475 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.690495 LLDP, length 82 [|LLDP] 12:24:22.690497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110b 0be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.690498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.690504 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.690510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.690520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.690523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.690525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.690528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.690532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.690544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.690549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.690554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.698707 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.698732 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.698751 LLDP, length 82 [|LLDP] 12:24:22.698752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1111 58b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.698754 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.698760 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.698764 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.698767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.698779 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.698785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.698795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.698798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.698800 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.698805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.698810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.709717 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.709742 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.709761 LLDP, length 82 [|LLDP] 12:24:22.709763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1119 bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.709765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.709770 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.709774 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.709778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.709789 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.709795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.709805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.709808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.709810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.709815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.709820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.720728 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.720752 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.720772 LLDP, length 82 [|LLDP] 12:24:22.720774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1122 257d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.720776 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.720781 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.720785 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.720790 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.720800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.720803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.720806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.720809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.720821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.720826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.720831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.728986 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.729009 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.729030 LLDP, length 82 [|LLDP] 12:24:22.729032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1128 724a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.729034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.729039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.729043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.729047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.729058 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.729064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.729074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.729077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.729079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.729084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.729088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.740008 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.740026 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.740046 LLDP, length 82 [|LLDP] 12:24:22.740047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1130 d8b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.740049 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.740055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.740065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.740068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.740070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.740075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.740079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.740082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.740094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.740099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.740104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.751007 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.751031 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.751051 LLDP, length 82 [|LLDP] 12:24:22.751052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1139 3f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.751055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.751060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.751064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.751067 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.751072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.751083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.751086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.751088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.751100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.751105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.751110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.759266 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.759292 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.759313 LLDP, length 82 [|LLDP] 12:24:22.759315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113f 8be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.759318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.759323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.759327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.759331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.759354 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.759361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.759373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.759376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.759378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.759383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.759387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.770294 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.770337 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.770367 LLDP, length 82 [|LLDP] 12:24:22.770369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1147 f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.770371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.770380 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.770386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.770399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.770402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.770405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.770409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.770413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.770425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.770432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.770436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.781295 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.781326 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.781353 LLDP, length 82 [|LLDP] 12:24:22.781355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1150 58b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.781357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.781364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.781369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.781372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.781385 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.781391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.781403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.781406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.781409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.781413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.781418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.789551 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.789576 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.789599 LLDP, length 82 [|LLDP] 12:24:22.789601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1156 a57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.789603 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.789609 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.789613 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.789617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.789628 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.789634 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.789645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.789648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.789651 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.789655 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.789660 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.800565 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.800581 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.800601 LLDP, length 82 [|LLDP] 12:24:22.800602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115f 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.800604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.800610 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.800614 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.800619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.800629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.800632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.800634 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.800639 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.800650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.800656 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.800661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.808811 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.808834 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.808853 LLDP, length 82 [|LLDP] 12:24:22.808855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1165 58ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.808857 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.808862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.808866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.808869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.808880 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.808886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.808896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.808899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.808902 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.808906 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.808911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.819818 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.819840 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.819859 LLDP, length 82 [|LLDP] 12:24:22.819860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116d bf18 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.819862 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.819867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.819877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.819880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.819883 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.819888 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.819891 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.819895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.819907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.819912 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.819916 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.830828 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.830850 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.830869 LLDP, length 82 [|LLDP] 12:24:22.830870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1176 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.830873 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.830878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.830882 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.830885 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.830890 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.830900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.830903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.830906 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.830917 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.830922 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.830927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.839093 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.839119 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.839141 LLDP, length 82 [|LLDP] 12:24:22.839142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117c 7248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.839144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.839150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.839154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.839158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.839170 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.839176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.839187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.839190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.839192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.839196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.839201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.850102 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.850128 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.850149 LLDP, length 82 [|LLDP] 12:24:22.850150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1184 d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.850152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.850158 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.850164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.850174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.850178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.850180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.850184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.850188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.850200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.850205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.850210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.861110 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.861133 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.861152 LLDP, length 82 [|LLDP] 12:24:22.861154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118d 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.861156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.861162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.861166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.861169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.861180 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.861186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.861196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.861199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.861201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.861206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.861211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.869365 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.869387 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.869408 LLDP, length 82 [|LLDP] 12:24:22.869410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1193 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.869412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.869417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.869421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.869425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.869437 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.869443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.869452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.869455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.869457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.869461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.869466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.880373 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.880396 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.880415 LLDP, length 82 [|LLDP] 12:24:22.880416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119b f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.880418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.880424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.880427 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.880433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.880442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.880445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.880447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.880451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.880463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.880468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.880472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.888632 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.888654 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.888673 LLDP, length 82 [|LLDP] 12:24:22.888675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a2 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.888677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.888682 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.888686 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.888690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.888701 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.888707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.888716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.888720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.888722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.888726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.888730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.899649 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.899675 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.899697 LLDP, length 82 [|LLDP] 12:24:22.899699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11aa a582 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.899701 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.899707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.899717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.899721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.899723 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.899728 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.899732 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.899735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.899747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.899753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.899758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.910656 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.910681 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.910701 LLDP, length 82 [|LLDP] 12:24:22.910703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b3 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.910705 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.910711 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.910715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.910718 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.910723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.910734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.910737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.910739 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.910751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.910757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.910762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.918912 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.918927 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.918946 LLDP, length 82 [|LLDP] 12:24:22.918948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b9 58ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.918949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.918955 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.918959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.918962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.918974 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.918979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.918989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.918992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.918994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.918998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.919003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.929922 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.929946 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.929965 LLDP, length 82 [|LLDP] 12:24:22.929967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c1 bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.929969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.929974 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.929980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.929990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.929993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.929995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.929999 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.930003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.930014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.930020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.930024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.940931 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.940954 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.940973 LLDP, length 82 [|LLDP] 12:24:22.940975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ca 257b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.940977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.940982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.940986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.940989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.941001 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.941007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.941017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.941020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.941022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.941026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.941031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.949188 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.949210 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.949230 LLDP, length 82 [|LLDP] 12:24:22.949232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d0 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.949233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.949239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.949243 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.949246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.949258 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.949264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.949273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.949277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.949279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.949283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.949288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.960206 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.960231 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.960253 LLDP, length 82 [|LLDP] 12:24:22.960255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d8 d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.960257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.960263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.960267 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.960272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.960282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.960285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.960288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.960291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.960304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.960309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.960314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.971211 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.971236 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.971257 LLDP, length 82 [|LLDP] 12:24:22.971258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e1 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.971260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.971266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.971269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.971273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.971285 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.971290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.971301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.971304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.971306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.971311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.971315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.979470 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.979492 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.979512 LLDP, length 82 [|LLDP] 12:24:22.979513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e7 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.979515 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.979521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.979532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.979535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.979537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.979543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.979546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.979550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.979561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.979567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.979571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.990478 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.990500 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.990520 LLDP, length 82 [|LLDP] 12:24:22.990522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ef f248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.990524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.990529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.990533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.990536 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.990541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.990551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.990554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.990556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.990569 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.990574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.990579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.998756 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.998783 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.998813 LLDP, length 82 [|LLDP] 12:24:22.998815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f6 3f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.998817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.998825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.998829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.998832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.998845 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.998851 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.998863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.998866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.998868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.998873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.998878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.009753 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.009772 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.009793 LLDP, length 82 [|LLDP] 12:24:23.009795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fe a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.009797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.009803 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.009809 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.009820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.009823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.009825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.009829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.009833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.009845 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.009850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.009854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.020766 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.020796 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.020819 LLDP, length 82 [|LLDP] 12:24:23.020821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1207 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.020823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.020830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.020834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.020837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.020849 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.020855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.020866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.020869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.020871 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.020875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.020880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.029019 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.029043 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.029064 LLDP, length 82 [|LLDP] 12:24:23.029066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120d 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.029068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.029074 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.029078 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.029082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.029093 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.029099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.029109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.029112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.029114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.029119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.029123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.040037 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.040060 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.040079 LLDP, length 82 [|LLDP] 12:24:23.040080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1215 bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.040082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.040088 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.040092 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.040096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.040107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.040110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.040112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.040116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.040127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.040132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.040137 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.051035 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.051056 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.051076 LLDP, length 82 [|LLDP] 12:24:23.051077 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121e 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.051079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.051085 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.051089 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.051092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.051104 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.051109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.051119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.051122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.051124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.051128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.051133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.059292 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.059313 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.059332 LLDP, length 82 [|LLDP] 12:24:23.059333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1224 7248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.059343 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.059350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.059360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.059364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.059366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.059371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.059375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.059378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.059391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.059396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.059400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.070301 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.070322 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.070342 LLDP, length 82 [|LLDP] 12:24:23.070344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122c d8b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.070346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.070351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.070355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.070358 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.070364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.070374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.070377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.070379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.070391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.070396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.070401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.078564 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.078590 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.078611 LLDP, length 82 [|LLDP] 12:24:23.078613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1233 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.078615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.078621 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.078625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.078628 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.078640 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.078646 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.078656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.078659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.078661 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.078666 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.078671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.089572 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.089595 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.089616 LLDP, length 82 [|LLDP] 12:24:23.089618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123b 8be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.089620 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.089626 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.089632 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.089642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.089645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.089648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.089652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.089655 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.089668 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.089673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.089678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.100582 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.100604 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.100624 LLDP, length 82 [|LLDP] 12:24:23.100626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1243 f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.100628 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.100634 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.100637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.100641 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.100652 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.100658 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.100667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.100670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.100673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.100677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.100682 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.108837 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.108860 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.108879 LLDP, length 82 [|LLDP] 12:24:23.108880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124a 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.108882 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.108887 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.108891 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.108895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.108906 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.108912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.108921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.108924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.108926 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.108931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.108935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.119844 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.119866 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.119885 LLDP, length 82 [|LLDP] 12:24:23.119886 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1252 a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.119888 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.119894 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.119898 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.119903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.119913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.119916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.119918 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.119922 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.119933 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.119938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.119943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.130859 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.130881 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.130901 LLDP, length 82 [|LLDP] 12:24:23.130902 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125b 0be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.130904 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.130910 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.130914 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.130918 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.130929 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.130935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.130945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.130948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.130950 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.130955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.130959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.139126 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.139144 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.139166 LLDP, length 82 [|LLDP] 12:24:23.139167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1261 58b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.139169 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.139175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.139186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.139190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.139192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.139198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.139201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.139205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.139217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.139223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.139227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.150130 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.150148 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.150169 LLDP, length 82 [|LLDP] 12:24:23.150171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1269 bf1d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.150173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.150179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.150182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.150186 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.150191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.150202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.150205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.150207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.150220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.150225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.150229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.161137 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.161158 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.161177 LLDP, length 82 [|LLDP] 12:24:23.161178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1272 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.161180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.161186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.161190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.161193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.161205 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.161211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.161220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.161223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.161225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.161230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.161234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.169393 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.169414 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.169433 LLDP, length 82 [|LLDP] 12:24:23.169435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1278 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.169437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.169442 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.169448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.169457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.169460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.169463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.169466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.169470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.169482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.169487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.169492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.180403 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.180424 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.180442 LLDP, length 82 [|LLDP] 12:24:23.180444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1280 d8b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.180446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.180452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.180456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.180460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.180471 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.180477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.180499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.180502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.180504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.180509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.180514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.188660 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.188682 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.188700 LLDP, length 82 [|LLDP] 12:24:23.188701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1287 257d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.188703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.188709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.188713 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.188717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.188728 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.188734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.188744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.188747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.188749 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.188754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.188758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.199678 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.199705 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.199726 LLDP, length 82 [|LLDP] 12:24:23.199728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 128f 8be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.199730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.199736 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.199740 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.199745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.199756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.199759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.199761 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.199765 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.199777 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.199783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.199787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.210689 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.210718 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.210741 LLDP, length 82 [|LLDP] 12:24:23.210743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1297 f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.210745 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.210751 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.210755 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.210759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.210770 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.210776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.210786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.210789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.210792 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.210796 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.210801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 9065 packets captured 9065 packets received by filter 0 packets dropped by kernel 605 packets dropped by interface INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra1 with rc 0 and out 12:24:17.171646 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.171723 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.171769 LLDP, length 82 [|LLDP] 12:24:17.171771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0098 8b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.171774 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.171785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.171789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.171793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.171807 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.171814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.171851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.171856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.171858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.171866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.171872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.179840 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.179862 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.179887 LLDP, length 82 [|LLDP] 12:24:17.179889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009e d849 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.179891 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.179898 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.179902 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.179908 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.179931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.179935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.179937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.179941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.179953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.179959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.179963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.190845 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.190861 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.190881 LLDP, length 82 [|LLDP] 12:24:17.190882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a7 3eb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.190884 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.190890 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.190894 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.190897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.190909 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.190916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.190935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.190939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.190941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.190946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.190950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.199092 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.199115 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.199135 LLDP, length 82 [|LLDP] 12:24:17.199136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ad 8b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.199138 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.199144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.199163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.199167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.199169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.199175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.199179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.199182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.199194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.199199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.199204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.210112 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.210137 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.210159 LLDP, length 82 [|LLDP] 12:24:17.210161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b5 f1e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.210163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.210169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.210173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.210176 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.210182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.210203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.210206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.210208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.210221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.210226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.210231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.221112 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.221133 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.221151 LLDP, length 82 [|LLDP] 12:24:17.221152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00be 584a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.221154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.221159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.221163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.221167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.221178 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.221184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.221203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.221206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.221208 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.221213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.221218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.229372 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.229392 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.229409 LLDP, length 82 [|LLDP] 12:24:17.229411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c4 a516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.229413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.229418 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.229424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.229433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.229436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.229438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.229442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.229445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.229458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.229463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.229467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.240378 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.240398 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.240415 LLDP, length 82 [|LLDP] 12:24:17.240417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00cd 0b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.240419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.240424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.240428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.240432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.240443 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.240449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.240458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.240461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.240463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.240467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.240472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.251413 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.251437 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.251458 LLDP, length 82 [|LLDP] 12:24:17.251459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d5 71e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.251461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.251467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.251470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.251474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.251485 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.251491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.251500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.251503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.251505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.251510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.251514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.259648 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.259666 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.259683 LLDP, length 82 [|LLDP] 12:24:17.259685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00db beb0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.259686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.259692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.259695 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.259700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.259709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.259712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.259714 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.259718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.259729 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.259734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.259739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.270656 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.270674 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.270690 LLDP, length 82 [|LLDP] 12:24:17.270692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e4 2517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.270693 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.270698 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.270702 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.270705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.270717 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.270722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.270731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.270734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.270736 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.270740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.270745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.278915 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.278934 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.278950 LLDP, length 82 [|LLDP] 12:24:17.278951 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ea 71e3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.278953 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.278958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.278967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.278970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.278972 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.278976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.278980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.278984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.278995 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.279000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.279005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.289925 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.289943 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.289960 LLDP, length 82 [|LLDP] 12:24:17.289961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f2 d84a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.289963 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.289968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.289972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.289975 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.289980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.289990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.289993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.289995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.290007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.290012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.290017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.300934 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.300952 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.300968 LLDP, length 82 [|LLDP] 12:24:17.300970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fb 3eb7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.300971 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.300976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.300980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.300983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.300995 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.301000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.301008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.301011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.301013 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.301018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.301022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.309194 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.309212 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.309228 LLDP, length 82 [|LLDP] 12:24:17.309230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0101 8b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.309231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.309236 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.309242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.309250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.309253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.309255 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.309259 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.309263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.309274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.309280 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.309284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.320201 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.320219 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.320234 LLDP, length 82 [|LLDP] 12:24:17.320236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0109 f1e3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.320238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.320243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.320246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.320250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.320261 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.320266 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.320275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.320278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.320280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.320285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.320289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.331211 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.331229 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.331245 LLDP, length 82 [|LLDP] 12:24:17.331246 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0112 584a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.331248 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.331253 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.331257 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.331261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.331272 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.331278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.331286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.331289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.331291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.331296 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.331300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.339469 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.339487 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.339503 LLDP, length 82 [|LLDP] 12:24:17.339504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0118 a517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.339506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.339511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.339515 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.339520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.339529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.339532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.339534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.339537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.339549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.339554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.339559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.350479 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.350497 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.350512 LLDP, length 82 [|LLDP] 12:24:17.350514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0121 0b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.350516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.350521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.350525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.350528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.350540 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.350546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.350555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.350558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.350560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.350564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.350569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.361490 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.361508 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.361524 LLDP, length 82 [|LLDP] 12:24:17.361525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0129 71e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.361527 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.361532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.361541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.361544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.361546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.361551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.361555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.361558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.361570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.361574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.361579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.369746 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.369765 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.369780 LLDP, length 82 [|LLDP] 12:24:17.369782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012f beb0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.369784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.369789 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.369792 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.369796 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.369801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.369810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.369812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.369815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.369826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.369832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.369836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.380758 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.380775 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.380790 LLDP, length 82 [|LLDP] 12:24:17.380792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0138 2518 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.380794 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.380799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.380802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.380806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.380818 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.380823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.380832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.380835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.380837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.380841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.380845 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.389016 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.389035 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.389051 LLDP, length 82 [|LLDP] 12:24:17.389053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013e 71e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.389054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.389060 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.389065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.389074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.389077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.389079 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.389083 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.389086 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.389098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.389103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.389108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.400037 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.400057 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.400072 LLDP, length 82 [|LLDP] 12:24:17.400074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0146 d84a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.400076 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.400081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.400084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.400088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.400099 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.400105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.400114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.400117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.400119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.400123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.400128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.411034 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.411052 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.411068 LLDP, length 82 [|LLDP] 12:24:17.411070 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014f 3eb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.411072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.411077 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.411080 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.411084 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.411095 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.411101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.411110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.411113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.411115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.411119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.411124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.419294 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.419315 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.419330 LLDP, length 82 [|LLDP] 12:24:17.419332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0155 8b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.419333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.419347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.419351 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.419356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.419365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.419368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.419370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.419374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.419386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.419391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.419396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.430303 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.430320 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.430336 LLDP, length 82 [|LLDP] 12:24:17.430338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015d f1e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.430340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.430345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.430348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.430352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.430364 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.430370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.430379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.430382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.430384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.430388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.430393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.441313 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.441332 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.441347 LLDP, length 82 [|LLDP] 12:24:17.441349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0166 584a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.441351 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.441356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.441365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.441368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.441370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.441375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.441378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.441382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.441393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.441398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.441402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.449572 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.449591 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.449607 LLDP, length 82 [|LLDP] 12:24:17.449609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016c a517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.449610 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.449615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.449619 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.449622 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.449628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.449637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.449640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.449642 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.449654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.449659 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.449664 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.460587 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.460611 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.460632 LLDP, length 82 [|LLDP] 12:24:17.460634 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0175 0b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.460636 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.460642 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.460645 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.460649 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.460661 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.460666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.460676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.460680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.460682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.460686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.460690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.468845 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.468867 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.468887 LLDP, length 82 [|LLDP] 12:24:17.468889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017b 584a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.468890 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.468896 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.468901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.468911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.468914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.468916 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.468919 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.468923 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.468935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.468940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.468944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.479858 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.479880 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.479899 LLDP, length 82 [|LLDP] 12:24:17.479900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0183 beb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.479902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.479908 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.479911 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.479915 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.479927 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.479932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.479942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.479945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.479947 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.479952 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.479956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.490868 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.490891 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.490909 LLDP, length 82 [|LLDP] 12:24:17.490911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018c 2517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.490913 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.490918 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.490922 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.490925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.490937 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.490942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.490952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.490955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.490957 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.490961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.490966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.499125 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.499147 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.499166 LLDP, length 82 [|LLDP] 12:24:17.499168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0192 71eb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.499170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.499175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.499179 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.499184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.499194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.499197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.499199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.499203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.499214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.499219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.499224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.510134 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.510156 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.510175 LLDP, length 82 [|LLDP] 12:24:17.510177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019a d84b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.510179 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.510184 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.510188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.510192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.510203 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.510209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.510219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.510222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.510224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.510229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.510233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.521147 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.521164 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.521182 LLDP, length 82 [|LLDP] 12:24:17.521184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a3 3eb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.521186 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.521191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.521201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.521204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.521206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.521211 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.521215 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.521218 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.521230 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.521235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.521240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.529403 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.529425 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.529444 LLDP, length 82 [|LLDP] 12:24:17.529446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a9 8b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.529448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.529453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.529457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.529461 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.529467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.529477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.529479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.529481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.529493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.529498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.529503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.540415 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.540430 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.540449 LLDP, length 82 [|LLDP] 12:24:17.540450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b1 f1e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.540452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.540458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.540461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.540465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.540476 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.540482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.540491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.540495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.540497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.540501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.540505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.551422 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.551443 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.551462 LLDP, length 82 [|LLDP] 12:24:17.551464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ba 5851 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.551466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.551471 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.551476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.551486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.551489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.551491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.551494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.551498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.551509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.551514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.551519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.559681 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.559703 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.559723 LLDP, length 82 [|LLDP] 12:24:17.559724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c0 a518 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.559726 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.559731 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.559735 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.559738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.559749 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.559755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.559765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.559768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.559770 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.559774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.559779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.570687 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.570710 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.570730 LLDP, length 82 [|LLDP] 12:24:17.570731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c9 0b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.570733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.570739 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.570742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.570746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.570758 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.570764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.570773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.570776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.570779 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.570783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.570788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.578944 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.578967 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.578985 LLDP, length 82 [|LLDP] 12:24:17.578986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cf 584b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.578988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.578994 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.578997 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.579002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.579011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.579014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.579017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.579020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.579032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.579036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.579041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.592064 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.592081 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.592099 LLDP, length 82 [|LLDP] 12:24:17.592101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d7 beb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.592103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.592109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.592112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.592116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.592127 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.592133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.592142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.592145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.592148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.592152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.592157 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.600973 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.600989 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.601007 LLDP, length 82 [|LLDP] 12:24:17.601009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e0 2518 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.601011 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.601016 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.601026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.601029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.601032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.601037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.601040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.601044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.601055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.601061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.601066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.609233 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.609249 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.609268 LLDP, length 82 [|LLDP] 12:24:17.609269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e6 71e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.609272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.609277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.609281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.609284 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.609289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.609299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.609302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.609305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.609316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.609321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.609326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.620246 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.620269 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.620287 LLDP, length 82 [|LLDP] 12:24:17.620289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ee d84b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.620291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.620296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.620300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.620304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.620315 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.620321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.620331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.620334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.620335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.620340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.620344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.634931 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.634947 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.634967 LLDP, length 82 [|LLDP] 12:24:17.634968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f7 3eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.634970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.634976 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.634981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.634990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.634993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.634996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.634999 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.635003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.635014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.635020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.635024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.639522 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.639546 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.639573 LLDP, length 82 [|LLDP] 12:24:17.639575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fd 8b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.639577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.639584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.639588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.639592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.639603 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.639610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.639621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.639624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.639626 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.639631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.639636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.650519 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.650545 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.650565 LLDP, length 82 [|LLDP] 12:24:17.650567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0205 f1e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.650569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.650575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.650578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.650582 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.650593 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.650599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.650609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.650612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.650614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.650618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.650623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.661535 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.661551 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.661571 LLDP, length 82 [|LLDP] 12:24:17.661573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020e 584c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.661574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.661580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.661584 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.661590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.661600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.661603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.661605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.661609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.661620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.661625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.661630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.669781 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.669804 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.669823 LLDP, length 82 [|LLDP] 12:24:17.669824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0214 a518 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.669826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.669832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.669835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.669839 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.669850 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.669856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.669866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.669869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.669871 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.669875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.669880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.680794 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.680819 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.680839 LLDP, length 82 [|LLDP] 12:24:17.680840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021d 0b7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.680842 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.680848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.680858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.680861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.680863 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.680868 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.680872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.680875 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.680887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.680891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.680896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.689057 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.689075 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.689094 LLDP, length 82 [|LLDP] 12:24:17.689096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0223 584b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.689098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.689103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.689107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.689110 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.689115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.689126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.689129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.689131 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.689143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.689148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.689152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.700061 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.700083 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.700102 LLDP, length 82 [|LLDP] 12:24:17.700103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022b beb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.700105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.700111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.700115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.700118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.700129 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.700136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.700145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.700148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.700151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.700155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.700159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.711074 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.711100 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.711121 LLDP, length 82 [|LLDP] 12:24:17.711122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0234 2518 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.711124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.711130 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.711135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.711145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.711148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.711150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.711154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.711158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.711169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.711175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.711179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.719331 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.719360 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.719380 LLDP, length 82 [|LLDP] 12:24:17.719382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023a 71e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.719384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.719390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.719394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.719397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.719408 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.719415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.719425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.719428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.719430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.719434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.719439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.730336 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.730359 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.730377 LLDP, length 82 [|LLDP] 12:24:17.730379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0242 d84a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.730381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.730387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.730390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.730394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.730405 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.730411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.730421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.730424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.730426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.730430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.730434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.741346 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.741368 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.741387 LLDP, length 82 [|LLDP] 12:24:17.741389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024b 3eb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.741390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.741396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.741400 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.741405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.741415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.741418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.741420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.741424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.741436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.741441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.741445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.749606 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.749628 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.749647 LLDP, length 82 [|LLDP] 12:24:17.749649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0251 8b84 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.749651 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.749656 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.749660 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.749663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.749675 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.749681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.749691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.749694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.749696 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.749700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.749705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.760627 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.760643 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.760662 LLDP, length 82 [|LLDP] 12:24:17.760663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0259 f1e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.760665 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.760671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.760681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.760684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.760686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.760691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.760695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.760698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.760710 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.760715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.760719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.768873 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.768896 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.768914 LLDP, length 82 [|LLDP] 12:24:17.768916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0260 3eb0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.768918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.768923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.768927 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.768931 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.768936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.768945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.768948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.768950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.768962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.768967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.768972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.779886 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.779910 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.779930 LLDP, length 82 [|LLDP] 12:24:17.779931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0268 a517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.779933 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.779939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.779943 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.779947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.779958 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.779964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.779973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.779976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.779978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.779982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.779987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.790908 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.790938 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.790963 LLDP, length 82 [|LLDP] 12:24:17.790965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0271 0b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.790967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.790974 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.790979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.790990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.790993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.790996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.790999 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.791003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.791015 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.791020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.791025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.799152 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.799175 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.799195 LLDP, length 82 [|LLDP] 12:24:17.799196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0277 5849 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.799198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.799204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.799208 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.799211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.799222 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.799228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.799238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.799241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.799243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.799247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.799252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.810167 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.810191 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.810211 LLDP, length 82 [|LLDP] 12:24:17.810212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027f beb0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.810214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.810220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.810223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.810227 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.810239 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.810244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.810254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.810257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.810259 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.810263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.810268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.821171 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.821194 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.821213 LLDP, length 82 [|LLDP] 12:24:17.821214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0288 2516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.821216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.821222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.821225 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.821230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.821240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.821243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.821245 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.821248 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.821260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.821265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.821269 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.829431 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.829453 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.829471 LLDP, length 82 [|LLDP] 12:24:17.829473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028e 71e3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.829475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.829480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.829484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.829487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.829499 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.829504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.829514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.829517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.829519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.829523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.829528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.840439 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.840462 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.840480 LLDP, length 82 [|LLDP] 12:24:17.840482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0296 d84a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.840483 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.840489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.840498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.840502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.840504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.840508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.840512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.840515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.840527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.840532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.840536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.851449 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.851472 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.851491 LLDP, length 82 [|LLDP] 12:24:17.851492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029f 3eb0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.851494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.851500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.851503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.851507 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.851512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.851522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.851525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.851527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.851538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.851543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.851548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.859706 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.859728 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.859746 LLDP, length 82 [|LLDP] 12:24:17.859748 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a5 8b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.859749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.859755 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.859759 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.859763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.859774 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.859780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.859789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.859792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.859794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.859798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.859803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.870716 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.870738 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.870757 LLDP, length 82 [|LLDP] 12:24:17.870759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ad f1e3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.870761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.870766 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.870772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.870782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.870785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.870787 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.870791 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.870794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.870805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.870811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.870815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.878974 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.879000 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.879018 LLDP, length 82 [|LLDP] 12:24:17.879019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b4 3eb0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.879021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.879027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.879030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.879034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.879045 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.879051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.879061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.879064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.879066 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.879071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.879075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.889989 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.890012 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.890032 LLDP, length 82 [|LLDP] 12:24:17.890033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02bc a516 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.890035 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.890041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.890044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.890048 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.890059 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.890065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.890076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.890079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.890081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.890086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.890090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.901013 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.901038 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.901065 LLDP, length 82 [|LLDP] 12:24:17.901067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c5 0b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.901068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.901076 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.901079 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.901085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.901097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.901100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.901103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.901106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.901118 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.901123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.901128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.909254 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.909277 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.909297 LLDP, length 82 [|LLDP] 12:24:17.909299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cb 584a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.909301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.909306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.909310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.909314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.909325 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.909331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.909341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.909344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.909346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.909350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.909355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.920264 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.920286 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.920305 LLDP, length 82 [|LLDP] 12:24:17.920307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d3 beb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.920308 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.920314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.920324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.920327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.920330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.920335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.920338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.920341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.920353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.920358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.920363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.931274 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.931298 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.931318 LLDP, length 82 [|LLDP] 12:24:17.931319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02dc 2517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.931321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.931327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.931331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.931344 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.931351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.931361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.931364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.931367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.931379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.931384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.931389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.939532 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.939555 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.939574 LLDP, length 82 [|LLDP] 12:24:17.939576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e2 71e3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.939578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.939583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.939587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.939591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.939602 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.939607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.939617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.939620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.939622 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.939626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.939630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.950543 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.950565 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.950584 LLDP, length 82 [|LLDP] 12:24:17.950585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ea d84a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.950587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.950592 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.950597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.950607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.950610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.950612 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.950616 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.950619 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.950631 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.950636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.950640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.958800 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.958821 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.958840 LLDP, length 82 [|LLDP] 12:24:17.958841 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f1 2517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.958843 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.958849 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.958852 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.958856 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.958867 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.958873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.958882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.958885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.958887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.958892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.958896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.969810 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.969832 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.969851 LLDP, length 82 [|LLDP] 12:24:17.969852 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f9 8b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.969854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.969860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.969863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.969867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.969878 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.969884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.969894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.969897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.969899 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.969903 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.969908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.980821 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.980844 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.980863 LLDP, length 82 [|LLDP] 12:24:17.980864 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0301 f1e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.980866 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.980872 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.980875 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.980880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.980891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.980894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.980896 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.980900 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.980912 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.980917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.980922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:17.989078 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:17.989101 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.989120 LLDP, length 82 [|LLDP] 12:24:17.989122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0308 3eb0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:17.989124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:17.989129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:17.989133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:17.989136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:17.989148 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:17.989154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:17.989163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.989166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:17.989168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:17.989173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:17.989177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.000098 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.000125 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.000148 LLDP, length 82 [|LLDP] 12:24:18.000150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0310 a51e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.000151 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.000157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.000168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.000171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.000174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.000179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.000183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.000187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.000198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.000204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.000209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.011100 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.011123 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.011142 LLDP, length 82 [|LLDP] 12:24:18.011144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0319 0b7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.011146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.011151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.011155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.011158 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.011164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.011174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.011177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.011179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.011191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.011196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.011201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.019366 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.019389 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.019408 LLDP, length 82 [|LLDP] 12:24:18.019409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031f 584a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.019411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.019417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.019420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.019424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.019435 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.019441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.019450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.019454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.019456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.019460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.019465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.030367 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.030389 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.030409 LLDP, length 82 [|LLDP] 12:24:18.030424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0327 beb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.030427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.030433 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.030439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.030449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.030453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.030455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.030459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.030463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.030477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.030482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.030487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.041407 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.041442 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.041467 LLDP, length 82 [|LLDP] 12:24:18.041469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0330 2517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.041472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.041481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.041484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.041488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.041499 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.041507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.041521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.041525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.041527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.041532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.041538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.049640 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.049666 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.049692 LLDP, length 82 [|LLDP] 12:24:18.049693 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0336 71e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.049695 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.049701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.049706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.049709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.049721 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.049727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.049737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.049740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.049742 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.049746 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.049751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.060655 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.060674 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.060696 LLDP, length 82 [|LLDP] 12:24:18.060698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033e d84a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.060700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.060706 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.060709 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.060714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.060725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.060728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.060730 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.060734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.060745 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.060751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.060755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.068904 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.068929 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.068949 LLDP, length 82 [|LLDP] 12:24:18.068951 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0345 2517 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.068952 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.068958 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.068962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.068965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.068976 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.068982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.068992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.068995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.068997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.069002 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.069006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.079916 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.079939 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.079960 LLDP, length 82 [|LLDP] 12:24:18.079962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034d 8b7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.079964 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.079970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.079980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.079984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.079986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.079991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.079994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.079998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.080009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.080014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.080019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.090925 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.090948 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.090966 LLDP, length 82 [|LLDP] 12:24:18.090968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0355 f1e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.090970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.090976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.090980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.090984 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.090989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.091001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.091003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.091005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.091017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.091022 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.091027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.099182 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.099208 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.099229 LLDP, length 82 [|LLDP] 12:24:18.099230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035c 3eb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.099232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.099239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.099242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.099246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.099258 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.099264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.099275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.099278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.099280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.099284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.099289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.110194 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.110218 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.110239 LLDP, length 82 [|LLDP] 12:24:18.110241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0364 a539 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.110243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.110249 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.110254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.110265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.110268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.110270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.110274 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.110277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.110290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.110295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.110299 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.121204 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.121227 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.121247 LLDP, length 82 [|LLDP] 12:24:18.121249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036d 0ba0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.121251 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.121256 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.121260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.121264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.121276 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.121281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.121291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.121294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.121297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.121301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.121306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.129459 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.129482 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.129502 LLDP, length 82 [|LLDP] 12:24:18.129503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0373 586c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.129505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.129511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.129515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.129519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.129531 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.129537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.129547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.129550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.129552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.129556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.129560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.140469 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.140493 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.140513 LLDP, length 82 [|LLDP] 12:24:18.140515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037b bed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.140517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.140523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.140526 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.140531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.140542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.140545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.140547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.140551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.140563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.140568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.140572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.151481 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.151506 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.151525 LLDP, length 82 [|LLDP] 12:24:18.151527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0384 2539 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.151529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.151535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.151538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.151542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.151555 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.151561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.151570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.151574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.151576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.151580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.151585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.159738 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.159761 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.159780 LLDP, length 82 [|LLDP] 12:24:18.159782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038a 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.159784 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.159789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.159800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.159803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.159805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.159810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.159814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.159817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.159829 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.159834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.159839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.170751 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.170773 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.170793 LLDP, length 82 [|LLDP] 12:24:18.170794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0392 d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.170796 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.170802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.170805 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.170809 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.170814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.170824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.170827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.170830 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.170841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.170846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.170851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.179009 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.179026 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.179046 LLDP, length 82 [|LLDP] 12:24:18.179048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0399 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.179050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.179055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.179059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.179062 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.179074 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.179080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.179103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.179106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.179109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.179114 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.179118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.190020 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.190044 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.190064 LLDP, length 82 [|LLDP] 12:24:18.190066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a1 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.190068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.190073 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.190079 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.190089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.190092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.190094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.190098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.190102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.190114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.190119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.190124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.201029 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.201053 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.201074 LLDP, length 82 [|LLDP] 12:24:18.201075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a9 f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.201077 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.201083 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.201086 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.201090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.201101 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.201107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.201117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.201120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.201122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.201127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.201131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.209285 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.209309 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.209328 LLDP, length 82 [|LLDP] 12:24:18.209329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b0 3ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.209331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.209337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.209341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.209345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.209357 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.209362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.209372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.209375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.209377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.209381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.209386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.220294 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.220318 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.220339 LLDP, length 82 [|LLDP] 12:24:18.220340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b8 a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.220342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.220348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.220352 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.220357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.220367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.220370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.220372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.220375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.220387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.220392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.220397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.231306 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.231329 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.231360 LLDP, length 82 [|LLDP] 12:24:18.231361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c1 0bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.231363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.231369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.231373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.231376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.231388 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.231394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.231404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.231407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.231409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.231414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.231418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.241746 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.241762 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.241782 LLDP, length 82 [|LLDP] 12:24:18.241783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c7 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.241785 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.241791 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.241801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.241804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.241806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.241812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.241815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.241819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.241830 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.241835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.241840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.250584 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.250600 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.250620 LLDP, length 82 [|LLDP] 12:24:18.250621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cf bef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.250623 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.250629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.250633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.250636 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.250642 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.250652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.250654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.250656 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.250669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.250674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.250678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.258829 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.258852 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.258872 LLDP, length 82 [|LLDP] 12:24:18.258874 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d6 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.258875 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.258881 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.258884 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.258888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.258900 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.258905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.258915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.258918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.258920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.258925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.258929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.269840 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.269864 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.269884 LLDP, length 82 [|LLDP] 12:24:18.269885 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03de 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.269887 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.269893 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.269898 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.269908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.269911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.269913 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.269917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.269921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.269933 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.269938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.269942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.280851 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.280875 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.280895 LLDP, length 82 [|LLDP] 12:24:18.280897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e6 d88f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.280898 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.280904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.280908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.280911 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.280923 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.280928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.280938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.280941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.280943 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.280948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.280953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.289108 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.289131 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.289152 LLDP, length 82 [|LLDP] 12:24:18.289153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ed 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.289155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.289161 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.289164 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.289168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.289180 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.289185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.289195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.289198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.289200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.289204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.289209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.302413 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.302431 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.302452 LLDP, length 82 [|LLDP] 12:24:18.302453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f5 8bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.302455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.302461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.302464 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.302469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.302480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.302483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.302485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.302489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.302501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.302506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.302511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.311131 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.311154 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.311174 LLDP, length 82 [|LLDP] 12:24:18.311176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fd f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.311178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.311183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.311187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.311191 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.311202 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.311208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.311218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.311221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.311223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.311227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.311232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.319394 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.319418 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.319438 LLDP, length 82 [|LLDP] 12:24:18.319439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0404 3ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.319441 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.319447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.319457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.319461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.319463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.319467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.319471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.319475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.319487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.319492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.319496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.330399 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.330422 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.330442 LLDP, length 82 [|LLDP] 12:24:18.330444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040c a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.330445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.330451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.330455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.330459 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.330464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.330474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.330477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.330480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.330491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.330496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.330501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.341406 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.341428 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.341448 LLDP, length 82 [|LLDP] 12:24:18.341450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0415 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.341452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.341458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.341461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.341465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.341476 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.341482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.341491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.341495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.341497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.341501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.341506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.349667 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.349690 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.349709 LLDP, length 82 [|LLDP] 12:24:18.349711 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041b 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.349712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.349718 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.349723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.349733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.349736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.349738 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.349742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.349745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.349757 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.349762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.349767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.363075 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.363092 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.363113 LLDP, length 82 [|LLDP] 12:24:18.363114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0423 bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.363116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.363122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.363126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.363129 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.363141 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.363146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.363156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.363159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.363161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.363166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.363170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.368936 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.368960 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.368980 LLDP, length 82 [|LLDP] 12:24:18.368982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042a 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.368984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.368990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.368993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.368996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.369008 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.369014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.369024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.369027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.369029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.369033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.369038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.379943 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.379966 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.379986 LLDP, length 82 [|LLDP] 12:24:18.379988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0432 722e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.379990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.379996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.379999 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.380004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.380014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.380017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.380019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.380022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.380034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.380039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.380043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.390953 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.390976 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.390997 LLDP, length 82 [|LLDP] 12:24:18.390998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043a d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.391000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.391006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.391009 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.391013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.391024 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.391030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.391040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.391043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.391045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.391050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.391054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.399216 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.399238 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.399258 LLDP, length 82 [|LLDP] 12:24:18.399260 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0441 2559 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.399261 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.399267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.399278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.399281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.399283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.399288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.399292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.399295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.399307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.399312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.399316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.410222 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.410245 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.410265 LLDP, length 82 [|LLDP] 12:24:18.410267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0449 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.410268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.410274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.410277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.410281 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.410286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.410297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.410300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.410302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.410314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.410319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.410324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.423987 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.424003 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.424023 LLDP, length 82 [|LLDP] 12:24:18.424025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0451 f226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.424026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.424032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.424036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.424039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.424051 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.424056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.424066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.424070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.424072 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.424077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.424081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.429490 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.429512 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.429531 LLDP, length 82 [|LLDP] 12:24:18.429533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0458 3ef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.429535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.429540 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.429546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.429556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.429559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.429561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.429565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.429568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.429580 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.429585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.429590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.440499 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.440521 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.440541 LLDP, length 82 [|LLDP] 12:24:18.440543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0460 a559 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.440544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.440550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.440553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.440557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.440568 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.440574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.440584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.440587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.440589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.440594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.440598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.451509 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.451532 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.451552 LLDP, length 82 [|LLDP] 12:24:18.451554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0469 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.451556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.451561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.451565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.451569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.451580 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.451586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.451595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.451598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.451600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.451605 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.451609 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.459767 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.459790 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.459810 LLDP, length 82 [|LLDP] 12:24:18.459812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046f 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.459814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.459820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.459823 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.459828 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.459838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.459841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.459843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.459847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.459858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.459863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.459868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.470778 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.470802 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.470823 LLDP, length 82 [|LLDP] 12:24:18.470824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0477 bef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.470826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.470832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.470835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.470839 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.470850 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.470856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.470865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.470868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.470871 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.470875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.470880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.479034 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.479057 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.479078 LLDP, length 82 [|LLDP] 12:24:18.479079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047e 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.479081 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.479086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.479096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.479100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.479101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.479106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.479110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.479114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.479125 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.479130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.479135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.490047 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.490070 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.490089 LLDP, length 82 [|LLDP] 12:24:18.490091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0486 7226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.490093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.490099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.490103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.490106 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.490111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.490122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.490125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.490127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.490139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.490144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.490149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.501056 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.501080 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.501101 LLDP, length 82 [|LLDP] 12:24:18.501103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048e d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.501105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.501110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.501114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.501118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.501129 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.501135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.501145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.501148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.501150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.501154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.501159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.509314 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.509338 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.509358 LLDP, length 82 [|LLDP] 12:24:18.509360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0495 2559 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.509362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.509367 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.509373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.509383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.509386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.509388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.509392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.509395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.509407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.509412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.509416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.520321 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.520345 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.520366 LLDP, length 82 [|LLDP] 12:24:18.520368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049d 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.520369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.520375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.520379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.520382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.520394 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.520400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.520410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.520413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.520415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.520420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.520424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.531349 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.531368 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.531389 LLDP, length 82 [|LLDP] 12:24:18.531390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a5 f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.531392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.531398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.531402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.531405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.531416 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.531422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.531432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.531436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.531437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.531442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.531446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.539603 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.539621 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.539640 LLDP, length 82 [|LLDP] 12:24:18.539642 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ac 3ef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.539644 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.539650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.539653 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.539659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.539668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.539671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.539673 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.539677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.539689 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.539694 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.539699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.550613 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.550630 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.550649 LLDP, length 82 [|LLDP] 12:24:18.550651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b4 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.550653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.550658 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.550662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.550665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.550677 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.550683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.550693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.550696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.550698 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.550702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.550707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.558860 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.558883 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.558903 LLDP, length 82 [|LLDP] 12:24:18.558905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ba f226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.558907 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.558913 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.558923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.558926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.558928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.558933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.558937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.558941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.558952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.558957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.558962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.569870 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.569893 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.569913 LLDP, length 82 [|LLDP] 12:24:18.569914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c3 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.569916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.569922 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.569925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.569929 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.569934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.569944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.569947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.569950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.569962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.569967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.569971 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.580880 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.580903 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.580922 LLDP, length 82 [|LLDP] 12:24:18.580924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cb bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.580926 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.580931 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.580935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.580938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.580949 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.580956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.580965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.580968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.580970 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.580975 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.580980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.589136 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.589159 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.589179 LLDP, length 82 [|LLDP] 12:24:18.589180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d2 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.589182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.589188 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.589194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.589204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.589207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.589209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.589212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.589216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.589228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.589233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.589237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.600149 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.600172 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.600193 LLDP, length 82 [|LLDP] 12:24:18.600195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04da 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.600197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.600202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.600206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.600209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.600221 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.600226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.600237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.600240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.600243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.600247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.600251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.611160 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.611183 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.611202 LLDP, length 82 [|LLDP] 12:24:18.611204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e2 d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.611206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.611213 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.611216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.611220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.611232 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.611237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.611247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.611250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.611253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.611257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.611262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.619418 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.619442 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.619462 LLDP, length 82 [|LLDP] 12:24:18.619464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e9 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.619466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.619472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.619476 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.619481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.619491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.619494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.619496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.619500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.619512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.619517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.619521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.630431 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.630449 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.630469 LLDP, length 82 [|LLDP] 12:24:18.630470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f1 8bc8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.630472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.630477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.630481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.630485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.630497 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.630502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.630512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.630515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.630517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.630522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.630526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.641437 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.641461 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.641482 LLDP, length 82 [|LLDP] 12:24:18.641483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f9 f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.641485 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.641491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.641500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.641503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.641505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.641511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.641514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.641517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.641529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.641534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.641539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.649698 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.649721 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.649740 LLDP, length 82 [|LLDP] 12:24:18.649742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0500 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.649744 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.649749 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.649753 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.649756 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.649762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.649771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.649774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.649776 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.649788 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.649793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.649798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.660702 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.660726 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.660745 LLDP, length 82 [|LLDP] 12:24:18.660747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0508 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.660749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.660754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.660758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.660761 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.660773 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.660779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.660789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.660791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.660793 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.660797 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.660802 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.668976 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.668995 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.669016 LLDP, length 82 [|LLDP] 12:24:18.669017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050e f22b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.669019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.669025 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.669030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.669041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.669044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.669046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.669050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.669053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.669065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.669070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.669075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.679973 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.679996 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.680017 LLDP, length 82 [|LLDP] 12:24:18.680018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0517 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.680020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.680026 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.680029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.680033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.680044 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.680049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.680059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.680063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.680065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.680069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.680074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.690981 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.691004 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.691024 LLDP, length 82 [|LLDP] 12:24:18.691026 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051f bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.691028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.691033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.691037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.691040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.691052 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.691057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.691068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.691071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.691073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.691077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.691082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.699240 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.699264 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.699285 LLDP, length 82 [|LLDP] 12:24:18.699286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0526 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.699288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.699294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.699298 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.699303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.699314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.699317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.699318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.699322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.699343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.699349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.699354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.710250 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.710275 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.710295 LLDP, length 82 [|LLDP] 12:24:18.710297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052e 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.710299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.710305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.710308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.710311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.710323 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.710329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.710339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.710342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.710344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.710348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.710353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.721260 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.721285 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.721306 LLDP, length 82 [|LLDP] 12:24:18.721307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0536 d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.721309 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.721315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.721325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.721329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.721331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.721336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.721339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.721343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.721355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.721360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.721364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.729523 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.729546 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.729566 LLDP, length 82 [|LLDP] 12:24:18.729567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053d 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.729569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.729575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.729579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.729582 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.729588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.729598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.729601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.729603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.729614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.729619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.729624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.740539 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.740555 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.740575 LLDP, length 82 [|LLDP] 12:24:18.740576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0545 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.740578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.740584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.740587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.740591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.740602 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.740608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.740618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.740621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.740624 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.740628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.740632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.748786 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.748809 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.748829 LLDP, length 82 [|LLDP] 12:24:18.748831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054b d894 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.748832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.748838 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.748843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.748853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.748856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.748858 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.748862 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.748865 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.748877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.748882 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.748887 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.759796 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.759822 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.759843 LLDP, length 82 [|LLDP] 12:24:18.759844 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0554 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.759846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.759852 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.759856 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.759860 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.759871 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.759877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.759888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.759891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.759893 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.759898 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.759902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.770819 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.770849 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.770873 LLDP, length 82 [|LLDP] 12:24:18.770875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055c a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.770877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.770883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.770887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.770890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.770903 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.770909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.770920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.770923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.770925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.770930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.770935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.779064 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.779087 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.779106 LLDP, length 82 [|LLDP] 12:24:18.779108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0562 f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.779109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.779115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.779119 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.779124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.779134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.779137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.779139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.779143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.779154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.779159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.779164 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.790083 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.790112 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.790135 LLDP, length 82 [|LLDP] 12:24:18.790137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056b 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.790139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.790145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.790149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.790152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.790164 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.790170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.790181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.790184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.790186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.790191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.790196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.801087 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.801109 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.801130 LLDP, length 82 [|LLDP] 12:24:18.801132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0573 bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.801134 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.801140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.801150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.801153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.801155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.801161 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.801165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.801168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.801180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.801184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.801189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.809341 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.809363 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.809382 LLDP, length 82 [|LLDP] 12:24:18.809384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057a 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.809386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.809391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.809395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.809399 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.809404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.809414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.809417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.809419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.809431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.809435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.809440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.820351 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.820374 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.820394 LLDP, length 82 [|LLDP] 12:24:18.820396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0582 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.820397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.820403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.820407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.820410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.820421 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.820427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.820437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.820440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.820442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.820447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.820451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.831369 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.831392 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.831412 LLDP, length 82 [|LLDP] 12:24:18.831413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058a d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.831415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.831421 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.831426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.831435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.831438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.831441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.831444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.831448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.831460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.831465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.831470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.839620 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.839642 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.839661 LLDP, length 82 [|LLDP] 12:24:18.839663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0591 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.839665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.839670 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.839674 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.839677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.839689 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.839694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.839704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.839707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.839709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.839713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.839718 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.850631 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.850655 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.850674 LLDP, length 82 [|LLDP] 12:24:18.850675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0599 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.850677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.850683 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.850687 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.850690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.850701 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.850707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.850717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.850720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.850722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.850726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.850731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.858886 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.858909 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.858928 LLDP, length 82 [|LLDP] 12:24:18.858929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059f d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.858931 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.858937 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.858940 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.858945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.858955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.858958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.858961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.858964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.858976 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.858981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.858986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.869899 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.869921 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.869939 LLDP, length 82 [|LLDP] 12:24:18.869941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a8 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.869943 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.869948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.869952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.869955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.869967 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.869973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.869982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.869985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.869987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.869992 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.869996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.880906 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.880929 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.880948 LLDP, length 82 [|LLDP] 12:24:18.880949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b0 a562 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.880952 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.880957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.880967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.880971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.880973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.880977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.880981 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.880984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.880996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.881001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.881006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.889168 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.889183 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.889202 LLDP, length 82 [|LLDP] 12:24:18.889204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b6 f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.889206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.889212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.889229 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.889234 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.889239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.889249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.889252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.889255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.889267 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.889273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.889277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.900199 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.900232 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.900256 LLDP, length 82 [|LLDP] 12:24:18.900258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bf 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.900260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.900269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.900273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.900276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.900288 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.900295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.900307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.900311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.900313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.900318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.900324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.911197 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.911220 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.911246 LLDP, length 82 [|LLDP] 12:24:18.911247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c7 bef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.911249 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.911255 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.911261 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.911272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.911275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.911277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.911281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.911284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.911295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.911300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.911305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.919452 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.919471 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.919493 LLDP, length 82 [|LLDP] 12:24:18.919494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ce 0bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.919496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.919502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.919505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.919509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.919520 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.919526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.919536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.919540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.919542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.919546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.919551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.930456 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.930481 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.930503 LLDP, length 82 [|LLDP] 12:24:18.930505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d6 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.930507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.930513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.930516 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.930520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.930531 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.930537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.930547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.930549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.930552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.930556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.930561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.941466 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.941490 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.941515 LLDP, length 82 [|LLDP] 12:24:18.941517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05de d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.941519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.941525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.941528 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.941534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.941544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.941547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.941550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.941553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.941565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.941571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.941575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.949725 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.949748 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.949769 LLDP, length 82 [|LLDP] 12:24:18.949771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e5 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.949773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.949779 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.949782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.949786 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.949797 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.949803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.949813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.949816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.949818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.949823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.949828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.960732 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.960757 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.960776 LLDP, length 82 [|LLDP] 12:24:18.960778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ed 8bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.960780 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.960786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.960795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.960799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.960801 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.960806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.960809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.960813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.960824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.960829 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.960834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.973128 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.973146 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.973165 LLDP, length 82 [|LLDP] 12:24:18.973167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f3 d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.973169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.973175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.973179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.973182 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.973188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.973198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.973201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.973203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.973215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.973220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.973224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.980013 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.980030 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.980051 LLDP, length 82 [|LLDP] 12:24:18.980053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05fc 3ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.980054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.980060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.980064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.980067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.980079 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.980084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.980095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.980098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.980100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.980105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.980110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.991012 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.991036 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.991055 LLDP, length 82 [|LLDP] 12:24:18.991057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0604 a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.991059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.991065 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.991070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.991080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.991083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.991085 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.991089 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.991093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.991105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.991110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.991114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:18.999269 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:18.999293 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.999314 LLDP, length 82 [|LLDP] 12:24:18.999315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060a f22f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:18.999318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:18.999324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:18.999328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:18.999331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:18.999353 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:18.999360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:18.999370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.999373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:18.999376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:18.999380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:18.999385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.010280 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.010302 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.010322 LLDP, length 82 [|LLDP] 12:24:19.010323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0613 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.010325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.010331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.010334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.010338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.010349 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.010355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.010365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.010368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.010370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.010374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.010379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.021287 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.021311 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.021331 LLDP, length 82 [|LLDP] 12:24:19.021332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061b bef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.021334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.021340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.021344 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.021349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.021359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.021362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.021364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.021368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.021380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.021385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.021389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.033736 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.033753 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.033773 LLDP, length 82 [|LLDP] 12:24:19.033774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0622 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.033776 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.033782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.033786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.033789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.033801 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.033807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.033816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.033819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.033821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.033826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.033830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.040559 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.040581 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.040600 LLDP, length 82 [|LLDP] 12:24:19.040602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062a 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.040604 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.040609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.040619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.040622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.040624 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.040629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.040633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.040637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.040648 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.040653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.040658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.048815 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.048839 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.048858 LLDP, length 82 [|LLDP] 12:24:19.048859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0630 bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.048861 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.048867 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.048871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.048875 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.048880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.048890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.048893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.048895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.048907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.048913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.048917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.059825 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.059848 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.059868 LLDP, length 82 [|LLDP] 12:24:19.059869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0639 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.059871 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.059877 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.059881 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.059885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.059896 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.059901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.059911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.059915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.059917 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.059921 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.059925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.070834 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.070857 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.070877 LLDP, length 82 [|LLDP] 12:24:19.070878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0641 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.070880 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.070886 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.070891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.070901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.070904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.070906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.070910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.070913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.070925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.070930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.070934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.079091 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.079113 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.079134 LLDP, length 82 [|LLDP] 12:24:19.079135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0647 d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.079137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.079143 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.079146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.079150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.079161 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.079168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.079178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.079181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.079183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.079187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.079192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.094344 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.094361 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.094381 LLDP, length 82 [|LLDP] 12:24:19.094383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0650 3ef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.094385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.094391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.094395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.094398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.094410 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.094416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.094425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.094428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.094431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.094435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.094440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.101113 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.101136 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.101157 LLDP, length 82 [|LLDP] 12:24:19.101158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0658 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.101160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.101166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.101169 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.101174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.101185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.101188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.101190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.101194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.101205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.101211 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.101215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.109373 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.109396 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.109417 LLDP, length 82 [|LLDP] 12:24:19.109419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065e f226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.109421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.109427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.109430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.109434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.109445 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.109451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.109462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.109465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.109467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.109471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.109476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.120379 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.120407 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.120426 LLDP, length 82 [|LLDP] 12:24:19.120428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0667 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.120430 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.120436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.120445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.120449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.120451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.120456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.120459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.120463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.120475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.120480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.120484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.131397 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.131421 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.131441 LLDP, length 82 [|LLDP] 12:24:19.131443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066f bef9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.131445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.131451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.131454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.131458 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.131463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.131473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.131476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.131478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.131490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.131495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.131499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.139650 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.139674 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.139694 LLDP, length 82 [|LLDP] 12:24:19.139696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0676 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.139698 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.139704 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.139707 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.139711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.139722 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.139728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.139737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.139740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.139742 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.139747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.139751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.154951 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.154970 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.154990 LLDP, length 82 [|LLDP] 12:24:19.154992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067e 7226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.154994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.155000 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.155006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.155016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.155019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.155021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.155025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.155028 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.155040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.155045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.155049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.158919 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.158942 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.158962 LLDP, length 82 [|LLDP] 12:24:19.158964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0684 bef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.158965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.158971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.158975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.158978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.158990 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.158995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.159005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.159008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.159010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.159015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.159019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.169930 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.169954 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.169974 LLDP, length 82 [|LLDP] 12:24:19.169975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068d 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.169977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.169983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.169987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.169990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.170002 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.170008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.170017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.170020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.170022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.170027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.170031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.180945 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.180961 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.180981 LLDP, length 82 [|LLDP] 12:24:19.180982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0695 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.180984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.180990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.180993 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.180999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.181022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.181025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.181028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.181032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.181044 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.181049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.181053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.189196 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.189219 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.189239 LLDP, length 82 [|LLDP] 12:24:19.189241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069b d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.189243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.189248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.189252 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.189255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.189267 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.189272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.189283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.189286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.189288 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.189293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.189297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.200223 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.200254 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.200280 LLDP, length 82 [|LLDP] 12:24:19.200282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a4 3ef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.200284 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.200290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.200302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.200306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.200308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.200314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.200317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.200321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.200333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.200339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.200344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.215563 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.215584 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.215606 LLDP, length 82 [|LLDP] 12:24:19.215608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ac a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.215610 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.215616 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.215620 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.215623 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.215629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.215639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.215642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.215644 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.215657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.215662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.215666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.219486 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.219504 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.219524 LLDP, length 82 [|LLDP] 12:24:19.219526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b2 f226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.219528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.219534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.219537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.219541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.219553 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.219558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.219568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.219571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.219573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.219578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.219582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.230484 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.230507 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.230527 LLDP, length 82 [|LLDP] 12:24:19.230529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06bb 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.230531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.230537 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.230542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.230553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.230556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.230558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.230562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.230565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.230577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.230582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.230587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.238741 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.238764 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.238784 LLDP, length 82 [|LLDP] 12:24:19.238786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c1 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.238788 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.238794 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.238797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.238801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.238813 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.238819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.238828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.238832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.238834 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.238838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.238844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.249752 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.249776 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.249796 LLDP, length 82 [|LLDP] 12:24:19.249798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ca 0bc7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.249800 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.249806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.249810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.249813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.249825 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.249831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.249840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.249843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.249845 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.249850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.249854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.260764 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.260787 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.260807 LLDP, length 82 [|LLDP] 12:24:19.260809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d2 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.260811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.260816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.260820 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.260826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.260836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.260839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.260841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.260845 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.260857 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.260862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.260866 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.269020 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.269043 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.269062 LLDP, length 82 [|LLDP] 12:24:19.269064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d8 bef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.269067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.269072 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.269076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.269080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.269091 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.269097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.269106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.269109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.269112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.269116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.269120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.280031 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.280054 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.280073 LLDP, length 82 [|LLDP] 12:24:19.280075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e1 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.280077 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.280082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.280092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.280096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.280098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.280104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.280107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.280111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.280123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.280128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.280132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.291047 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.291064 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.291084 LLDP, length 82 [|LLDP] 12:24:19.291085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e9 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.291087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.291093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.291097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.291100 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.291105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.291115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.291118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.291120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.291132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.291137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.291142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.299297 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.299320 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.299350 LLDP, length 82 [|LLDP] 12:24:19.299352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ef d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.299354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.299360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.299364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.299367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.299380 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.299386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.299396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.299399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.299401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.299405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.299410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.310307 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.310331 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.310350 LLDP, length 82 [|LLDP] 12:24:19.310352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f8 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.310353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.310360 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.310365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.310375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.310378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.310380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.310384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.310388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.310400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.310405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.310410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.321318 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.321341 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.321361 LLDP, length 82 [|LLDP] 12:24:19.321363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0700 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.321365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.321370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.321374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.321378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.321389 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.321395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.321405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.321408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.321410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.321414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.321419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.329577 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.329600 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.329621 LLDP, length 82 [|LLDP] 12:24:19.329623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0706 f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.329625 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.329631 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.329634 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.329638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.329649 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.329655 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.329665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.329668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.329670 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.329674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.329679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.340586 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.340609 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.340629 LLDP, length 82 [|LLDP] 12:24:19.340631 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070f 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.340633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.340639 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.340642 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.340647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.340658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.340661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.340663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.340667 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.340679 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.340684 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.340688 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.348845 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.348868 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.348888 LLDP, length 82 [|LLDP] 12:24:19.348890 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0715 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.348892 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.348898 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.348902 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.348906 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.348917 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.348923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.348933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.348936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.348938 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.348943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.348947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.359855 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.359878 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.359897 LLDP, length 82 [|LLDP] 12:24:19.359899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071e 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.359901 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.359906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.359916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.359919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.359921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.359927 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.359930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.359934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.359946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.359951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.359955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.370865 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.370889 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.370908 LLDP, length 82 [|LLDP] 12:24:19.370910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0726 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.370911 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.370917 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.370921 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.370925 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.370930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.370940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.370943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.370945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.370958 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.370963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.370968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.379123 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.379146 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.379167 LLDP, length 82 [|LLDP] 12:24:19.379168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072c bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.379170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.379175 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.379179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.379183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.379194 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.379200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.379210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.379213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.379215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.379220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.379224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.390141 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.390159 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.390179 LLDP, length 82 [|LLDP] 12:24:19.390181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0735 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.390183 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.390188 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.390193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.390204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.390207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.390209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.390213 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.390217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.390229 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.390234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.390239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.401143 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.401166 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.401186 LLDP, length 82 [|LLDP] 12:24:19.401187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073d 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.401189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.401195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.401199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.401202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.401213 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.401219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.401229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.401232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.401234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.401238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.401243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.409399 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.409422 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.409441 LLDP, length 82 [|LLDP] 12:24:19.409442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0743 d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.409444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.409450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.409454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.409457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.409469 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.409474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.409485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.409488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.409490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.409494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.409499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.420421 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.420438 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.420458 LLDP, length 82 [|LLDP] 12:24:19.420459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074c 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.420461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.420467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.420471 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.420476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.420485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.420488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.420490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.420494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.420507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.420512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.420517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.431420 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.431443 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.431462 LLDP, length 82 [|LLDP] 12:24:19.431464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0754 a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.431466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.431472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.431475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.431479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.431490 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.431497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.431506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.431509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.431512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.431516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.431521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.439678 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.439701 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.439720 LLDP, length 82 [|LLDP] 12:24:19.439722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075a f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.439724 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.439729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.439740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.439743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.439745 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.439750 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.439762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.439766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.439779 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.439784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.439789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.450690 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.450716 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.450737 LLDP, length 82 [|LLDP] 12:24:19.450739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0763 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.450741 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.450746 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.450750 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.450753 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.450759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.450769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.450772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.450774 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.450786 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.450791 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.450795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.458946 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.458969 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.458988 LLDP, length 82 [|LLDP] 12:24:19.458989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0769 a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.458992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.458997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.459001 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.459004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.459016 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.459022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.459033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.459036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.459038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.459042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.459047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.469959 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.469982 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.470003 LLDP, length 82 [|LLDP] 12:24:19.470004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0772 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.470006 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.470012 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.470017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.470028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.470031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.470033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.470037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.470041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.470053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.470058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.470062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.480967 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.480991 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.481009 LLDP, length 82 [|LLDP] 12:24:19.481011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077a 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.481013 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.481019 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.481023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.481026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.481037 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.481043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.481053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.481056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.481059 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.481063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.481068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.489224 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.489247 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.489267 LLDP, length 82 [|LLDP] 12:24:19.489268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0780 bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.489270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.489276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.489280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.489283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.489295 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.489301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.489310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.489313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.489315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.489320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.489324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.500234 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.500257 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.500277 LLDP, length 82 [|LLDP] 12:24:19.500278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0789 2562 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.500280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.500286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.500290 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.500295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.500305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.500308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.500310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.500314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.500325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.500331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.500335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.511255 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.511272 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.511291 LLDP, length 82 [|LLDP] 12:24:19.511293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0791 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.511295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.511300 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.511304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.511308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.511319 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.511325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.511344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.511349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.511351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.511357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.511361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.519504 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.519528 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.519548 LLDP, length 82 [|LLDP] 12:24:19.519549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0797 d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.519551 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.519557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.519567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.519570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.519572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.519577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.519580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.519584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.519596 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.519601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.519606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.530512 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.530535 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.530555 LLDP, length 82 [|LLDP] 12:24:19.530557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a0 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.530558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.530565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.530568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.530572 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.530577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.530587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.530590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.530592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.530604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.530608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.530613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.538781 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.538798 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.538818 LLDP, length 82 [|LLDP] 12:24:19.538819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a6 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.538821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.538827 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.538831 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.538835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.538846 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.538852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.538862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.538865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.538867 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.538871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.538876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.549781 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.549804 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.549824 LLDP, length 82 [|LLDP] 12:24:19.549826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ae f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.549828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.549833 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.549839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.549849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.549852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.549854 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.549858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.549861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.549873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.549878 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.549882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.560792 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.560818 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.560838 LLDP, length 82 [|LLDP] 12:24:19.560840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b7 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.560842 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.560847 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.560851 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.560855 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.560866 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.560872 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.560882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.560885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.560887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.560892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.560896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.569050 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.569074 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.569094 LLDP, length 82 [|LLDP] 12:24:19.569096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bd a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.569098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.569104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.569108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.569111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.569123 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.569129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.569138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.569142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.569144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.569148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.569153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.580061 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.580085 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.580105 LLDP, length 82 [|LLDP] 12:24:19.580106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c6 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.580108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.580114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.580118 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.580123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.580133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.580136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.580138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.580142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.580154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.580159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.580163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.591070 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.591093 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.591112 LLDP, length 82 [|LLDP] 12:24:19.591114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ce 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.591115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.591121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.591125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.591129 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.591140 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.591146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.591155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.591158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.591160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.591164 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.591169 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.599327 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.599356 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.599377 LLDP, length 82 [|LLDP] 12:24:19.599379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d4 bef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.599381 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.599387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.599397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.599400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.599403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.599408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.599411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.599415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.599427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.599432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.599436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.610338 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.610360 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.610380 LLDP, length 82 [|LLDP] 12:24:19.610381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07dd 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.610383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.610389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.610392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.610396 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.610401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.610411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.610414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.610416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.610428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.610433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.610438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.621351 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.621367 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.621387 LLDP, length 82 [|LLDP] 12:24:19.621388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e5 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.621390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.621396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.621399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.621403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.621415 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.621420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.621430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.621433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.621436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.621440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.621445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.629604 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.629627 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.629646 LLDP, length 82 [|LLDP] 12:24:19.629648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07eb d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.629650 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.629656 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.629661 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.629671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.629674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.629677 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.629680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.629684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.629696 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.629701 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.629706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.640616 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.640639 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.640657 LLDP, length 82 [|LLDP] 12:24:19.640659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f4 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.640661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.640667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.640670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.640674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.640685 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.640691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.640702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.640705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.640707 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.640711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.640716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.648871 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.648896 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.648916 LLDP, length 82 [|LLDP] 12:24:19.648918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fa 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.648919 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.648925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.648929 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.648932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.648944 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.648949 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.648959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.648962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.648964 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.648968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.648973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.659882 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.659907 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.659929 LLDP, length 82 [|LLDP] 12:24:19.659930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0802 f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.659932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.659938 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.659941 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.659947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.659957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.659960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.659962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.659966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.659978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.659983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.659988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.670896 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.670921 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.670941 LLDP, length 82 [|LLDP] 12:24:19.670943 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080b 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.670944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.670951 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.670954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.670958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.670970 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.670976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.670986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.670988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.670991 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.670995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.670999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.679151 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.679173 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.679193 LLDP, length 82 [|LLDP] 12:24:19.679195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0811 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.679197 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.679202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.679213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.679216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.679218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.679223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.679227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.679230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.679242 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.679247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.679252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.690165 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.690187 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.690209 LLDP, length 82 [|LLDP] 12:24:19.690211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081a 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.690213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.690219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.690222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.690226 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.690232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.690243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.690246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.690249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.690261 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.690266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.690271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.701182 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.701207 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.701229 LLDP, length 82 [|LLDP] 12:24:19.701231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0822 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.701233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.701239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.701242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.701246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.701258 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.701263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.701273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.701277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.701279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.701283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.701287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.709429 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.709453 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.709474 LLDP, length 82 [|LLDP] 12:24:19.709476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0828 bef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.709478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.709484 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.709490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.709500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.709503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.709505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.709509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.709512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.709525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.709530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.709534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.720439 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.720462 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.720482 LLDP, length 82 [|LLDP] 12:24:19.720483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0831 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.720485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.720491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.720495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.720498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.720510 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.720516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.720526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.720529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.720531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.720535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.720540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.731450 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.731474 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.731493 LLDP, length 82 [|LLDP] 12:24:19.731495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0839 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.731497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.731503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.731506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.731510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.731522 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.731528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.731539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.731542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.731544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.731548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.731553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.739733 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.739760 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.739790 LLDP, length 82 [|LLDP] 12:24:19.739792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083f d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.739794 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.739802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.739806 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.739812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.739824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.739827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.739829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.739833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.739847 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.739852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.739857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.750738 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.750765 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.750793 LLDP, length 82 [|LLDP] 12:24:19.750795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0848 3efa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.750798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.750805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.750809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.750813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.750826 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.750847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.750862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.750866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.750868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.750873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.750878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.759007 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.759036 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.759063 LLDP, length 82 [|LLDP] 12:24:19.759065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084e 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.759068 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.759075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.759090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.759095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.759097 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.759104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.759108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.759112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.759125 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.759131 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.759136 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.770006 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.770030 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.770060 LLDP, length 82 [|LLDP] 12:24:19.770062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0856 f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.770064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.770071 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.770075 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.770079 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.770085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.770096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.770100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.770102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.770115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.770120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.770125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.781001 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.781025 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.781047 LLDP, length 82 [|LLDP] 12:24:19.781049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085f 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.781051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.781057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.781060 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.781064 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.781076 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.781082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.781093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.781096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.781098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.781103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.781107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.789309 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.789355 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.789403 LLDP, length 82 [|LLDP] 12:24:19.789405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0865 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.789408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.789420 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.789428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.789446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.789450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.789452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.789457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.789461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.789475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.789482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.789489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.800294 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.800336 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.800372 LLDP, length 82 [|LLDP] 12:24:19.800374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086e 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.800376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.800387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.800391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.800394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.800407 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.800414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.800429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.800433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.800436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.800441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.800447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.811316 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.811367 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.811406 LLDP, length 82 [|LLDP] 12:24:19.811408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0876 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.811410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.811420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.811423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.811427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.811440 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.811446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.811461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.811465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.811467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.811472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.811478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.819567 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.819602 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.819638 LLDP, length 82 [|LLDP] 12:24:19.819640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087c bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.819643 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.819652 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.819656 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.819662 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.819677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.819680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.819682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.819686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.819699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.819705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.819710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.830563 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.830599 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.830638 LLDP, length 82 [|LLDP] 12:24:19.830641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0885 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.830643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.830652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.830656 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.830669 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.830676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.830692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.838836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.838850 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.838880 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.838920 LLDP, length 82 [|LLDP] 12:24:19.838922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088b 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.838925 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.838934 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.838941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.838959 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.838965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.838969 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.838974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.838979 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.838983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.838998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.849834 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.849876 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.849912 LLDP, length 82 [|LLDP] 12:24:19.849914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0893 d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.849917 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.849926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.849931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.849934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.849947 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.849954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.849971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.849977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.849981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.849983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.849989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.860865 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.860903 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.860941 LLDP, length 82 [|LLDP] 12:24:19.860944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089c 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.860946 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.860956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.860960 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.860964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.860977 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.860983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.860998 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.861004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.861008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.861010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.861016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.869090 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.869114 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.869138 LLDP, length 82 [|LLDP] 12:24:19.869140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a2 8bc7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.869142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.869149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.869153 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.869158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.869170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.869175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.869178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.869181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.869194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.869196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.869201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.880095 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.880120 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.880143 LLDP, length 82 [|LLDP] 12:24:19.880145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08aa f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.880147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.880153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.880157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.880160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.880172 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.880178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.880189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.880195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.880198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.880200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.880204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.891105 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.891130 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.891152 LLDP, length 82 [|LLDP] 12:24:19.891154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b3 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.891156 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.891162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.891172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.891178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.891181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.891186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.891190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.891193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.891205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.891208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.891213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.899365 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.899391 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.899411 LLDP, length 82 [|LLDP] 12:24:19.899414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b9 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.899415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.899421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.899425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.899429 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.899434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.899444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.899449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.899452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.899464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.899467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.899472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.910367 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.910392 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.910412 LLDP, length 82 [|LLDP] 12:24:19.910414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c2 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.910416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.910422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.910426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.910429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.910441 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.910447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.910457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.910462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.910466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.910468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.910472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.921377 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.921401 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.921422 LLDP, length 82 [|LLDP] 12:24:19.921424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ca 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.921426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.921432 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.921437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.921448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.921453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.921456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.921460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.921463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.921475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.921478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.921483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.929647 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.929666 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.929687 LLDP, length 82 [|LLDP] 12:24:19.929689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d0 bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.929691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.929697 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.929701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.929704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.929716 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.929722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.929732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.929737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.929740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.929743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.929747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.940647 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.940672 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.940693 LLDP, length 82 [|LLDP] 12:24:19.940695 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d9 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.940697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.940703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.940706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.940710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.940722 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.940728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.940738 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.940743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.940746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.940748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.940753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.948904 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.948929 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.948950 LLDP, length 82 [|LLDP] 12:24:19.948952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08df 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.948954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.948960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.948964 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.948969 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.948979 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.948984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.948987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.948991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.949003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.949006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.949011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.959915 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.959940 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.959962 LLDP, length 82 [|LLDP] 12:24:19.959963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e7 d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.959966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.959971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.959975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.959978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.959990 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.959996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.960006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.960011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.960014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.960016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.960021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.970925 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.970952 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.970975 LLDP, length 82 [|LLDP] 12:24:19.970976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f0 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.970978 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.970985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.970995 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.971000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.971003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.971009 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.971013 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.971016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.971028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.971031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.971036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.979189 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.979208 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.979229 LLDP, length 82 [|LLDP] 12:24:19.979231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f6 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.979233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.979239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.979243 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.979247 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.979252 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.979262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.979267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.979270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.979282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.979285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.979290 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:19.990192 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:19.990216 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.990237 LLDP, length 82 [|LLDP] 12:24:19.990239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fe f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:19.990241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:19.990247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:19.990250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:19.990254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:19.990266 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:19.990272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:19.990282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:19.990287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.990290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:19.990292 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:19.990297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.001203 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.001228 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.001248 LLDP, length 82 [|LLDP] 12:24:20.001250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0907 5895 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.001252 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.001258 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.001263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.001273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.001278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.001282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.001285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.001289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.001301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.001304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.001309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.009461 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.009485 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.009505 LLDP, length 82 [|LLDP] 12:24:20.009507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090d a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.009509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.009515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.009518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.009522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.009534 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.009540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.009550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.009554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.009557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.009559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.009564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.020468 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.020493 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.020513 LLDP, length 82 [|LLDP] 12:24:20.020515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0916 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.020517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.020523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.020526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.020530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.020542 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.020547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.020558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.020563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.020566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.020568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.020572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.028727 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.028751 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.028771 LLDP, length 82 [|LLDP] 12:24:20.028773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091c 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.028775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.028781 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.028785 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.028790 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.028800 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.028805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.028808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.028811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.028824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.028826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.028831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.039737 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.039762 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.039782 LLDP, length 82 [|LLDP] 12:24:20.039784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0924 befa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.039786 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.039792 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.039795 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.039799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.039811 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.039816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.039826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.039831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.039834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.039836 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.039840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.050749 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.050774 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.050795 LLDP, length 82 [|LLDP] 12:24:20.050796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092d 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.050798 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.050804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.050815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.050821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.050824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.050829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.050833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.050836 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.050848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.050851 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.050856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.059006 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.059030 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.059051 LLDP, length 82 [|LLDP] 12:24:20.059052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0933 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.059054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.059060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.059064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.059068 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.059073 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.059084 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.059089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.059092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.059105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.059108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.059113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.070017 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.070042 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.070063 LLDP, length 82 [|LLDP] 12:24:20.070065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093b d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.070067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.070073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.070077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.070081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.070093 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.070099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.070109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.070114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.070117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.070119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.070123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.081030 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.081057 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.081077 LLDP, length 82 [|LLDP] 12:24:20.081079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0944 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.081081 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.081087 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.081092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.081102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.081107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.081110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.081114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.081118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.081130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.081132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.081138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.089284 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.089309 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.089331 LLDP, length 82 [|LLDP] 12:24:20.089332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094a 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.089334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.089340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.089344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.089347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.089359 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.089365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.089375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.089381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.089383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.089385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.089390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.100295 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.100320 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.100340 LLDP, length 82 [|LLDP] 12:24:20.100342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0952 f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.100343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.100350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.100354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.100357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.100369 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.100375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.100385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.100389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.100392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.100394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.100399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.111305 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.111330 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.111357 LLDP, length 82 [|LLDP] 12:24:20.111359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095b 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.111361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.111368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.111372 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.111377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.111388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.111392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.111395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.111399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.111412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.111414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.111419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.119562 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.119586 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.119607 LLDP, length 82 [|LLDP] 12:24:20.119608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0961 a562 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.119610 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.119616 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.119620 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.119624 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.119635 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.119641 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.119651 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.119656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.119659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.119661 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.119665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.130574 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.130598 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.130619 LLDP, length 82 [|LLDP] 12:24:20.130621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096a 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.130623 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.130629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.130640 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.130645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.130648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.130653 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.130657 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.130661 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.130673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.130676 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.130681 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.138829 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.138853 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.138873 LLDP, length 82 [|LLDP] 12:24:20.138875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0970 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.138877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.138883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.138887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.138890 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.138895 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.138905 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.138910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.138913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.138925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.138928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.138933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.149852 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.149870 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.149890 LLDP, length 82 [|LLDP] 12:24:20.149892 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0978 bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.149893 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.149899 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.149903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.149907 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.149919 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.149924 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.149934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.149939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.149942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.149944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.149949 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.160851 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.160868 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.160889 LLDP, length 82 [|LLDP] 12:24:20.160890 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0981 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.160892 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.160899 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.160904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.160914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.160919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.160922 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.160926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.160929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.160942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.160945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.160950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.169101 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.169124 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.169143 LLDP, length 82 [|LLDP] 12:24:20.169145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0987 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.169147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.169152 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.169156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.169160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.169171 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.169177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.169187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.169192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.169194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.169196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.169201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.180112 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.180132 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.180150 LLDP, length 82 [|LLDP] 12:24:20.180151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098f d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.180153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.180159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.180162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.180166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.180178 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.180183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.180204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.180210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.180213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.180215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.180219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.191125 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.191145 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.191162 LLDP, length 82 [|LLDP] 12:24:20.191163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0998 3ef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.191165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.191171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.191175 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.191180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.191189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.191194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.191196 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.191200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.191212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.191215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.191220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.199385 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.199404 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.199421 LLDP, length 82 [|LLDP] 12:24:20.199423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099e 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.199425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.199431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.199434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.199438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.199449 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.199455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.199464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.199468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.199471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.199473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.199478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.210390 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.210409 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.210425 LLDP, length 82 [|LLDP] 12:24:20.210427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a6 f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.210429 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.210434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.210443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.210448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.210451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.210455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.210459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.210463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.210474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.210477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.210482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.221399 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.221417 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.221434 LLDP, length 82 [|LLDP] 12:24:20.221435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09af 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.221437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.221442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.221446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.221449 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.221454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.221464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.221468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.221471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.221482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.221485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.221490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.229644 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.229656 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.229672 LLDP, length 82 [|LLDP] 12:24:20.229673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b5 a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.229675 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.229681 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.229685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.229696 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.229702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.229710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.240667 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.240685 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.240701 LLDP, length 82 [|LLDP] 12:24:20.240703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09be 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.240704 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.240709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.240713 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.240718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.240727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.240729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.240731 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.240736 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.240747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.240752 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.240757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.248924 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.248942 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.248958 LLDP, length 82 [|LLDP] 12:24:20.248959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c4 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.248961 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.248966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.248970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.248974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.248985 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.248991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.249000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.249003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.249004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.249009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.249014 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.259934 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.259953 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.259969 LLDP, length 82 [|LLDP] 12:24:20.259971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09cc bef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.259972 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.259978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.259987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.259990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.259992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.259997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.260000 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.260004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.260015 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.260020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.260025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.270944 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.270963 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.270979 LLDP, length 82 [|LLDP] 12:24:20.270980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d5 2559 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.270983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.270988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.270992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.270995 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.271000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.271010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.271012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.271015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.271027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.271031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.271036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.279202 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.279219 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.279235 LLDP, length 82 [|LLDP] 12:24:20.279236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09db 7226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.279238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.279243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.279247 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.279250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.279262 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.279268 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.279277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.279280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.279282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.279286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.279291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.290214 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.290232 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.290249 LLDP, length 82 [|LLDP] 12:24:20.290250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e3 d891 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.290252 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.290257 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.290262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.290272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.290274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.290277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.290280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.290284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.290296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.290301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.290306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.301222 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.301241 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.301258 LLDP, length 82 [|LLDP] 12:24:20.301259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ec 3ef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.301261 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.301266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.301270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.301274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.301285 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.301291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.301300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.301303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.301305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.301309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.301314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.309484 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.309503 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.309518 LLDP, length 82 [|LLDP] 12:24:20.309520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f2 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.309522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.309527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.309531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.309535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.309546 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.309551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.309560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.309563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.309565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.309570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.309574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.320491 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.320511 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.320527 LLDP, length 82 [|LLDP] 12:24:20.320529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fa f226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.320531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.320536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.320540 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.320544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.320553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.320556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.320559 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.320562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.320574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.320579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.320583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.328747 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.328766 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.328781 LLDP, length 82 [|LLDP] 12:24:20.328783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a01 3ef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.328785 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.328790 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.328793 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.328797 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.328809 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.328814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.328823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.328825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.328828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.328832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.328836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.339757 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.339776 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.339793 LLDP, length 82 [|LLDP] 12:24:20.339794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a09 a559 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.339796 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.339802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.339811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.339814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.339816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.339820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.339824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.339828 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.339839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.339844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.339848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.350767 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.350785 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.350802 LLDP, length 82 [|LLDP] 12:24:20.350804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a12 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.350805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.350810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.350814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.350818 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.350823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.350832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.350835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.350837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.350849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.350854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.350858 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.359024 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.359042 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.359057 LLDP, length 82 [|LLDP] 12:24:20.359058 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a18 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.359060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.359065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.359069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.359072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.359083 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.359089 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.359098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.359100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.359102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.359107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.359111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.370036 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.370055 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.370072 LLDP, length 82 [|LLDP] 12:24:20.370074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a20 bef9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.370075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.370081 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.370086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.370095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.370097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.370100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.370104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.370108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.370120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.370124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.370129 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.381045 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.381070 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.381093 LLDP, length 82 [|LLDP] 12:24:20.381094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a29 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.381096 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.381102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.381106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.381109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.381122 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.381127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.381136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.381139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.381142 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.381146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.381150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.389306 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.389324 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.389341 LLDP, length 82 [|LLDP] 12:24:20.389343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2f 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.389345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.389351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.389355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.389358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.389370 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.389376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.389385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.389388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.389390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.389395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.389399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.400315 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.400337 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.400359 LLDP, length 82 [|LLDP] 12:24:20.400361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a37 d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.400363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.400368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.400372 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.400377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.400386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.400389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.400391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.400395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.400407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.400412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.400416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.411324 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.411351 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.411372 LLDP, length 82 [|LLDP] 12:24:20.411374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a40 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.411376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.411382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.411385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.411389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.411401 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.411407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.411416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.411418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.411421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.411425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.411430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.419584 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.419604 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.419621 LLDP, length 82 [|LLDP] 12:24:20.419623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a46 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.419625 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.419630 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.419640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.419643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.419645 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.419650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.419653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.419657 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.419669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.419674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.419678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.430593 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.430612 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.430629 LLDP, length 82 [|LLDP] 12:24:20.430630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4e f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.430633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.430638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.430642 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.430645 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.430651 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.430660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.430662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.430665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.430677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.430681 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.430686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.438850 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.438869 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.438886 LLDP, length 82 [|LLDP] 12:24:20.438888 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a55 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.438889 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.438894 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.438898 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.438902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.438913 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.438918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.438927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.438930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.438932 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.438937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.438941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.449860 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.449878 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.449896 LLDP, length 82 [|LLDP] 12:24:20.449897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5d a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.449899 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.449904 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.449909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.449918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.449921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.449923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.449927 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.449931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.449942 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.449947 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.449951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.460871 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.460889 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.460907 LLDP, length 82 [|LLDP] 12:24:20.460909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a66 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.460910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.460915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.460919 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.460923 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.460935 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.460940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.460949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.460952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.460954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.460959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.460964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.469129 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.469149 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.469165 LLDP, length 82 [|LLDP] 12:24:20.469167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6c 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.469168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.469174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.469177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.469181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.469192 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.469198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.469207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.469210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.469212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.469216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.469221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.480138 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.480157 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.480174 LLDP, length 82 [|LLDP] 12:24:20.480176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a74 bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.480178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.480182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.480187 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.480191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.480200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.480203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.480206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.480209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.480221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.480226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.480230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.491149 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.491169 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.491185 LLDP, length 82 [|LLDP] 12:24:20.491186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7d 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.491188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.491193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.491197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.491200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.491211 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.491217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.491226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.491229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.491231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.491236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.491240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.499406 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.499424 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.499441 LLDP, length 82 [|LLDP] 12:24:20.499442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a83 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.499445 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.499450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.499459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.499462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.499464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.499469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.499472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.499476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.499487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.499493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.499497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.510416 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.510434 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.510451 LLDP, length 82 [|LLDP] 12:24:20.510453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8b d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.510454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.510460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.510463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.510467 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.510472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.510481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.510484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.510486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.510497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.510502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.510506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.518672 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.518690 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.518706 LLDP, length 82 [|LLDP] 12:24:20.518708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a92 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.518710 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.518715 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.518719 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.518722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.518733 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.518738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.518747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.518750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.518752 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.518756 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.518761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.529687 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.529706 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.529722 LLDP, length 82 [|LLDP] 12:24:20.529724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9a 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.529726 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.529731 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.529736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.529745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.529748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.529750 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.529754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.529757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.529769 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.529774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.529778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.540695 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.540714 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.540730 LLDP, length 82 [|LLDP] 12:24:20.540732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa2 f22b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.540733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.540738 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.540742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.540746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.540757 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.540762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.540771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.540774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.540776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.540780 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.540785 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.548956 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.548975 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.548991 LLDP, length 82 [|LLDP] 12:24:20.548992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa9 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.548994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.548999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.549003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.549007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.549018 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.549024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.549033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.549035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.549038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.549042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.549047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.559964 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.559982 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.560000 LLDP, length 82 [|LLDP] 12:24:20.560001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab1 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.560003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.560008 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.560012 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.560017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.560026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.560029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.560031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.560035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.560047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.560052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.560056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.570972 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.570991 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.571006 LLDP, length 82 [|LLDP] 12:24:20.571008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aba 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.571010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.571015 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.571019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.571023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.571034 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.571039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.571048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.571051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.571053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.571058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.571062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.579229 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.579247 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.579262 LLDP, length 82 [|LLDP] 12:24:20.579264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac0 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.579266 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.579271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.579280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.579283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.579285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.579289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.579293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.579297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.579309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.579313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.579318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.590242 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.590262 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.590279 LLDP, length 82 [|LLDP] 12:24:20.590280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac8 bef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.590282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.590288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.590291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.590295 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.590300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.590309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.590311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.590314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.590325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.590330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.590335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.601253 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.601272 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.601288 LLDP, length 82 [|LLDP] 12:24:20.601290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad1 255a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.601292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.601297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.601301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.601304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.601316 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.601321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.601330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.601333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.601335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.601340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.601345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.609512 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.609525 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.609541 LLDP, length 82 [|LLDP] 12:24:20.609543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad7 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.609545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.609550 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.609555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.609564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.609567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.609569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.609572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.609576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.609588 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.609593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.609597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.620519 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.620537 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.620553 LLDP, length 82 [|LLDP] 12:24:20.620555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0adf d895 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.620556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.620562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.620566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.620569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.620592 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.620599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.620609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.620612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.620614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.620618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.620623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.628811 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.628846 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.628870 LLDP, length 82 [|LLDP] 12:24:20.628872 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae6 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.628874 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.628883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.628887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.628891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.628903 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.628909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.628923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.628926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.628928 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.628933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.628938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.639796 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.639819 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.639841 LLDP, length 82 [|LLDP] 12:24:20.639843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aee 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.639845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.639851 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.639855 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.639860 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.639872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.639874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.639877 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.639881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.639892 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.639897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.639902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.650802 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.650827 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.650847 LLDP, length 82 [|LLDP] 12:24:20.650848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af6 f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.650851 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.650856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.650860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.650863 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.650875 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.650881 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.650891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.650894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.650896 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.650901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.650906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.659062 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.659084 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.659104 LLDP, length 82 [|LLDP] 12:24:20.659105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afd 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.659107 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.659112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.659123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.659126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.659128 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.659134 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.659137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.659141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.659153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.659158 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.659162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.670071 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.670093 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.670112 LLDP, length 82 [|LLDP] 12:24:20.670114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b05 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.670116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.670122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.670125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.670129 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.670134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.670149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.670152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.670155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.670166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.670171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.670176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.681080 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.681102 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.681121 LLDP, length 82 [|LLDP] 12:24:20.681123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0e 0bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.681125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.681131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.681134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.681138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.681149 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.681154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.681164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.681167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.681169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.681173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.681178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.689341 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.689365 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.689385 LLDP, length 82 [|LLDP] 12:24:20.689387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b14 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.689389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.689395 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.689400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.689410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.689413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.689415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.689419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.689422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.689434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.689439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.689444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.700347 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.700372 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.700395 LLDP, length 82 [|LLDP] 12:24:20.700397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1c bef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.700399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.700404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.700408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.700412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.700424 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.700429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.700440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.700443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.700445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.700450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.700454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.711367 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.711390 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.711411 LLDP, length 82 [|LLDP] 12:24:20.711413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b25 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.711415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.711420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.711424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.711428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.711439 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.711445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.711455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.711458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.711461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.711465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.711469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.719618 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.719643 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.719664 LLDP, length 82 [|LLDP] 12:24:20.719666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2b 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.719668 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.719674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.719677 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.719683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.719693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.719696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.719698 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.719702 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.719714 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.719719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.719724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.730629 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.730652 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.730672 LLDP, length 82 [|LLDP] 12:24:20.730673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b33 d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.730675 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.730681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.730684 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.730688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.730699 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.730705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.730715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.730718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.730720 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.730724 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.730729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.738883 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.738905 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.738924 LLDP, length 82 [|LLDP] 12:24:20.738926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3a 2561 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.738927 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.738933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.738943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.738946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.738948 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.738953 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.738956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.738960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.738971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.738976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.738981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.749892 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.749914 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.749934 LLDP, length 82 [|LLDP] 12:24:20.749935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b42 8bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.749937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.749943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.749946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.749950 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.749955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.749965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.749968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.749970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.749981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.749986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.749990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.760903 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.760925 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.760944 LLDP, length 82 [|LLDP] 12:24:20.760947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4a f228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.760948 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.760954 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.760958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.760961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.760973 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.760978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.760988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.760991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.760993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.760997 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.761002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.769183 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.769206 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.769228 LLDP, length 82 [|LLDP] 12:24:20.769230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b51 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.769232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.769239 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.769245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.769255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.769258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.769260 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.769264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.769268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.769280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.769285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.769290 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.780176 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.780202 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.780223 LLDP, length 82 [|LLDP] 12:24:20.780224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b59 a55b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.780226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.780232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.780236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.780239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.780251 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.780257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.780267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.780270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.780272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.780277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.780282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.791207 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.791234 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.791264 LLDP, length 82 [|LLDP] 12:24:20.791266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b62 0bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.791268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.791275 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.791279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.791283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.791295 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.791301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.791314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.791317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.791320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.791324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.791329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.799454 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.799476 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.799501 LLDP, length 82 [|LLDP] 12:24:20.799503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b68 588f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.799505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.799511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.799515 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.799521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.799531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.799534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.799537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.799541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.799552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.799558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.799563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.810456 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.810481 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.810501 LLDP, length 82 [|LLDP] 12:24:20.810503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b70 bef5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.810505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.810511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.810515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.810518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.810530 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.810535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.810546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.810549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.810551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.810555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.810560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.818709 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.818733 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.818755 LLDP, length 82 [|LLDP] 12:24:20.818757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b77 0bc2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.818759 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.818764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.818774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.818778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.818781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.818786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.818790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.818793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.818805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.818810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.818815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.829722 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.829743 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.829761 LLDP, length 82 [|LLDP] 12:24:20.829763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7f 7228 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.829765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.829770 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.829774 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.829777 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.829782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.829791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.829794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.829796 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.829808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.829813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.829818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.840724 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.840744 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.840762 LLDP, length 82 [|LLDP] 12:24:20.840764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b87 d88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.840766 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.840771 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.840775 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.840778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.840790 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.840795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.840804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.840807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.840809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.840814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.840819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.848987 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.849007 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.849025 LLDP, length 82 [|LLDP] 12:24:20.849027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8e 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.849029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.849034 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.849040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.849049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.849052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.849054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.849058 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.849062 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.849073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.849084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.849089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.860011 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.860033 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.860057 LLDP, length 82 [|LLDP] 12:24:20.860059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b96 8bc1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.860061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.860068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.860072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.860075 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.860088 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.860095 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.860106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.860110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.860112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.860116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.860121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.871049 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.871089 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.871127 LLDP, length 82 [|LLDP] 12:24:20.871130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9e f22e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.871132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.871142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.871146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.871150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.871161 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.871168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.871183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.871187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.871189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.871195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.871200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.879277 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.879309 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.879334 LLDP, length 82 [|LLDP] 12:24:20.879343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba5 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.879345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.879352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.879356 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.879362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.879374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.879377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.879379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.879383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.879396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.879401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.879406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.890299 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.890325 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.890353 LLDP, length 82 [|LLDP] 12:24:20.890354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bad a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.890356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.890364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.890368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.890372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.890384 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.890390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.890402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.890405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.890407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.890412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.890417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.901291 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.901318 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.901340 LLDP, length 82 [|LLDP] 12:24:20.901342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb6 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.901344 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.901349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.901360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.901364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.901366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.901371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.901375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.901378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.901390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.901395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.901400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.909543 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.909568 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.909590 LLDP, length 82 [|LLDP] 12:24:20.909592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbc 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.909594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.909600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.909604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.909607 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.909612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.909623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.909626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.909628 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.909639 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.909644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.909649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.920572 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.920610 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.920643 LLDP, length 82 [|LLDP] 12:24:20.920645 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc4 bef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.920648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.920656 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.920660 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.920663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.920675 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.920682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.920694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.920697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.920699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.920704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.920710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.928817 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.928845 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.928869 LLDP, length 82 [|LLDP] 12:24:20.928871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcb 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.928873 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.928879 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.928885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.928896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.928899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.928901 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.928905 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.928909 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.928920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.928925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.928930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.939822 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.939846 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.939867 LLDP, length 82 [|LLDP] 12:24:20.939869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd3 7226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.939871 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.939876 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.939880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.939883 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.939896 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.939901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.939912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.939915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.939917 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.939922 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.939927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.950835 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.950857 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.950878 LLDP, length 82 [|LLDP] 12:24:20.950880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdb d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.950882 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.950888 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.950892 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.950895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.950907 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.950912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.950923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.950926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.950929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.950933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.950938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.959089 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.959113 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.959133 LLDP, length 82 [|LLDP] 12:24:20.959135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be2 2559 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.959137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.959142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.959146 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.959151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.959161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.959164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.959166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.959170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.959181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.959186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.959191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.970099 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.970122 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.970143 LLDP, length 82 [|LLDP] 12:24:20.970145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bea 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.970147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.970152 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.970156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.970159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.970171 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.970176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.970186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.970190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.970192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.970196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.970201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.981111 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.981135 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.981154 LLDP, length 82 [|LLDP] 12:24:20.981156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf2 f226 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.981158 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.981163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.981174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.981177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.981180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.981185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.981188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.981192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.981203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.981208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.981213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:20.989368 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:20.989391 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.989410 LLDP, length 82 [|LLDP] 12:24:20.989412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf9 3efa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:20.989414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:20.989419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:20.989423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:20.989426 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:20.989431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:20.989442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.989445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:20.989447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:20.989458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:20.989464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:20.989468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.000379 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.000401 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.000422 LLDP, length 82 [|LLDP] 12:24:21.000423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c01 a55a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.000425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.000431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.000435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.000438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.000450 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.000455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.000466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.000469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.000471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.000475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.000480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.011397 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.011424 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.011444 LLDP, length 82 [|LLDP] 12:24:21.011446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0a 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.011448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.011454 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.011459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.011470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.011473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.011475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.011479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.011482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.011494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.011499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.011504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.019649 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.019672 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.019693 LLDP, length 82 [|LLDP] 12:24:21.019695 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c10 588d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.019697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.019703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.019706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.019710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.019721 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.019727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.019737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.019740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.019743 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.019747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.019751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.030659 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.030683 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.030703 LLDP, length 82 [|LLDP] 12:24:21.030704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c18 bef3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.030706 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.030712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.030716 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.030719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.030731 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.030737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.030747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.030750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.030752 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.030756 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.030761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.038917 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.038940 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.038959 LLDP, length 82 [|LLDP] 12:24:21.038961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1f 0bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.038963 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.038968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.038972 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.038977 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.038987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.038990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.038992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.038996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.039008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.039013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.039017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.049939 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.049956 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.049977 LLDP, length 82 [|LLDP] 12:24:21.049978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c27 7227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.049980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.049986 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.049990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.049993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.050004 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.050011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.050021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.050024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.050026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.050030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.050035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.060936 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.060959 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.060979 LLDP, length 82 [|LLDP] 12:24:21.060980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2f d88d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.060982 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.060987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.060997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.061001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.061003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.061008 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.061012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.061015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.061027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.061032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.061036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.069193 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.069217 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.069236 LLDP, length 82 [|LLDP] 12:24:21.069238 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c36 255b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.069240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.069245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.069249 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.069253 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.069258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.069268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.069271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.069273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.069285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.069290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.069294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.080201 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.080224 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.080243 LLDP, length 82 [|LLDP] 12:24:21.080245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3e 8bc0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.080247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.080253 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.080256 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.080260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.080271 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.080277 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.080287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.080290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.080292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.080296 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.080301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.091212 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.091234 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.091254 LLDP, length 82 [|LLDP] 12:24:21.091256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c46 f227 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.091258 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.091263 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.091269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.091279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.091282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.091284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.091288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.091291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.091303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.091308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.091312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.099471 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.099495 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.099514 LLDP, length 82 [|LLDP] 12:24:21.099516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4d 3ef4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.099518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.099524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.099528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.099531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.099542 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.099548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.099559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.099561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.099564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.099568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.099573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.110481 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.110505 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.110525 LLDP, length 82 [|LLDP] 12:24:21.110527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c55 a57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.110529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.110535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.110538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.110542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.110554 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.110559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.110569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.110572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.110575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.110579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.110584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.118740 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.118764 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.118783 LLDP, length 82 [|LLDP] 12:24:21.118785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5b f248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.118787 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.118792 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.118796 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.118802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.118813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.118815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.118817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.118821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.118833 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.118838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.118842 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.129753 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.129777 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.129797 LLDP, length 82 [|LLDP] 12:24:21.129799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c64 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.129801 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.129807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.129810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.129814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.129825 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.129831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.129841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.129844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.129846 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.129850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.129855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.140761 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.140784 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.140803 LLDP, length 82 [|LLDP] 12:24:21.140805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6c bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.140807 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.140812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.140822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.140825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.140828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.140832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.140836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.140840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.140851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.140856 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.140861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.149017 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.149039 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.149058 LLDP, length 82 [|LLDP] 12:24:21.149060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c73 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.149062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.149068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.149072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.149076 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.149081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.149091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.149094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.149096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.149108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.149113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.149118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.160036 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.160052 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.160073 LLDP, length 82 [|LLDP] 12:24:21.160074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7b 724f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.160076 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.160082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.160086 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.160089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.160100 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.160106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.160116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.160119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.160121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.160126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.160130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.171039 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.171062 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.171082 LLDP, length 82 [|LLDP] 12:24:21.171084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c83 d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.171085 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.171091 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.171097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.171107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.171110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.171112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.171116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.171120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.171131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.171136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.171141 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.179294 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.179317 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.179344 LLDP, length 82 [|LLDP] 12:24:21.179346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8a 257b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.179348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.179354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.179358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.179361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.179374 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.179380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.179404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.179407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.179410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.179414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.179419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.190307 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.190330 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.190350 LLDP, length 82 [|LLDP] 12:24:21.190351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c92 8be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.190353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.190359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.190363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.190366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.190378 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.190384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.190394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.190397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.190399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.190404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.190408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.201314 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.201338 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.201357 LLDP, length 82 [|LLDP] 12:24:21.201359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9a f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.201361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.201366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.201370 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.201376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.201386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.201389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.201391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.201395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.201407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.201412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.201417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.209573 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.209596 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.209617 LLDP, length 82 [|LLDP] 12:24:21.209619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca1 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.209620 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.209626 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.209629 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.209633 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.209645 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.209650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.209660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.209663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.209665 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.209670 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.209674 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.220585 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.220608 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.220628 LLDP, length 82 [|LLDP] 12:24:21.220630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca9 a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.220632 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.220637 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.220647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.220651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.220653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.220657 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.220661 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.220664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.220676 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.220681 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.220685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.228851 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.228869 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.228889 LLDP, length 82 [|LLDP] 12:24:21.228891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0caf f248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.228893 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.228899 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.228903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.228906 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.228912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.228923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.228926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.228928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.228940 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.228945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.228950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.239853 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.239876 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.239896 LLDP, length 82 [|LLDP] 12:24:21.239898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb8 58b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.239900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.239906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.239910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.239913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.239925 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.239930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.239941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.239943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.239946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.239950 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.239954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.250862 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.250885 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.250904 LLDP, length 82 [|LLDP] 12:24:21.250906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc0 bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.250908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.250913 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.250918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.250928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.250931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.250933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.250937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.250940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.250952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.250957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.250961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.259119 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.259142 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.259161 LLDP, length 82 [|LLDP] 12:24:21.259163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc7 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.259165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.259170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.259174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.259177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.259189 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.259194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.259204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.259207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.259209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.259213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.259218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.270130 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.270153 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.270173 LLDP, length 82 [|LLDP] 12:24:21.270174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccf 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.270176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.270183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.270186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.270190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.270202 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.270207 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.270217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.270220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.270222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.270227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.270231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.281140 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.281164 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.281183 LLDP, length 82 [|LLDP] 12:24:21.281185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd7 d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.281187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.281192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.281196 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.281201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.281211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.281214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.281216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.281219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.281231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.281236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.281241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.289399 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.289416 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.289435 LLDP, length 82 [|LLDP] 12:24:21.289436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cde 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.289438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.289444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.289447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.289451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.289463 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.289468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.289478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.289481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.289483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.289487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.289492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.300412 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.300429 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.300449 LLDP, length 82 [|LLDP] 12:24:21.300451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce6 8be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.300453 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.300458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.300468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.300471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.300473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.300478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.300482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.300485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.300497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.300502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.300507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.308665 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.308688 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.308708 LLDP, length 82 [|LLDP] 12:24:21.308709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cec d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.308711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.308717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.308721 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.308724 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.308730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.308740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.308743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.308745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.308757 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.308762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.308766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.319676 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.319700 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.319720 LLDP, length 82 [|LLDP] 12:24:21.319721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf5 3f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.319723 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.319729 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.319733 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.319736 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.319748 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.319754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.319764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.319767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.319769 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.319774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.319779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.330686 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.330709 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.330729 LLDP, length 82 [|LLDP] 12:24:21.330730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfd a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.330732 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.330738 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.330743 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.330754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.330757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.330759 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.330763 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.330766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.330780 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.330785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.330789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.338953 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.338969 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.338989 LLDP, length 82 [|LLDP] 12:24:21.338990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d03 f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.338992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.338998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.339002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.339005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.339017 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.339022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.339032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.339035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.339037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.339041 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.339045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.349966 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.349988 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.350012 LLDP, length 82 [|LLDP] 12:24:21.350014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0c 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.350016 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.350023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.350027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.350030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.350042 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.350048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.350059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.350062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.350065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.350069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.350074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.360965 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.360990 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.361010 LLDP, length 82 [|LLDP] 12:24:21.361012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d14 bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.361014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.361019 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.361023 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.361028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.361039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.361042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.361045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.361048 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.361060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.361065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.361070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.369223 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.369247 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.369267 LLDP, length 82 [|LLDP] 12:24:21.369268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1b 0be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.369270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.369276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.369280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.369283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.369295 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.369301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.369311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.369314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.369316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.369320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.369325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.380232 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.380256 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.380276 LLDP, length 82 [|LLDP] 12:24:21.380277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d23 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.380279 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.380284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.380294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.380298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.380300 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.380305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.380308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.380312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.380324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.380329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.380334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.391243 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.391266 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.391286 LLDP, length 82 [|LLDP] 12:24:21.391288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2b d8b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.391290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.391296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.391299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.391303 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.391308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.391318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.391321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.391323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.391345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.391351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.391356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.399501 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.399518 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.399538 LLDP, length 82 [|LLDP] 12:24:21.399540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d32 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.399542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.399548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.399552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.399555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.399567 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.399572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.399582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.399585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.399588 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.399592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.399596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.410517 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.410534 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.410554 LLDP, length 82 [|LLDP] 12:24:21.410555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3a 8bea 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.410557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.410563 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.410568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.410578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.410581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.410583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.410587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.410591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.410603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.410608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.410613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.418768 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.418791 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.418810 LLDP, length 82 [|LLDP] 12:24:21.418811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d40 d8b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.418813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.418819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.418822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.418826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.418838 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.418844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.418854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.418857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.418859 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.418863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.418868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.429779 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.429803 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.429823 LLDP, length 82 [|LLDP] 12:24:21.429825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d49 3f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.429827 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.429833 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.429837 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.429840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.429852 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.429857 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.429867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.429870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.429873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.429877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.429881 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.440790 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.440813 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.440833 LLDP, length 82 [|LLDP] 12:24:21.440835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d51 a57d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.440837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.440842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.440846 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.440851 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.440861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.440864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.440866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.440870 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.440882 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.440886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.440891 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.449046 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.449069 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.449088 LLDP, length 82 [|LLDP] 12:24:21.449090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d57 f24b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.449092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.449097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.449101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.449105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.449116 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.449122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.449132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.449135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.449137 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.449141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.449146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.460056 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.460080 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.460098 LLDP, length 82 [|LLDP] 12:24:21.460100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d60 58b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.460102 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.460107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.460118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.460122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.460124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.460129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.460132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.460136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.460148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.460153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.460157 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.471067 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.471093 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.471112 LLDP, length 82 [|LLDP] 12:24:21.471114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d68 bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.471115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.471121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.471125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.471129 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.471134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.471144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.471147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.471149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.471161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.471166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.471171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.479324 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.479354 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.479375 LLDP, length 82 [|LLDP] 12:24:21.479377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6f 0be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.479378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.479384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.479388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.479391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.479403 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.479409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.479419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.479434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.479437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.479442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.479448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.490368 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.490394 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.490419 LLDP, length 82 [|LLDP] 12:24:21.490421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d77 724a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.490423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.490432 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.490439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.490453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.490457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.490459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.490463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.490466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.490480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.490486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.490491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.501356 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.501378 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.501403 LLDP, length 82 [|LLDP] 12:24:21.501404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7f d8b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.501406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.501413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.501416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.501420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.501432 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.501438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.501449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.501452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.501455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.501460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.501465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.509607 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.509632 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.509654 LLDP, length 82 [|LLDP] 12:24:21.509655 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d86 257d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.509657 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.509663 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.509667 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.509671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.509682 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.509688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.509698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.509701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.509704 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.509708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.509713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.520614 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.520637 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.520657 LLDP, length 82 [|LLDP] 12:24:21.520659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8e 8be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.520661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.520666 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.520670 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.520675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.520685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.520688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.520691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.520695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.520707 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.520712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.520717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.528873 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.528898 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.528918 LLDP, length 82 [|LLDP] 12:24:21.528920 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d94 d8b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.528921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.528927 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.528931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.528935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.528947 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.528953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.528963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.528967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.528969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.528973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.528978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.539882 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.539909 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.539930 LLDP, length 82 [|LLDP] 12:24:21.539931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9d 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.539934 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.539939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.539949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.539953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.539955 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.539961 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.539965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.539968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.539980 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.539985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.539990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.550892 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.550916 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.550935 LLDP, length 82 [|LLDP] 12:24:21.550937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da5 a57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.550939 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.550944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.550948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.550952 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.550957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.550968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.550971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.550973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.550985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.550990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.550994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.559152 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.559175 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.559196 LLDP, length 82 [|LLDP] 12:24:21.559197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dab f248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.559199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.559204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.559208 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.559211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.559223 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.559229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.559239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.559242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.559244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.559249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.559254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.570159 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.570183 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.570202 LLDP, length 82 [|LLDP] 12:24:21.570204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db4 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.570206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.570212 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.570218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.570228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.570231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.570233 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.570237 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.570241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.570253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.570257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.570262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.581168 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.581190 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.581211 LLDP, length 82 [|LLDP] 12:24:21.581212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dbc bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.581214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.581220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.581224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.581227 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.581239 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.581244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.581254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.581257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.581259 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.581264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.581268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.589429 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.589452 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.589471 LLDP, length 82 [|LLDP] 12:24:21.589473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc3 0be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.589475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.589480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.589484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.589487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.589499 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.589504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.589514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.589517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.589519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.589523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.589528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.600434 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.600457 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.600477 LLDP, length 82 [|LLDP] 12:24:21.600478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dcb 7248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.600480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.600486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.600489 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.600494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.600504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.600507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.600509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.600513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.600525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.600530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.600534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.608693 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.608715 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.608735 LLDP, length 82 [|LLDP] 12:24:21.608737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd1 bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.608739 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.608745 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.608748 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.608752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.608764 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.608769 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.608779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.608782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.608784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.608788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.608793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.619707 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.619731 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.619750 LLDP, length 82 [|LLDP] 12:24:21.619752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dda 257b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.619754 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.619760 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.619770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.619773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.619775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.619781 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.619784 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.619788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.619800 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.619805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.619810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.630727 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.630746 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.630766 LLDP, length 82 [|LLDP] 12:24:21.630767 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de2 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.630769 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.630775 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.630779 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.630783 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.630788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.630798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.630801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.630803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.630816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.630821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.630825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.638973 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.638997 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.639017 LLDP, length 82 [|LLDP] 12:24:21.639019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de8 d8ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.639020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.639027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.639031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.639034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.639046 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.639052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.639063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.639066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.639068 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.639072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.639077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.649983 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.650010 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.650029 LLDP, length 82 [|LLDP] 12:24:21.650031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df1 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.650032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.650038 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.650044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.650054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.650057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.650060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.650063 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.650067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.650079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.650084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.650089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.660991 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.661015 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.661034 LLDP, length 82 [|LLDP] 12:24:21.661036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df9 a581 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.661038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.661044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.661047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.661051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.661062 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.661068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.661078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.661081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.661083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.661087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.661092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.669251 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.669274 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.669294 LLDP, length 82 [|LLDP] 12:24:21.669295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dff f248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.669297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.669303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.669307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.669310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.669322 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.669328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.669338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.669341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.669343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.669347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.669352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.680262 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.680287 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.680307 LLDP, length 82 [|LLDP] 12:24:21.680309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e08 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.680311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.680317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.680320 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.680325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.680336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.680339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.680341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.680345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.680357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.680362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.680366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.691274 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.691298 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.691318 LLDP, length 82 [|LLDP] 12:24:21.691319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e10 bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.691321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.691327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.691332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.691346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.691360 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.691366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.691376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.691379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.691381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.691386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.691390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.699542 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.699575 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.699602 LLDP, length 82 [|LLDP] 12:24:21.699604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e17 0be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.699607 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.699613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.699625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.699629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.699631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.699638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.699642 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.699645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.699658 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.699663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.699668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.710553 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.710577 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.710600 LLDP, length 82 [|LLDP] 12:24:21.710602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1f 7248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.710605 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.710611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.710615 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.710619 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.710624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.710635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.710638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.710640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.710653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.710658 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.710662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.718798 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.718823 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.718843 LLDP, length 82 [|LLDP] 12:24:21.718845 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e25 bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.718847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.718853 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.718857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.718860 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.718872 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.718877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.718888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.718891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.718893 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.718897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.718902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.729812 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.729837 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.729858 LLDP, length 82 [|LLDP] 12:24:21.729860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2e 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.729862 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.729868 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.729873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.729883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.729886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.729889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.729892 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.729896 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.729908 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.729913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.729917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.740818 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.740844 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.740865 LLDP, length 82 [|LLDP] 12:24:21.740866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e36 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.740869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.740875 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.740879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.740882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.740896 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.740902 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.740913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.740916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.740919 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.740923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.740928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.749079 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.749102 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.749122 LLDP, length 82 [|LLDP] 12:24:21.749124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3c d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.749126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.749131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.749135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.749139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.749150 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.749156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.749165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.749168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.749170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.749175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.749180 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.760084 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.760107 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.760127 LLDP, length 82 [|LLDP] 12:24:21.760129 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e45 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.760131 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.760136 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.760140 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.760145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.760155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.760159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.760161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.760165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.760177 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.760182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.760186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.771096 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.771120 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.771139 LLDP, length 82 [|LLDP] 12:24:21.771141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4d a57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.771143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.771149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.771153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.771156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.771168 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.771174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.771184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.771187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.771190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.771194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.771199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.779359 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.779382 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.779401 LLDP, length 82 [|LLDP] 12:24:21.779403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e53 f250 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.779405 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.779411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.779421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.779425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.779427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.779432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.779436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.779439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.779451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.779456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.779461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.790362 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.790384 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.790404 LLDP, length 82 [|LLDP] 12:24:21.790406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5c 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.790408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.790414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.790417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.790421 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.790426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.790436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.790439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.790441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.790453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.790458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.790463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.798634 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.798663 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.798686 LLDP, length 82 [|LLDP] 12:24:21.798688 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e62 a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.798690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.798696 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.798700 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.798704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.798716 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.798722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.798741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.798745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.798747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.798753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.798758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.809635 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.809660 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.809682 LLDP, length 82 [|LLDP] 12:24:21.809684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6b 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.809686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.809692 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.809697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.809707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.809710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.809712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.809716 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.809720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.809732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.809737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.809742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.820640 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.820662 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.820681 LLDP, length 82 [|LLDP] 12:24:21.820683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e73 7248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.820685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.820691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.820694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.820698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.820710 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.820715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.820726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.820729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.820731 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.820735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.820739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.828898 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.828920 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.828940 LLDP, length 82 [|LLDP] 12:24:21.828941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e79 bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.828943 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.828949 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.828953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.828956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.828968 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.828974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.828984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.828987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.828989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.828993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.828998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.839911 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.839934 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.839954 LLDP, length 82 [|LLDP] 12:24:21.839955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e82 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.839957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.839963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.839967 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.839972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.839983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.839986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.839988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.839992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.840004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.840009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.840013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.850919 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.850944 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.850963 LLDP, length 82 [|LLDP] 12:24:21.850965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8a 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.850967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.850972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.850976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.850980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.850991 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.850998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.851007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.851010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.851013 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.851017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.851021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.859178 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.859200 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.859219 LLDP, length 82 [|LLDP] 12:24:21.859221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e90 d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.859223 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.859228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.859238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.859242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.859244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.859249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.859252 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.859256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.859268 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.859273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.859277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.870187 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.870210 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.870229 LLDP, length 82 [|LLDP] 12:24:21.870231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e99 3f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.870233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.870238 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.870242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.870245 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.870251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.870261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.870264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.870266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.870277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.870283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.870287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.881197 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.881219 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.881237 LLDP, length 82 [|LLDP] 12:24:21.881239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea1 a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.881241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.881246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.881250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.881254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.881265 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.881271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.881281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.881284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.881286 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.881290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.881295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.889456 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.889479 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.889497 LLDP, length 82 [|LLDP] 12:24:21.889499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea7 f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.889501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.889507 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.889512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.889521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.889524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.889527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.889530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.889534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.889546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.889550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.889555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.900465 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.900488 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.900507 LLDP, length 82 [|LLDP] 12:24:21.900509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb0 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.900511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.900517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.900520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.900524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.900535 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.900541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.900551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.900554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.900556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.900560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.900566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.908721 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.908743 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.908763 LLDP, length 82 [|LLDP] 12:24:21.908765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb6 a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.908767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.908772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.908776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.908780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.908792 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.908797 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.908807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.908810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.908812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.908816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.908821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.919732 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.919754 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.919773 LLDP, length 82 [|LLDP] 12:24:21.919775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebf 0be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.919777 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.919782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.919786 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.919791 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.919801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.919804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.919806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.919810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.919821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.919826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.919830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.930742 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.930767 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.930789 LLDP, length 82 [|LLDP] 12:24:21.930791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec7 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.930793 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.930799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.930802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.930806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.930818 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.930824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.930835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.930838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.930840 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.930844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.930849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.939003 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.939026 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.939046 LLDP, length 82 [|LLDP] 12:24:21.939047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecd bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.939049 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.939055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.939065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.939068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.939070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.939075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.939078 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.939082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.939094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.939099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.939103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.950011 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.950034 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.950053 LLDP, length 82 [|LLDP] 12:24:21.950055 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed6 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.950057 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.950062 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.950066 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.950070 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.950075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.950085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.950088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.950090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.950102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.950107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.950111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.961022 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.961045 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.961063 LLDP, length 82 [|LLDP] 12:24:21.961065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ede 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.961067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.961073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.961076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.961080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.961091 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.961097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.961107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.961110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.961112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.961116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.961120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.969278 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.969299 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.969318 LLDP, length 82 [|LLDP] 12:24:21.969320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee4 d8b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.969322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.969327 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.969332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.969342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.969345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.969347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.969351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.969354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.969366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.969371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.969376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.980288 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.980311 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.980330 LLDP, length 82 [|LLDP] 12:24:21.980332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eed 3f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.980334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.980340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.980343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.980347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.980359 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.980364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.980374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.980377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.980379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.980384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.980388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.991298 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.991322 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.991351 LLDP, length 82 [|LLDP] 12:24:21.991352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef5 a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.991354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.991361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.991365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.991369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.991382 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.991387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.991397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.991400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.991402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.991406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.991411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:21.999557 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:21.999579 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.999599 LLDP, length 82 [|LLDP] 12:24:21.999601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efb f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:21.999603 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:21.999608 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:21.999612 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:21.999617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:21.999628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.999631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:21.999633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:21.999637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:21.999649 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:21.999654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:21.999658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.010571 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.010587 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.010606 LLDP, length 82 [|LLDP] 12:24:22.010608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f04 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.010610 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.010615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.010619 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.010623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.010635 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.010641 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.010651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.010654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.010656 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.010660 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.010665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.018830 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.018846 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.018864 LLDP, length 82 [|LLDP] 12:24:22.018866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0a a57d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.018867 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.018873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.018883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.018886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.018888 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.018893 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.018897 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.018900 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.018912 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.018917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.018921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.029836 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.029859 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.029878 LLDP, length 82 [|LLDP] 12:24:22.029879 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f13 0beb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.029881 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.029886 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.029890 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.029894 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.029899 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.029909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.029912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.029914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.029925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.029930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.029935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.040845 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.040867 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.040885 LLDP, length 82 [|LLDP] 12:24:22.040887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1b 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.040889 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.040895 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.040899 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.040902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.040914 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.040919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.040929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.040932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.040934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.040939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.040943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.049102 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.049126 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.049145 LLDP, length 82 [|LLDP] 12:24:22.049147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f21 bf17 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.049149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.049155 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.049160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.049170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.049172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.049174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.049178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.049181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.049193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.049198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.049203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.060110 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.060134 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.060153 LLDP, length 82 [|LLDP] 12:24:22.060155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2a 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.060157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.060163 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.060166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.060170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.060183 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.060189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.060199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.060202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.060204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.060209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.060213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.071126 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.071149 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.071167 LLDP, length 82 [|LLDP] 12:24:22.071169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f32 8be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.071171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.071176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.071180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.071184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.071195 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.071201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.071210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.071213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.071215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.071219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.071224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.079386 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.079409 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.079428 LLDP, length 82 [|LLDP] 12:24:22.079430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f38 d8b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.079432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.079438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.079441 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.079446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.079456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.079459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.079461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.079465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.079477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.079482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.079486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.090392 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.090414 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.090432 LLDP, length 82 [|LLDP] 12:24:22.090434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f41 3f17 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.090436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.090441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.090445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.090448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.090460 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.090466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.090475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.090478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.090480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.090485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.090489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.098647 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.098672 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.098691 LLDP, length 82 [|LLDP] 12:24:22.098692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f47 8be4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.098694 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.098699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.098709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.098712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.098714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.098720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.098723 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.098727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.098738 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.098743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.098748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.109676 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.109706 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.109731 LLDP, length 82 [|LLDP] 12:24:22.109733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4f f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.109735 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.109742 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.109746 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.109750 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.109755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.109766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.109769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.109771 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.109784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.109790 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.109794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.120670 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.120694 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.120714 LLDP, length 82 [|LLDP] 12:24:22.120716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f58 58b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.120718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.120724 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.120728 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.120732 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.120743 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.120749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.120759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.120762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.120764 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.120769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.120773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.128930 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.128951 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.128970 LLDP, length 82 [|LLDP] 12:24:22.128972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5e a57d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.128974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.128979 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.128985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.128995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.128998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.129000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.129004 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.129007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.129020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.129025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.129029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.139941 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.139963 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.139982 LLDP, length 82 [|LLDP] 12:24:22.139984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f67 0be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.139986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.139991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.139995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.139998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.140010 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.140016 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.140026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.140029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.140031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.140035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.140040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.150946 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.150970 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.150990 LLDP, length 82 [|LLDP] 12:24:22.150991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6f 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.150993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.150999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.151003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.151006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.151018 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.151024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.151034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.151036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.151038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.151043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.151047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.159204 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.159227 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.159247 LLDP, length 82 [|LLDP] 12:24:22.159249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f75 bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.159251 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.159257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.159261 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.159266 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.159276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.159279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.159281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.159285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.159297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.159302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.159306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.170217 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.170241 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.170260 LLDP, length 82 [|LLDP] 12:24:22.170262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7e 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.170264 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.170269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.170273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.170276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.170288 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.170293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.170303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.170306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.170308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.170312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.170317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.181227 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.181251 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.181271 LLDP, length 82 [|LLDP] 12:24:22.181272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f86 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.181274 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.181280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.181302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.181306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.181308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.181313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.181316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.181320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.181332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.181337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.181342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.189486 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.189509 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.189528 LLDP, length 82 [|LLDP] 12:24:22.189529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8c d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.189531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.189537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.189540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.189544 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.189549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.189559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.189562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.189564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.189576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.189581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.189585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.200494 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.200517 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.200536 LLDP, length 82 [|LLDP] 12:24:22.200538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f95 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.200540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.200545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.200549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.200552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.200564 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.200570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.200579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.200582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.200585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.200589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.200594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.208749 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.208771 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.208791 LLDP, length 82 [|LLDP] 12:24:22.208793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9b 8be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.208794 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.208800 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.208805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.208816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.208818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.208820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.208824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.208828 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.208839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.208844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.208849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.219761 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.219783 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.219801 LLDP, length 82 [|LLDP] 12:24:22.219803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa3 f248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.219805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.219811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.219814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.219818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.219829 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.219835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.219845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.219848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.219850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.219854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.219859 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.230773 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.230795 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.230814 LLDP, length 82 [|LLDP] 12:24:22.230815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fac 58ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.230817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.230823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.230826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.230830 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.230842 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.230847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.230857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.230860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.230862 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.230866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.230871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.239033 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.239056 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.239076 LLDP, length 82 [|LLDP] 12:24:22.239078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb2 a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.239080 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.239085 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.239089 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.239094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.239104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.239107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.239109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.239113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.239125 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.239130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.239134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.250040 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.250062 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.250081 LLDP, length 82 [|LLDP] 12:24:22.250082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbb 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.250084 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.250090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.250093 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.250097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.250108 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.250114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.250124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.250127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.250129 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.250134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.250138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.261050 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.261074 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.261093 LLDP, length 82 [|LLDP] 12:24:22.261095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc3 7248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.261097 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.261102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.261112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.261116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.261118 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.261123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.261127 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.261130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.261142 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.261147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.261152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.269309 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.269332 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.269350 LLDP, length 82 [|LLDP] 12:24:22.269351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc9 bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.269353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.269358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.269362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.269366 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.269371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.269381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.269384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.269386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.269398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.269403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.269408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.280317 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.280340 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.280359 LLDP, length 82 [|LLDP] 12:24:22.280361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd2 2583 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.280363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.280369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.280372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.280376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.280387 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.280393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.280403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.280406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.280408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.280412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.280417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.291330 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.291359 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.291378 LLDP, length 82 [|LLDP] 12:24:22.291379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fda 8be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.291381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.291386 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.291391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.291401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.291404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.291406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.291410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.291414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.291426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.291431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.291436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.299585 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.299607 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.299627 LLDP, length 82 [|LLDP] 12:24:22.299628 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe0 d8ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.299630 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.299636 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.299640 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.299644 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.299655 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.299661 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.299671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.299674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.299676 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.299680 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.299685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.310599 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.310622 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.310641 LLDP, length 82 [|LLDP] 12:24:22.310643 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe9 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.310644 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.310650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.310654 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.310658 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.310670 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.310676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.310685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.310688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.310691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.310695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.310700 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.318857 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.318879 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.318898 LLDP, length 82 [|LLDP] 12:24:22.318900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fef 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.318902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.318908 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.318911 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.318916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.318926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.318929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.318931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.318935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.318947 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.318952 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.318957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.329865 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.329887 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.329907 LLDP, length 82 [|LLDP] 12:24:22.329909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff7 f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.329910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.329916 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.329920 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.329924 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.329935 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.329941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.329951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.329954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.329956 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.329961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.329965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.340873 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.340895 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.340914 LLDP, length 82 [|LLDP] 12:24:22.340915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1000 58ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.340917 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.340923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.340932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.340935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.340938 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.340943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.340946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.340950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.340961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.340966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.340984 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.349161 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.349194 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.349219 LLDP, length 82 [|LLDP] 12:24:22.349221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1006 a57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.349223 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.349231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.349235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.349239 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.349245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.349258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.349262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.349265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.349277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.349283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.349289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.360166 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.360188 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.360212 LLDP, length 82 [|LLDP] 12:24:22.360214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100f 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.360216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.360223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.360227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.360231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.360243 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.360249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.360260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.360264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.360266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.360271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.360275 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.371158 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.371184 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.371204 LLDP, length 82 [|LLDP] 12:24:22.371206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1017 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.371208 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.371214 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.371219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.371229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.371232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.371235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.371238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.371242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.371254 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.371259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.371264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.379415 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.379439 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.379459 LLDP, length 82 [|LLDP] 12:24:22.379460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101d bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.379462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.379468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.379472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.379475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.379487 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.379493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.379503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.379506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.379509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.379514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.379518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.390424 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.390448 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.390467 LLDP, length 82 [|LLDP] 12:24:22.390468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1026 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.390470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.390476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.390480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.390484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.390496 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.390501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.390511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.390514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.390516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.390521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.390526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.398679 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.398702 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.398722 LLDP, length 82 [|LLDP] 12:24:22.398724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102c 724f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.398725 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.398731 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.398735 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.398740 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.398749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.398752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.398755 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.398758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.398771 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.398776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.398781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.409691 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.409714 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.409733 LLDP, length 82 [|LLDP] 12:24:22.409735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1034 d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.409737 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.409743 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.409746 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.409750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.409761 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.409767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.409777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.409780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.409783 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.409787 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.409791 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.420709 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.420726 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.420746 LLDP, length 82 [|LLDP] 12:24:22.420748 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103d 3f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.420750 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.420755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.420765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.420768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.420771 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.420776 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.420780 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.420783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.420795 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.420800 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.420805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.428957 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.428980 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.428999 LLDP, length 82 [|LLDP] 12:24:22.429001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1043 8be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.429003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.429008 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.429012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.429015 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.429021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.429031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.429034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.429036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.429048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.429053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.429058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.439968 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.439991 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.440010 LLDP, length 82 [|LLDP] 12:24:22.440012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104b f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.440014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.440020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.440023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.440027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.440038 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.440044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.440053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.440056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.440058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.440062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.440067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.450978 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.451002 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.451023 LLDP, length 82 [|LLDP] 12:24:22.451024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1054 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.451026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.451032 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.451037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.451047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.451049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.451052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.451055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.451059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.451071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.451076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.451081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.459234 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.459257 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.459278 LLDP, length 82 [|LLDP] 12:24:22.459280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105a a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.459282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.459288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.459292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.459295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.459307 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.459313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.459323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.459326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.459328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.459333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.459346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.470245 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.470270 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.470290 LLDP, length 82 [|LLDP] 12:24:22.470292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1063 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.470294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.470299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.470303 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.470307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.470318 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.470324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.470335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.470338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.470340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.470344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.470349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.481254 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.481277 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.481297 LLDP, length 82 [|LLDP] 12:24:22.481298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106b 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.481300 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.481306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.481310 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.481315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.481325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.481328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.481330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.481334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.481346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.481351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.481356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.489514 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.489538 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.489559 LLDP, length 82 [|LLDP] 12:24:22.489560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1071 bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.489562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.489568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.489572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.489575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.489587 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.489593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.489603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.489606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.489608 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.489612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.489616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.500527 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.500551 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.500571 LLDP, length 82 [|LLDP] 12:24:22.500573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107a 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.500574 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.500580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.500590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.500593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.500595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.500600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.500604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.500608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.500620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.500625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.500629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.508780 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.508802 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.508823 LLDP, length 82 [|LLDP] 12:24:22.508825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1080 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.508827 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.508832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.508836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.508839 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.508844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.508854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.508857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.508859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.508871 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.508877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.508881 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.519790 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.519813 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.519832 LLDP, length 82 [|LLDP] 12:24:22.519834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1088 d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.519836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.519842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.519845 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.519849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.519860 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.519866 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.519876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.519879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.519881 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.519885 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.519890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.530812 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.530829 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.530848 LLDP, length 82 [|LLDP] 12:24:22.530850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1091 3f1d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.530851 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.530857 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.530862 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.530872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.530876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.530878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.530882 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.530885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.530897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.530902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.530907 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.539061 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.539083 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.539103 LLDP, length 82 [|LLDP] 12:24:22.539105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1097 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.539107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.539113 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.539117 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.539120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.539132 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.539138 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.539147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.539150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.539153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.539157 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.539162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.550070 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.550093 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.550114 LLDP, length 82 [|LLDP] 12:24:22.550115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109f f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.550117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.550123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.550127 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.550130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.550142 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.550147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.550158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.550161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.550163 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.550167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.550172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.561083 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.561107 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.561126 LLDP, length 82 [|LLDP] 12:24:22.561127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a8 58b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.561129 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.561136 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.561140 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.561145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.561155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.561158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.561160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.561164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.561176 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.561181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.561185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.569337 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.569362 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.569382 LLDP, length 82 [|LLDP] 12:24:22.569384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ae a581 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.569386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.569391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.569395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.569399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.569410 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.569416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.569426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.569429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.569432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.569436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.569441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.580348 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.580371 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.580392 LLDP, length 82 [|LLDP] 12:24:22.580393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b7 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.580395 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.580401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.580411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.580414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.580417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.580421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.580425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.580429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.580441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.580446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.580451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.588605 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.588629 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.588649 LLDP, length 82 [|LLDP] 12:24:22.588651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bd 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.588653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.588659 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.588662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.588666 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.588671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.588682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.588685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.588687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.588699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.588704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.588708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.599615 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.599638 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.599657 LLDP, length 82 [|LLDP] 12:24:22.599658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c5 bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.599660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.599666 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.599670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.599674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.599685 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.599691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.599700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.599703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.599706 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.599710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.599715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.610628 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.610651 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.610670 LLDP, length 82 [|LLDP] 12:24:22.610672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ce 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.610674 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.610679 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.610684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.610694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.610697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.610699 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.610703 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.610707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.610718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.610723 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.610728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.618901 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.618926 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.618953 LLDP, length 82 [|LLDP] 12:24:22.618955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d4 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.618957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.618964 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.618968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.618972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.618984 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.618990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.619001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.619005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.619007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.619012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.619017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.629902 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.629930 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.629952 LLDP, length 82 [|LLDP] 12:24:22.629954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10dc d8b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.629956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.629962 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.629966 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.629969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.629981 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.629987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.629998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.630001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.630003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.630008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.630013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.640906 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.640930 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.640951 LLDP, length 82 [|LLDP] 12:24:22.640952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e5 3f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.640954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.640961 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.640965 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.640970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.640980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.640984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.640986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.640990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.641001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.641006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.641011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.649161 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.649184 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.649203 LLDP, length 82 [|LLDP] 12:24:22.649205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10eb 8bea 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.649207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.649212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.649216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.649219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.649231 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.649237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.649247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.649250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.649252 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.649256 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.649261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.660172 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.660196 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.660216 LLDP, length 82 [|LLDP] 12:24:22.660217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f3 f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.660219 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.660225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.660234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.660238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.660240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.660245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.660248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.660252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.660264 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.660269 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.660273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.671183 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.671207 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.671227 LLDP, length 82 [|LLDP] 12:24:22.671229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fc 58b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.671231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.671237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.671241 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.671244 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.671250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.671260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.671263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.671265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.671277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.671283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.671288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.679443 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.679468 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.679489 LLDP, length 82 [|LLDP] 12:24:22.679490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1102 a57d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.679492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.679498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.679502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.679505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.679517 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.679523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.679533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.679536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.679538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.679543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.679547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.690451 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.690475 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.690495 LLDP, length 82 [|LLDP] 12:24:22.690497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110b 0be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.690498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.690504 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.690510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.690520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.690523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.690525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.690528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.690532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.690544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.690549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.690554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.698707 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.698732 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.698751 LLDP, length 82 [|LLDP] 12:24:22.698752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1111 58b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.698754 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.698760 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.698764 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.698767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.698779 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.698785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.698795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.698798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.698800 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.698805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.698810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.709717 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.709742 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.709761 LLDP, length 82 [|LLDP] 12:24:22.709763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1119 bf16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.709765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.709770 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.709774 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.709778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.709789 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.709795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.709805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.709808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.709810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.709815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.709820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.720728 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.720752 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.720772 LLDP, length 82 [|LLDP] 12:24:22.720774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1122 257d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.720776 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.720781 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.720785 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.720790 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.720800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.720803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.720806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.720809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.720821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.720826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.720831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.728986 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.729009 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.729030 LLDP, length 82 [|LLDP] 12:24:22.729032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1128 724a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.729034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.729039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.729043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.729047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.729058 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.729064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.729074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.729077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.729079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.729084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.729088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.740008 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.740026 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.740046 LLDP, length 82 [|LLDP] 12:24:22.740047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1130 d8b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.740049 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.740055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.740065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.740068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.740070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.740075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.740079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.740082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.740094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.740099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.740104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.751007 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.751031 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.751051 LLDP, length 82 [|LLDP] 12:24:22.751052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1139 3f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.751055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.751060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.751064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.751067 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.751072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.751083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.751086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.751088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.751100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.751105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.751110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.759266 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.759292 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.759313 LLDP, length 82 [|LLDP] 12:24:22.759315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113f 8be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.759318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.759323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.759327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.759331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.759354 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.759361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.759373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.759376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.759378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.759383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.759387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.770294 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.770337 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.770367 LLDP, length 82 [|LLDP] 12:24:22.770369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1147 f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.770371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.770380 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.770386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.770399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.770402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.770405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.770409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.770413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.770425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.770432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.770436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.781295 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.781326 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.781353 LLDP, length 82 [|LLDP] 12:24:22.781355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1150 58b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.781357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.781364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.781369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.781372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.781385 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.781391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.781403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.781406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.781409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.781413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.781418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.789551 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.789576 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.789599 LLDP, length 82 [|LLDP] 12:24:22.789601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1156 a57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.789603 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.789609 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.789613 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.789617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.789628 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.789634 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.789645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.789648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.789651 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.789655 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.789660 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.800565 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.800581 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.800601 LLDP, length 82 [|LLDP] 12:24:22.800602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115f 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.800604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.800610 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.800614 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.800619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.800629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.800632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.800634 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.800639 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.800650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.800656 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.800661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.808811 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.808834 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.808853 LLDP, length 82 [|LLDP] 12:24:22.808855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1165 58ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.808857 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.808862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.808866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.808869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.808880 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.808886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.808896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.808899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.808902 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.808906 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.808911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.819818 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.819840 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.819859 LLDP, length 82 [|LLDP] 12:24:22.819860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116d bf18 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.819862 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.819867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.819877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.819880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.819883 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.819888 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.819891 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.819895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.819907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.819912 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.819916 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.830828 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.830850 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.830869 LLDP, length 82 [|LLDP] 12:24:22.830870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1176 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.830873 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.830878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.830882 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.830885 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.830890 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.830900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.830903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.830906 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.830917 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.830922 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.830927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.839093 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.839119 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.839141 LLDP, length 82 [|LLDP] 12:24:22.839142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117c 7248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.839144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.839150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.839154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.839158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.839170 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.839176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.839187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.839190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.839192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.839196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.839201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.850102 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.850128 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.850149 LLDP, length 82 [|LLDP] 12:24:22.850150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1184 d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.850152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.850158 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.850164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.850174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.850178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.850180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.850184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.850188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.850200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.850205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.850210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.861110 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.861133 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.861152 LLDP, length 82 [|LLDP] 12:24:22.861154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118d 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.861156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.861162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.861166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.861169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.861180 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.861186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.861196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.861199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.861201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.861206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.861211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.869365 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.869387 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.869408 LLDP, length 82 [|LLDP] 12:24:22.869410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1193 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.869412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.869417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.869421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.869425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.869437 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.869443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.869452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.869455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.869457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.869461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.869466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.880373 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.880396 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.880415 LLDP, length 82 [|LLDP] 12:24:22.880416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119b f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.880418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.880424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.880427 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.880433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.880442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.880445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.880447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.880451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.880463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.880468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.880472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.888632 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.888654 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.888673 LLDP, length 82 [|LLDP] 12:24:22.888675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a2 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.888677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.888682 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.888686 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.888690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.888701 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.888707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.888716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.888720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.888722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.888726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.888730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.899649 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.899675 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.899697 LLDP, length 82 [|LLDP] 12:24:22.899699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11aa a582 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.899701 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.899707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.899717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.899721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.899723 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.899728 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.899732 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.899735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.899747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.899753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.899758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.910656 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.910681 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.910701 LLDP, length 82 [|LLDP] 12:24:22.910703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b3 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.910705 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.910711 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.910715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.910718 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.910723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.910734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.910737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.910739 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.910751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.910757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.910762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.918912 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.918927 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.918946 LLDP, length 82 [|LLDP] 12:24:22.918948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b9 58ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.918949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.918955 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.918959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.918962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.918974 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.918979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.918989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.918992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.918994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.918998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.919003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.929922 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.929946 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.929965 LLDP, length 82 [|LLDP] 12:24:22.929967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c1 bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.929969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.929974 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.929980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.929990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.929993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.929995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.929999 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.930003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.930014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.930020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.930024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.940931 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.940954 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.940973 LLDP, length 82 [|LLDP] 12:24:22.940975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ca 257b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.940977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.940982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.940986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.940989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.941001 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.941007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.941017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.941020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.941022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.941026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.941031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.949188 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.949210 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.949230 LLDP, length 82 [|LLDP] 12:24:22.949232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d0 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.949233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.949239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.949243 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.949246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.949258 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.949264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.949273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.949277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.949279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.949283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.949288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.960206 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.960231 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.960253 LLDP, length 82 [|LLDP] 12:24:22.960255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d8 d8af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.960257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.960263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.960267 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.960272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.960282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.960285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.960288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.960291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.960304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.960309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.960314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.971211 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.971236 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.971257 LLDP, length 82 [|LLDP] 12:24:22.971258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e1 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.971260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.971266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.971269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.971273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.971285 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.971290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.971301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.971304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.971306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.971311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.971315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.979470 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.979492 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.979512 LLDP, length 82 [|LLDP] 12:24:22.979513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e7 8be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.979515 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.979521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.979532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.979535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.979537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.979543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.979546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.979550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.979561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.979567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.979571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.990478 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.990500 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.990520 LLDP, length 82 [|LLDP] 12:24:22.990522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ef f248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.990524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.990529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.990533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.990536 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.990541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.990551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.990554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.990556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.990569 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.990574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.990579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:22.998756 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:22.998783 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.998813 LLDP, length 82 [|LLDP] 12:24:22.998815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f6 3f16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:22.998817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:22.998825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:22.998829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:22.998832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:22.998845 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:22.998851 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:22.998863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.998866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:22.998868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:22.998873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:22.998878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.009753 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.009772 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.009793 LLDP, length 82 [|LLDP] 12:24:23.009795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fe a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.009797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.009803 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.009809 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.009820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.009823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.009825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.009829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.009833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.009845 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.009850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.009854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.020766 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.020796 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.020819 LLDP, length 82 [|LLDP] 12:24:23.020821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1207 0be2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.020823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.020830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.020834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.020837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.020849 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.020855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.020866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.020869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.020871 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.020875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.020880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.029019 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.029043 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.029064 LLDP, length 82 [|LLDP] 12:24:23.029066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120d 58af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.029068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.029074 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.029078 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.029082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.029093 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.029099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.029109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.029112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.029114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.029119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.029123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.040037 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.040060 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.040079 LLDP, length 82 [|LLDP] 12:24:23.040080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1215 bf15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.040082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.040088 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.040092 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.040096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.040107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.040110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.040112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.040116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.040127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.040132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.040137 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.051035 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.051056 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.051076 LLDP, length 82 [|LLDP] 12:24:23.051077 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121e 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.051079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.051085 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.051089 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.051092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.051104 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.051109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.051119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.051122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.051124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.051128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.051133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.059292 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.059313 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.059332 LLDP, length 82 [|LLDP] 12:24:23.059333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1224 7248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.059343 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.059350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.059360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.059364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.059366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.059371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.059375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.059378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.059391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.059396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.059400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.070301 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.070322 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.070342 LLDP, length 82 [|LLDP] 12:24:23.070344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122c d8b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.070346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.070351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.070355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.070358 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.070364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.070374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.070377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.070379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.070391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.070396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.070401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.078564 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.078590 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.078611 LLDP, length 82 [|LLDP] 12:24:23.078613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1233 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.078615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.078621 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.078625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.078628 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.078640 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.078646 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.078656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.078659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.078661 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.078666 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.078671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.089572 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.089595 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.089616 LLDP, length 82 [|LLDP] 12:24:23.089618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123b 8be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.089620 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.089626 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.089632 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.089642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.089645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.089648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.089652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.089655 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.089668 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.089673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.089678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.100582 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.100604 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.100624 LLDP, length 82 [|LLDP] 12:24:23.100626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1243 f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.100628 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.100634 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.100637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.100641 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.100652 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.100658 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.100667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.100670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.100673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.100677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.100682 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.108837 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.108860 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.108879 LLDP, length 82 [|LLDP] 12:24:23.108880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124a 3f15 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.108882 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.108887 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.108891 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.108895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.108906 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.108912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.108921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.108924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.108926 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.108931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.108935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.119844 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.119866 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.119885 LLDP, length 82 [|LLDP] 12:24:23.119886 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1252 a57c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.119888 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.119894 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.119898 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.119903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.119913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.119916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.119918 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.119922 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.119933 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.119938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.119943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.130859 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.130881 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.130901 LLDP, length 82 [|LLDP] 12:24:23.130902 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125b 0be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.130904 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.130910 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.130914 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.130918 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.130929 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.130935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.130945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.130948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.130950 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.130955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.130959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.139126 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.139144 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.139166 LLDP, length 82 [|LLDP] 12:24:23.139167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1261 58b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.139169 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.139175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.139186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.139190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.139192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.139198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.139201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.139205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.139217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.139223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.139227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.150130 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.150148 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.150169 LLDP, length 82 [|LLDP] 12:24:23.150171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1269 bf1d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.150173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.150179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.150182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.150186 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.150191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.150202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.150205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.150207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.150220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.150225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.150229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.161137 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.161158 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.161177 LLDP, length 82 [|LLDP] 12:24:23.161178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1272 257c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.161180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.161186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.161190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.161193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.161205 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.161211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.161220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.161223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.161225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.161230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.161234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.169393 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.169414 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.169433 LLDP, length 82 [|LLDP] 12:24:23.169435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1278 7249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.169437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.169442 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.169448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.169457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.169460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.169463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.169466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.169470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.169482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.169487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.169492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.180403 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.180424 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.180442 LLDP, length 82 [|LLDP] 12:24:23.180444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1280 d8b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.180446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.180452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.180456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.180460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.180471 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.180477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.180499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.180502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.180504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.180509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.180514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.188660 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.188682 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.188700 LLDP, length 82 [|LLDP] 12:24:23.188701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1287 257d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.188703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.188709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.188713 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.188717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.188728 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.188734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.188744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.188747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.188749 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.188754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.188758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.199678 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.199705 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.199726 LLDP, length 82 [|LLDP] 12:24:23.199728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 128f 8be3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.199730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.199736 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.199740 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.199745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.199756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.199759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.199761 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.199765 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.199777 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.199783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.199787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:24:23.210689 IP 1.1.1.2.38767 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:24:23.210718 IP 1.1.1.2.33523 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.210741 LLDP, length 82 [|LLDP] 12:24:23.210743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1297 f249 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:24:23.210745 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:24:23.210751 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:24:23.210755 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:24:23.210759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:24:23.210770 IP 192.168.1.1.26283 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:24:23.210776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:24:23.210786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.210789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:24:23.210792 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:24:23.210796 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:24:23.210801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 9065 packets captured 9065 packets received by filter 0 packets dropped by kernel 605 packets dropped by interface -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_bridge_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:24:32 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=42, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=42, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=42, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=42, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=42, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":95,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=42, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=42, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=42, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:24:32 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=42, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:24:32 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=42, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=42, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=42, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":95,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=42, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=28] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_bum_traffic_bridge.py::test_bridging_bum_traffic_bridge_without_rif | 272.51 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_bridge_without_rif">Starting testcase:test_bridging_bum_traffic_bridge_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2481' coro=<test_bridging_bum_traffic_bridge_without_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py:173> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=43] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=43] Local address: 172.17.0.4, port 40366 INFO asyncssh:logging.py:92 [conn=43] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=43] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=43] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:24:33 UTC 2087 INFO asyncssh:logging.py:92 [conn=43, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=43, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=43, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=43, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=43, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=43, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=8] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=43, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra1... INFO asyncssh:logging.py:92 [conn=43, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=9] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=43, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=10] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6d0ac0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI BridgedLLDP SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI LACPDU SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4ToMe SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Request_BC SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Reply SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Broadcast SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_SSH SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_Telnet SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_ICMP_Request SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DCHP_BC SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Reserved_MC SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_OSPFIGP SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_VRRP SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_IGMP SIP-DIP N/A Tx 605 Rx 605 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_BGP SIP-DIP N/A Tx 605 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=43, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=10] Channel closed DEBUG infra1:Logger.py:156 12:28:49.443654 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.443712 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.443718 LLDP, length 82 [|LLDP] 12:28:49.443720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009c 49e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.443722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.443727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.443732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.443736 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.443741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.443747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.451867 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.451886 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.451890 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.451895 LLDP, length 82 [|LLDP] 12:28:49.451896 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a2 96b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.451898 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.451903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.451907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.451910 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.451915 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.462874 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.462889 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.462893 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.462898 LLDP, length 82 [|LLDP] 12:28:49.462900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00aa fd18 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.462901 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.462906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.462910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.462913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.462917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.471122 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.471135 LLDP, length 82 [|LLDP] 12:28:49.471136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b1 49e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.471138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.471143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.471151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.471154 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.471158 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.471162 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.471167 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.482130 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.482142 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.482146 LLDP, length 82 [|LLDP] 12:28:49.482148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b9 b04b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.482150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.482154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.482157 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.482161 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.482165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.482170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.493141 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.493154 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.493159 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.493163 LLDP, length 82 [|LLDP] 12:28:49.493164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c2 16b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.493166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.493170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.493174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.493177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.493181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.501397 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.501409 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.501414 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.501418 LLDP, length 82 [|LLDP] 12:28:49.501420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c8 637e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.501422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.501426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.501430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.501433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.501438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.512407 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.512421 LLDP, length 82 [|LLDP] 12:28:49.512422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d0 c9e7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.512424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.512429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.512433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.512435 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.512439 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.512443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.512448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.523426 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.523440 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.523444 LLDP, length 82 [|LLDP] 12:28:49.523446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d9 304c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.523448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.523452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.523455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.523459 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.523463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.523468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.531678 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.531692 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.531696 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.531701 LLDP, length 82 [|LLDP] 12:28:49.531702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00df 7d18 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.531704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.531708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.531712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.531715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.531720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.542685 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.542697 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.542702 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.542706 LLDP, length 82 [|LLDP] 12:28:49.542708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e7 e37f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.542710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.542714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.542718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.542721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.542725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.550943 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.550956 LLDP, length 82 [|LLDP] 12:28:49.550957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ee 304b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.550959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.550964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.550968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.550970 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.550975 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.550979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.550983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.561953 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.561966 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.561970 LLDP, length 82 [|LLDP] 12:28:49.561971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f6 96b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.561973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.561977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.561980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.561984 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.561989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.561993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.572963 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.572976 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.572981 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.572985 LLDP, length 82 [|LLDP] 12:28:49.572986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fe fd18 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.572988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.572993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.572997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.572999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.573004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.581224 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.581238 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.581243 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.581247 LLDP, length 82 [|LLDP] 12:28:49.581249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0105 49e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.581251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.581255 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.581259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.581262 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.581266 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.592237 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.592250 LLDP, length 82 [|LLDP] 12:28:49.592252 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010d b04a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.592253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.592257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.592262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.592264 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.592268 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.592273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.592277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.603244 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.603257 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.603262 LLDP, length 82 [|LLDP] 12:28:49.603263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0116 16b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.603265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.603269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.603272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.603276 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.603280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.603285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.611503 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.611515 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.611519 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.611524 LLDP, length 82 [|LLDP] 12:28:49.611525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011c 637e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.611527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.611531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.611536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.611538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.611543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.622512 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.622525 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.622530 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.622534 LLDP, length 82 [|LLDP] 12:28:49.622535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0124 c9e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.622537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.622542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.622546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.622548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.622553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.633523 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.633536 LLDP, length 82 [|LLDP] 12:28:49.633537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012d 304b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.633539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.633543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.633547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.633550 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.633554 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.633559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.633563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.641779 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.641792 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.641796 LLDP, length 82 [|LLDP] 12:28:49.641798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0133 7d17 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.641800 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.641804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.641807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.641811 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.641816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.641821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.652810 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.652822 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.652827 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.652831 LLDP, length 82 [|LLDP] 12:28:49.652833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013b e37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.652835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.652839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.652843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.652846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.652850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.661046 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.661066 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.661070 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.661074 LLDP, length 82 [|LLDP] 12:28:49.661076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0142 304a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.661078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.661082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.661086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.661089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.661093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.672057 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.672070 LLDP, length 82 [|LLDP] 12:28:49.672072 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014a 96b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.672074 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.672078 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.672083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.672086 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.672090 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.672094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.672098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.683068 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.683079 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.683084 LLDP, length 82 [|LLDP] 12:28:49.683085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0152 fd1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.683087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.683091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.683094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.683097 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.683102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.683106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.691323 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.691342 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.691347 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.691352 LLDP, length 82 [|LLDP] 12:28:49.691353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0159 49e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.691355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.691359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.691363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.691365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.691370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.702336 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.702356 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.702360 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.702365 LLDP, length 82 [|LLDP] 12:28:49.702366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0161 b04b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.702368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.702372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.702377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.702379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.702384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.713348 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.713361 LLDP, length 82 [|LLDP] 12:28:49.713363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016a 16b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.713365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.713369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.713373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.713376 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.713380 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.713384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.713389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.721601 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.721615 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.721619 LLDP, length 82 [|LLDP] 12:28:49.721620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0170 637f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.721622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.721626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.721629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.721633 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.721638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.721642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.732614 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.732626 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.732631 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.732635 LLDP, length 82 [|LLDP] 12:28:49.732637 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0178 c9e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.732639 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.732643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.732647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.732650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.732654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.740884 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.740901 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.740906 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.740910 LLDP, length 82 [|LLDP] 12:28:49.740912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017f 16b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.740914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.740918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.740923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.740925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.740930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.751892 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.751912 LLDP, length 82 [|LLDP] 12:28:49.751914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0187 7d19 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.751916 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.751921 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.751926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.751929 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.751933 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.751938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.751943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.762907 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.762927 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.762932 LLDP, length 82 [|LLDP] 12:28:49.762933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018f e380 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.762935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.762940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.762943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.762948 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.762952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.762957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.771155 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.771174 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.771178 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.771183 LLDP, length 82 [|LLDP] 12:28:49.771185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0196 304b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.771186 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.771191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.771195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.771198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.771203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.782163 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.782177 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.782182 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.782186 LLDP, length 82 [|LLDP] 12:28:49.782188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019e 96b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.782190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.782195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.782199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.782202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.782206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.793231 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.793275 LLDP, length 82 [|LLDP] 12:28:49.793277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a6 fd18 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.793279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.793285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.793291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.793295 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.793300 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.793306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.793311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.801474 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.801507 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.801512 LLDP, length 82 [|LLDP] 12:28:49.801514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ad 49e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.801517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.801521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.801526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.801531 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.801536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.801542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.812474 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.812503 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.812508 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.812513 LLDP, length 82 [|LLDP] 12:28:49.812515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b5 b04b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.812518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.812523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.812527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.812530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.812535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.823474 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.823502 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.823507 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.823512 LLDP, length 82 [|LLDP] 12:28:49.823513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01be 16b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.823516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.823520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.823525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.823528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.823533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.831773 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.831815 LLDP, length 82 [|LLDP] 12:28:49.831817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c4 637d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.831820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.831827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.831832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.831838 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.831843 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.831848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.831854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.842765 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.842800 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.842805 LLDP, length 82 [|LLDP] 12:28:49.842808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cc c9e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.842810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.842815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.842819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.842824 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.842828 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.842834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.851014 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.851045 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.851050 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.851054 LLDP, length 82 [|LLDP] 12:28:49.851056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d3 16b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.851058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.851063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.851067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.851071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.851076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.862022 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.862054 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.862059 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.862064 LLDP, length 82 [|LLDP] 12:28:49.862066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01db 7d17 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.862068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.862073 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.862078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.862081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.862086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.872996 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.873009 LLDP, length 82 [|LLDP] 12:28:49.873011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e3 e37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.873013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.873017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.873021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.873024 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.873029 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.873033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.873038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.881249 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.881260 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.881265 LLDP, length 82 [|LLDP] 12:28:49.881266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ea 3052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.881268 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.881272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.881275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.881279 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.881283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.881287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.892255 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.892265 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.892269 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.892274 LLDP, length 82 [|LLDP] 12:28:49.892275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f2 96b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.892277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.892281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.892285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.892287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.892292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.903265 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.903274 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.903279 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.903283 LLDP, length 82 [|LLDP] 12:28:49.903284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fa fd17 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.903286 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.903291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.903295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.903297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.903302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.911524 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.911533 LLDP, length 82 [|LLDP] 12:28:49.911535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0201 49e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.911536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.911541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.911545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.911548 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.911552 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.911556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.911561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.922538 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.922548 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.922552 LLDP, length 82 [|LLDP] 12:28:49.922554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0209 b04b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.922555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.922560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.922563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.922567 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.922571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.922576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.933545 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.933555 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.933559 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.933563 LLDP, length 82 [|LLDP] 12:28:49.933565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0212 16b8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.933567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.933571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.933575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.933577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.933582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.941803 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.941812 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.941817 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.941821 LLDP, length 82 [|LLDP] 12:28:49.941823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0218 637e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.941825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.941829 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.941834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.941836 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.941840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.952818 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.952829 LLDP, length 82 [|LLDP] 12:28:49.952831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0220 c9e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.952833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.952837 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.952841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.952844 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.952848 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.952852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.952857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.961073 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.961082 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.961086 LLDP, length 82 [|LLDP] 12:28:49.961088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0227 16b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.961090 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.961094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.961096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.961100 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.961105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.961109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.972079 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.972088 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.972093 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.972097 LLDP, length 82 [|LLDP] 12:28:49.972098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022f 7d18 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.972100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.972104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.972108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.972111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.972115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.983090 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.983100 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.983105 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.983109 LLDP, length 82 [|LLDP] 12:28:49.983111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0237 e37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.983112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.983117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.983121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.983123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.983127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.991355 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.991365 LLDP, length 82 [|LLDP] 12:28:49.991367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023e 306d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.991368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.991373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.991377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.991379 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.991383 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.991388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.991392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.002360 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.002370 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.002374 LLDP, length 82 [|LLDP] 12:28:50.002375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0246 96d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.002377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.002381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.002384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.002388 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.002392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.002397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.013372 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.013381 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.013385 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.013390 LLDP, length 82 [|LLDP] 12:28:50.013392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024e fd3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.013394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.013398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.013402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.013405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.013409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.021626 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.021635 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.021640 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.021644 LLDP, length 82 [|LLDP] 12:28:50.021646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0255 4a07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.021647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.021652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.021656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.021659 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.021663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.032643 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.032654 LLDP, length 82 [|LLDP] 12:28:50.032655 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025d b06d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.032657 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.032661 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.032665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.032668 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.032672 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.032676 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.032680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.040895 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.040904 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.040909 LLDP, length 82 [|LLDP] 12:28:50.040910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0263 fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.040912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.040916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.040919 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.040923 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.040928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.040933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.051904 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.051915 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.051919 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.051923 LLDP, length 82 [|LLDP] 12:28:50.051924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026c 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.051926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.051931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.051935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.051937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.051942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.062914 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.062923 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.062928 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.062932 LLDP, length 82 [|LLDP] 12:28:50.062933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0274 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.062935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.062940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.062944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.062946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.062951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.071170 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.071179 LLDP, length 82 [|LLDP] 12:28:50.071181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027b 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.071182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.071187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.071191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.071193 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.071197 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.071202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.071206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.082187 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.082198 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.082202 LLDP, length 82 [|LLDP] 12:28:50.082204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0283 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.082205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.082210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.082213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.082217 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.082221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.082226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.093207 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.093217 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.093221 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.093225 LLDP, length 82 [|LLDP] 12:28:50.093227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028b e39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.093229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.093233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.093237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.093239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.093244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.101449 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.101458 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.101462 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.101466 LLDP, length 82 [|LLDP] 12:28:50.101468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0292 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.101470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.101474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.101478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.101480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.101485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.112460 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.112470 LLDP, length 82 [|LLDP] 12:28:50.112471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029a 96d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.112473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.112477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.112481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.112484 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.112489 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.112493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.112498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.123491 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.123511 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.123515 LLDP, length 82 [|LLDP] 12:28:50.123517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a2 fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.123519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.123523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.123526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.123530 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.123535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.123540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.131739 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.131753 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.131757 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.131762 LLDP, length 82 [|LLDP] 12:28:50.131763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a9 4a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.131765 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.131770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.131774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.131777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.131781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.142744 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.142759 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.142763 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.142775 LLDP, length 82 [|LLDP] 12:28:50.142777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b1 b070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.142779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.142783 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.142788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.142791 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.142795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.151005 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.151018 LLDP, length 82 [|LLDP] 12:28:50.151019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b7 fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.151022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.151026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.151030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.151033 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.151037 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.151042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.151046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.162015 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.162029 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.162034 LLDP, length 82 [|LLDP] 12:28:50.162035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c0 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.162037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.162041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.162044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.162049 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.162053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.162058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.173025 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.173039 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.173044 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.173048 LLDP, length 82 [|LLDP] 12:28:50.173049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c8 ca07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.173051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.173056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.173060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.173063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.173067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.181281 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.181295 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.181299 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.181304 LLDP, length 82 [|LLDP] 12:28:50.181305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cf 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.181307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.181311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.181316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.181318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.181323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.192291 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.192304 LLDP, length 82 [|LLDP] 12:28:50.192306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d7 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.192308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.192312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.192316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.192319 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.192323 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.192328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.192332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.203300 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.203313 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.203318 LLDP, length 82 [|LLDP] 12:28:50.203319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02df e3a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.203321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.203325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.203328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.203332 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.203345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.203350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.211560 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.211573 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.211577 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.211582 LLDP, length 82 [|LLDP] 12:28:50.211583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e6 306d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.211585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.211590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.211594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.211596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.211601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.222569 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.222582 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.222586 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.222590 LLDP, length 82 [|LLDP] 12:28:50.222592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ee 96da 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.222594 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.222598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.222603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.222605 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.222610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.230826 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.230841 LLDP, length 82 [|LLDP] 12:28:50.230842 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f4 e3a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.230844 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.230848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.230852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.230855 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.230859 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.230863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.230868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.241837 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.241851 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.241855 LLDP, length 82 [|LLDP] 12:28:50.241857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fd 4a07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.241858 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.241863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.241866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.241870 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.241874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.241879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.252847 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.252861 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.252866 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.252870 LLDP, length 82 [|LLDP] 12:28:50.252872 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0305 b06d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.252874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.252878 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.252882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.252885 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.252890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.261109 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.261122 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.261127 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.261131 LLDP, length 82 [|LLDP] 12:28:50.261132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030b fd3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.261134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.261139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.261143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.261146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.261150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.272114 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.272128 LLDP, length 82 [|LLDP] 12:28:50.272130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0314 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.272132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.272136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.272140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.272143 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.272147 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.272151 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.272156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.283131 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.283149 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.283153 LLDP, length 82 [|LLDP] 12:28:50.283155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031c ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.283157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.283161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.283164 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.283168 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.283173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.283177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.291386 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.291401 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.291406 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.291410 LLDP, length 82 [|LLDP] 12:28:50.291411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0323 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.291413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.291418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.291422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.291424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.291429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.302395 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.302408 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.302413 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.302417 LLDP, length 82 [|LLDP] 12:28:50.302418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032b 7d3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.302420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.302424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.302429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.302431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.302435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.313404 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.313417 LLDP, length 82 [|LLDP] 12:28:50.313418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0333 e39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.313420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.313425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.313429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.313431 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.313436 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.313440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.313445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.321661 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.321674 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.321679 LLDP, length 82 [|LLDP] 12:28:50.321680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033a 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.321682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.321686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.321689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.321693 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.321698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.321702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.332673 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.332686 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.332690 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.332695 LLDP, length 82 [|LLDP] 12:28:50.332696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0342 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.332698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.332703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.332707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.332709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.332714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.340929 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.340942 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.340946 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.340950 LLDP, length 82 [|LLDP] 12:28:50.340952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0348 e3a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.340953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.340958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.340962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.340964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.340969 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.351939 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.351952 LLDP, length 82 [|LLDP] 12:28:50.351954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0351 4a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.351956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.351960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.351964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.351967 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.351971 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.351976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.351981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.362950 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.362964 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.362969 LLDP, length 82 [|LLDP] 12:28:50.362970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0359 b06b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.362972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.362976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.362979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.362983 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.362987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.362992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.371208 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.371221 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.371225 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.371229 LLDP, length 82 [|LLDP] 12:28:50.371231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035f fd38 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.371233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.371237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.371241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.371244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.371248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.382219 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.382232 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.382237 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.382241 LLDP, length 82 [|LLDP] 12:28:50.382243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0368 639e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.382245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.382249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.382253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.382256 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.382260 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.393228 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.393240 LLDP, length 82 [|LLDP] 12:28:50.393242 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0370 ca08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.393244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.393248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.393252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.393255 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.393259 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.393263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.393267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.401491 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.401507 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.401511 LLDP, length 82 [|LLDP] 12:28:50.401513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0377 16d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.401515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.401519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.401522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.401526 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.401531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.401535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.412499 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.412518 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.412522 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.412526 LLDP, length 82 [|LLDP] 12:28:50.412528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037f 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.412530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.412534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.412538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.412541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.412545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.423506 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.423520 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.423524 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.423529 LLDP, length 82 [|LLDP] 12:28:50.423530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0387 e39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.423532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.423536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.423541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.423544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.423548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.431762 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.431776 LLDP, length 82 [|LLDP] 12:28:50.431777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038e 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.431779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.431783 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.431787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.431790 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.431794 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.431799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.431803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.442813 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.442832 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.442837 LLDP, length 82 [|LLDP] 12:28:50.442838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0396 96d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.442841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.442845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.442849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.442853 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.442858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.442863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.451059 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.451081 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.451086 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.451091 LLDP, length 82 [|LLDP] 12:28:50.451093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039c e39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.451095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.451100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.451104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.451107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.451112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.462051 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.462068 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.462073 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.462078 LLDP, length 82 [|LLDP] 12:28:50.462079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a5 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.462081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.462086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.462090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.462094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.462098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.473059 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.473074 LLDP, length 82 [|LLDP] 12:28:50.473076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ad b073 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.473078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.473083 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.473087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.473089 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.473093 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.473098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.473102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.481318 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.481336 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.481340 LLDP, length 82 [|LLDP] 12:28:50.481342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b3 fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.481344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.481348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.481351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.481355 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.481360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.481365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.492325 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.492339 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.492344 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.492348 LLDP, length 82 [|LLDP] 12:28:50.492350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03bc 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.492352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.492356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.492360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.492363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.492368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.503333 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.503356 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.503361 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.503365 LLDP, length 82 [|LLDP] 12:28:50.503367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c4 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.503369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.503373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.503377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.503380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.503384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.511592 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.511608 LLDP, length 82 [|LLDP] 12:28:50.511609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cb 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.511611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.511616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.511620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.511623 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.511627 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.511632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.511637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.522602 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.522617 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.522621 LLDP, length 82 [|LLDP] 12:28:50.522623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d3 7d3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.522625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.522629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.522632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.522636 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.522641 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.522645 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.530858 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.530873 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.530877 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.530882 LLDP, length 82 [|LLDP] 12:28:50.530883 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d9 ca07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.530885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.530890 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.530894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.530897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.530901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.541869 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.541883 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.541887 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.541891 LLDP, length 82 [|LLDP] 12:28:50.541893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e2 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.541895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.541900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.541904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.541907 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.541912 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.552883 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.552897 LLDP, length 82 [|LLDP] 12:28:50.552898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ea 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.552900 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.552905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.552909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.552912 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.552916 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.552921 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.552925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.561135 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.561150 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.561154 LLDP, length 82 [|LLDP] 12:28:50.561156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f0 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.561158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.561162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.561165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.561169 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.561173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.561178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.572150 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.572165 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.572169 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.572173 LLDP, length 82 [|LLDP] 12:28:50.572174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f9 4a07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.572176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.572181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.572185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.572187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.572192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.583157 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.583172 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.583176 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.583181 LLDP, length 82 [|LLDP] 12:28:50.583183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0401 b06d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.583184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.583189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.583193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.583196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.583201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.591414 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.591429 LLDP, length 82 [|LLDP] 12:28:50.591430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0407 fd40 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.591432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.591437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.591441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.591444 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.591448 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.591452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.591457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.602426 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.602440 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.602445 LLDP, length 82 [|LLDP] 12:28:50.602446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0410 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.602448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.602452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.602456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.602460 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.602464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.602468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.613438 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.613451 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.613456 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.613460 LLDP, length 82 [|LLDP] 12:28:50.613462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0418 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.613464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.613468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.613472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.613475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.613480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.621691 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.621706 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.621710 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.621715 LLDP, length 82 [|LLDP] 12:28:50.621716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041f 16d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.621718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.621723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.621727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.621730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.621734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.632702 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.632717 LLDP, length 82 [|LLDP] 12:28:50.632719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0427 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.632720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.632725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.632729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.632732 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.632736 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.632740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.632745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.640959 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.640974 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.640978 LLDP, length 82 [|LLDP] 12:28:50.640979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042d ca05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.640981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.640985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.640988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.640992 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.640997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.641001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.651971 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.651985 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.651990 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.651994 LLDP, length 82 [|LLDP] 12:28:50.651995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0436 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.651997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.652002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.652006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.652008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.652013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.662980 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.662995 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.662999 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.663003 LLDP, length 82 [|LLDP] 12:28:50.663005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043e 96d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.663007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.663011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.663015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.663018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.663022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.671239 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.671255 LLDP, length 82 [|LLDP] 12:28:50.671257 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0444 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.671259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.671263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.671267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.671270 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.671274 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.671278 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.671283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.682249 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.682264 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.682268 LLDP, length 82 [|LLDP] 12:28:50.682269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044d 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.682271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.682276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.682279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.682283 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.682287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.682291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.693258 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.693272 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.693277 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.693281 LLDP, length 82 [|LLDP] 12:28:50.693282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0455 b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.693284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.693288 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.693292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.693295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.693299 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.701517 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.701533 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.701537 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.701542 LLDP, length 82 [|LLDP] 12:28:50.701543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045b fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.701545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.701549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.701554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.701556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.701561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.712527 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.712543 LLDP, length 82 [|LLDP] 12:28:50.712545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0464 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.712547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.712551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.712555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.712558 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.712563 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.712567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.712571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.723539 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.723554 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.723558 LLDP, length 82 [|LLDP] 12:28:50.723559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046c ca0d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.723561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.723565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.723568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.723572 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.723577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.723581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.731795 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.731811 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.731815 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.731819 LLDP, length 82 [|LLDP] 12:28:50.731821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0473 16d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.731823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.731827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.731831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.731833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.731838 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.742804 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.742818 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.742822 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.742827 LLDP, length 82 [|LLDP] 12:28:50.742828 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047b 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.742830 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.742835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.742839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.742842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.742847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.751062 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.751077 LLDP, length 82 [|LLDP] 12:28:50.751078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0481 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.751080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.751085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.751089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.751091 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.751095 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.751100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.751104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.762073 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.762087 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.762092 LLDP, length 82 [|LLDP] 12:28:50.762093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048a 306d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.762095 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.762099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.762102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.762106 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.762111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.762115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.773082 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.773097 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.773102 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.773106 LLDP, length 82 [|LLDP] 12:28:50.773108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0492 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.773110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.773114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.773118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.773121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.773126 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.781342 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.781357 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.781362 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.781366 LLDP, length 82 [|LLDP] 12:28:50.781368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0498 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.781370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.781374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.781378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.781381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.781386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.792351 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.792365 LLDP, length 82 [|LLDP] 12:28:50.792367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a1 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.792369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.792373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.792377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.792380 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.792384 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.792389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.792393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.803371 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.803386 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.803391 LLDP, length 82 [|LLDP] 12:28:50.803393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a9 b06d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.803394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.803398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.803401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.803405 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.803410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.803415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.811619 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.811633 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.811638 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.811642 LLDP, length 82 [|LLDP] 12:28:50.811644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04af fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.811646 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.811650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.811654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.811657 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.811662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.822628 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.822643 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.822647 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.822652 LLDP, length 82 [|LLDP] 12:28:50.822653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b8 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.822655 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.822660 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.822664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.822666 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.822671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.830887 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.830902 LLDP, length 82 [|LLDP] 12:28:50.830903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04be b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.830905 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.830910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.830914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.830916 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.830921 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.830925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.830930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.841897 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.841911 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.841915 LLDP, length 82 [|LLDP] 12:28:50.841917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c7 16d9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.841919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.841923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.841926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.841930 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.841934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.841939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.852920 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.852935 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.852939 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.852944 LLDP, length 82 [|LLDP] 12:28:50.852945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cf 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.852948 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.852952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.852956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.852959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.852964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.861217 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.861251 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.861256 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.861261 LLDP, length 82 [|LLDP] 12:28:50.861263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d5 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.861265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.861270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.861275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.861278 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.861283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.872217 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.872250 LLDP, length 82 [|LLDP] 12:28:50.872252 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04de 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.872254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.872259 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.872263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.872267 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.872272 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.872276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.872281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.883200 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.883217 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.883221 LLDP, length 82 [|LLDP] 12:28:50.883223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e6 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.883225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.883229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.883232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.883236 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.883240 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.883245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.891447 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.891464 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.891468 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.891473 LLDP, length 82 [|LLDP] 12:28:50.891475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ec e39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.891476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.891481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.891485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.891488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.891492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.902454 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.902468 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.902473 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.902477 LLDP, length 82 [|LLDP] 12:28:50.902479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f5 4a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.902481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.902485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.902489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.902492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.902496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.913463 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.913477 LLDP, length 82 [|LLDP] 12:28:50.913479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fd b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.913481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.913485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.913490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.913492 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.913497 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.913501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.913506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.921716 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.921730 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.921734 LLDP, length 82 [|LLDP] 12:28:50.921736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0503 fd3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.921738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.921742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.921745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.921749 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.921754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.921758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.932731 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.932746 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.932750 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.932755 LLDP, length 82 [|LLDP] 12:28:50.932756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050c 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.932758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.932762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.932766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.932769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.932773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.940988 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.941002 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.941006 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.941011 LLDP, length 82 [|LLDP] 12:28:50.941013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0512 b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.941015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.941019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.941023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.941026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.941030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.952001 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.952016 LLDP, length 82 [|LLDP] 12:28:50.952018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051b 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.952020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.952024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.952028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.952031 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.952035 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.952039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.952044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.963012 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.963027 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.963031 LLDP, length 82 [|LLDP] 12:28:50.963033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0523 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.963035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.963040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.963042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.963047 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.963051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.963056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.971267 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.971282 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.971286 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.971291 LLDP, length 82 [|LLDP] 12:28:50.971293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0529 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.971295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.971299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.971303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.971306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.971310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.982278 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.982292 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.982297 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.982301 LLDP, length 82 [|LLDP] 12:28:50.982302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0532 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.982304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.982308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.982313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.982315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.982320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.993284 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.993297 LLDP, length 82 [|LLDP] 12:28:50.993298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053a 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.993300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.993304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.993309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.993311 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.993316 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.993320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.993324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.001544 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.001558 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.001563 LLDP, length 82 [|LLDP] 12:28:51.001564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0540 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.001566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.001570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.001573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.001577 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.001582 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.001586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.012555 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.012568 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.012572 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.012577 LLDP, length 82 [|LLDP] 12:28:51.012578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0549 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.012580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.012584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.012589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.012591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.012595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.020810 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.020822 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.020827 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.020831 LLDP, length 82 [|LLDP] 12:28:51.020833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054f 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.020835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.020839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.020844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.020846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.020851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.031822 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.031835 LLDP, length 82 [|LLDP] 12:28:51.031837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0557 fd3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.031838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.031843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.031847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.031850 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.031854 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.031858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.031863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.042828 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.042841 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.042845 LLDP, length 82 [|LLDP] 12:28:51.042847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0560 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.042848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.042852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.042855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.042859 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.042864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.042868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.051091 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.051106 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.051111 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.051115 LLDP, length 82 [|LLDP] 12:28:51.051116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0566 b06d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.051118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.051122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.051127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.051129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.051134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.062101 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.062114 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.062118 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.062122 LLDP, length 82 [|LLDP] 12:28:51.062124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056f 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.062125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.062130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.062134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.062137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.062141 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.073109 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.073121 LLDP, length 82 [|LLDP] 12:28:51.073123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0577 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.073124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.073129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.073133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.073136 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.073140 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.073144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.073149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.081366 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.081380 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.081384 LLDP, length 82 [|LLDP] 12:28:51.081386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057d ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.081387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.081392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.081394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.081399 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.081403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.081407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.092376 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.092389 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.092393 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.092397 LLDP, length 82 [|LLDP] 12:28:51.092398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0586 3073 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.092400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.092404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.092409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.092411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.092415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.103393 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.103406 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.103410 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.103414 LLDP, length 82 [|LLDP] 12:28:51.103416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058e 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.103418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.103422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.103426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.103429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.103433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.111644 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.111656 LLDP, length 82 [|LLDP] 12:28:51.111658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0594 e39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.111659 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.111664 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.111668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.111670 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.111675 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.111679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.111683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.122657 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.122670 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.122674 LLDP, length 82 [|LLDP] 12:28:51.122676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059d 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.122678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.122682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.122685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.122689 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.122693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.122698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.130912 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.130925 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.130929 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.130933 LLDP, length 82 [|LLDP] 12:28:51.130935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a3 96d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.130936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.130941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.130945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.130948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.130952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.141920 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.141933 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.141937 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.141942 LLDP, length 82 [|LLDP] 12:28:51.141943 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ab fd38 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.141945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.141949 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.141953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.141956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.141960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.152932 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.152945 LLDP, length 82 [|LLDP] 12:28:51.152946 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b4 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.152948 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.152952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.152957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.152959 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.152963 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.152968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.152972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.161188 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.161200 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.161205 LLDP, length 82 [|LLDP] 12:28:51.161206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ba b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.161208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.161212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.161215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.161220 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.161224 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.161229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.172199 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.172212 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.172216 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.172221 LLDP, length 82 [|LLDP] 12:28:51.172222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c3 16d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.172224 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.172228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.172233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.172235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.172239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.183210 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.183224 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.183228 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.183233 LLDP, length 82 [|LLDP] 12:28:51.183234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05cb 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.183236 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.183240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.183245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.183247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.183252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.191469 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.191482 LLDP, length 82 [|LLDP] 12:28:51.191483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d1 ca05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.191485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.191489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.191493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.191496 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.191501 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.191505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.191510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.202477 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.202490 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.202494 LLDP, length 82 [|LLDP] 12:28:51.202496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05da 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.202498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.202502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.202504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.202509 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.202513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.202518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.213488 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.213501 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.213506 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.213510 LLDP, length 82 [|LLDP] 12:28:51.213511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e2 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.213513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.213517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.213522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.213524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.213529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.221744 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.221757 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.221762 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.221766 LLDP, length 82 [|LLDP] 12:28:51.221768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e8 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.221769 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.221774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.221778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.221781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.221785 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.232757 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.232769 LLDP, length 82 [|LLDP] 12:28:51.232771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f1 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.232773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.232777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.232781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.232784 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.232788 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.232793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.232797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.241011 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.241023 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.241028 LLDP, length 82 [|LLDP] 12:28:51.241029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f7 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.241031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.241035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.241038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.241042 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.241046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.241051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.252023 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.252034 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.252039 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.252043 LLDP, length 82 [|LLDP] 12:28:51.252044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ff fd3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.252046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.252051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.252055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.252057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.252062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.263029 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.263038 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.263043 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.263047 LLDP, length 82 [|LLDP] 12:28:51.263048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0608 63a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.263050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.263055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.263059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.263061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.263066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.271285 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.271295 LLDP, length 82 [|LLDP] 12:28:51.271296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060e b06d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.271298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.271302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.271306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.271309 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.271313 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.271317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.271322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.282297 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.282306 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.282310 LLDP, length 82 [|LLDP] 12:28:51.282312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0617 16d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.282313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.282317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.282320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.282324 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.282328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.282333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.293308 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.293317 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.293321 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.293326 LLDP, length 82 [|LLDP] 12:28:51.293327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061f 7d3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.293329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.293333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.293337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.293339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.293344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.301562 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.301570 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.301575 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.301579 LLDP, length 82 [|LLDP] 12:28:51.301580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0625 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.301582 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.301586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.301591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.301593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.301598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.312573 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.312582 LLDP, length 82 [|LLDP] 12:28:51.312583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062e 306d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.312585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.312590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.312594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.312596 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.312601 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.312605 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.312610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.320830 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.320844 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.320849 LLDP, length 82 [|LLDP] 12:28:51.320850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0634 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.320852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.320856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.320858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.320863 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.320867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.320871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.331839 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.331854 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.331858 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.331863 LLDP, length 82 [|LLDP] 12:28:51.331864 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063c e39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.331866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.331870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.331875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.331877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.331881 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.342852 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.342861 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.342865 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.342869 LLDP, length 82 [|LLDP] 12:28:51.342870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0645 4a0d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.342872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.342876 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.342881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.342883 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.342887 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.351109 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.351118 LLDP, length 82 [|LLDP] 12:28:51.351119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064b 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.351121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.351125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.351129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.351132 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.351136 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.351141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.351145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.362120 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.362130 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.362134 LLDP, length 82 [|LLDP] 12:28:51.362136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0653 fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.362137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.362142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.362145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.362149 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.362153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.362158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.373129 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.373137 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.373142 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.373146 LLDP, length 82 [|LLDP] 12:28:51.373147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065c 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.373149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.373153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.373157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.373160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.373165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.381385 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.381394 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.381398 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.381402 LLDP, length 82 [|LLDP] 12:28:51.381404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0662 b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.381405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.381410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.381414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.381417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.381421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.392396 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.392405 LLDP, length 82 [|LLDP] 12:28:51.392406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066b 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.392408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.392412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.392417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.392419 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.392423 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.392428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.392432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.403408 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.403416 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.403420 LLDP, length 82 [|LLDP] 12:28:51.403422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0673 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.403424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.403428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.403430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.403434 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.403439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.403444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.411664 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.411672 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.411676 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.411680 LLDP, length 82 [|LLDP] 12:28:51.411681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0679 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.411683 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.411688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.411692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.411694 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.411699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.422675 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.422684 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.422688 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.422692 LLDP, length 82 [|LLDP] 12:28:51.422694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0682 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.422695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.422700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.422704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.422706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.422711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.430932 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.430946 LLDP, length 82 [|LLDP] 12:28:51.430947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0688 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.430949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.430953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.430957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.430960 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.430964 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.430968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.430973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.441943 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.441951 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.441955 LLDP, length 82 [|LLDP] 12:28:51.441957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0690 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.441958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.441963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.441966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.441970 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.441974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.441979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.452956 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.452965 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.452969 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.452973 LLDP, length 82 [|LLDP] 12:28:51.452975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0699 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.452976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.452981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.452985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.452988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.452992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.461214 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.461223 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.461227 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.461232 LLDP, length 82 [|LLDP] 12:28:51.461233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069f 96da 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.461235 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.461239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.461243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.461246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.461250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.472239 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.472258 LLDP, length 82 [|LLDP] 12:28:51.472260 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a7 fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.472262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.472267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.472271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.472274 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.472279 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.472283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.472288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.483262 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.483282 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.483287 LLDP, length 82 [|LLDP] 12:28:51.483289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b0 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.483291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.483296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.483299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.483303 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.483308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.483313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.491494 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.491506 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.491510 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.491514 LLDP, length 82 [|LLDP] 12:28:51.491516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b6 b06d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.491518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.491522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.491526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.491529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.491534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.502500 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.502510 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.502514 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.502519 LLDP, length 82 [|LLDP] 12:28:51.502520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06bf 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.502522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.502526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.502531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.502533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.502538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.510759 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.510768 LLDP, length 82 [|LLDP] 12:28:51.510769 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c5 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.510771 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.510776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.510780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.510782 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.510787 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.510791 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.510796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.521768 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.521777 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.521782 LLDP, length 82 [|LLDP] 12:28:51.521783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cd ca07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.521785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.521789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.521791 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.521795 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.521800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.521804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.532781 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.532790 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.532794 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.532798 LLDP, length 82 [|LLDP] 12:28:51.532800 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d6 306d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.532802 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.532806 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.532810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.532813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.532817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.541035 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.541044 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.541048 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.541052 LLDP, length 82 [|LLDP] 12:28:51.541054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06dc 7d3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.541055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.541060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.541064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.541066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.541071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.552045 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.552053 LLDP, length 82 [|LLDP] 12:28:51.552054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e4 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.552056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.552060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.552064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.552067 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.552071 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.552075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.552080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.563054 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.563062 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.563066 LLDP, length 82 [|LLDP] 12:28:51.563068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ed 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.563069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.563074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.563076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.563080 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.563085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.563089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.571313 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.571321 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.571325 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.571330 LLDP, length 82 [|LLDP] 12:28:51.571331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f3 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.571333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.571343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.571348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.571350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.571355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.582326 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.582334 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.582338 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.582343 LLDP, length 82 [|LLDP] 12:28:51.582344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fb fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.582346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.582350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.582354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.582357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.582361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.593333 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.593341 LLDP, length 82 [|LLDP] 12:28:51.593343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0704 63a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.593344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.593349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.593353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.593355 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.593359 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.593363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.593368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.601592 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.601601 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.601605 LLDP, length 82 [|LLDP] 12:28:51.601606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070a b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.601608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.601612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.601615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.601619 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.601623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.601628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.612603 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.612611 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.612615 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.612620 LLDP, length 82 [|LLDP] 12:28:51.612621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0713 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.612623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.612627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.612631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.612634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.612638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.620860 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.620868 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.620873 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.620877 LLDP, length 82 [|LLDP] 12:28:51.620878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0719 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.620880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.620884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.620889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.620891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.620896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.631869 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.631877 LLDP, length 82 [|LLDP] 12:28:51.631878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0721 ca05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.631880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.631884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.631888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.631891 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.631895 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.631899 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.631904 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.642879 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.642893 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.642897 LLDP, length 82 [|LLDP] 12:28:51.642898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072a 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.642900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.642905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.642907 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.642912 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.642916 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.642921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.651136 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.651144 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.651148 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.651153 LLDP, length 82 [|LLDP] 12:28:51.651154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0730 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.651156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.651160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.651165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.651167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.651171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.662151 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.662159 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.662163 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.662167 LLDP, length 82 [|LLDP] 12:28:51.662169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0738 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.662171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.662175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.662179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.662182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.662186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.673159 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.673167 LLDP, length 82 [|LLDP] 12:28:51.673169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0741 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.673170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.673175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.673179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.673182 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.673186 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.673191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.673195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.681415 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.681424 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.681428 LLDP, length 82 [|LLDP] 12:28:51.681430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0747 96d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.681431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.681436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.681438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.681442 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.681447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.681452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.692427 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.692437 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.692442 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.692446 LLDP, length 82 [|LLDP] 12:28:51.692447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074f fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.692449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.692454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.692458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.692460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.692465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.703453 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.703471 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.703476 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.703480 LLDP, length 82 [|LLDP] 12:28:51.703482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0758 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.703484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.703488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.703492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.703495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.703499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.711698 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.711708 LLDP, length 82 [|LLDP] 12:28:51.711709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075e b073 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.711711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.711715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.711720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.711722 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.711727 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.711731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.711735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.722706 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.722715 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.722719 LLDP, length 82 [|LLDP] 12:28:51.722721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0767 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.722722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.722727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.722729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.722734 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.722738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.722743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.730962 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.730971 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.730975 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.730979 LLDP, length 82 [|LLDP] 12:28:51.730981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076d 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.730983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.730987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.730991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.730993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.730998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.741973 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.741981 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.741985 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.741990 LLDP, length 82 [|LLDP] 12:28:51.741991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0775 ca07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.741993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.741997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.742002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.742004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.742008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.752984 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.752993 LLDP, length 82 [|LLDP] 12:28:51.752994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077e 306d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.752996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.753000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.753004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.753007 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.753011 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.753015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.753020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.761239 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.761247 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.761252 LLDP, length 82 [|LLDP] 12:28:51.761253 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0784 7d3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.761255 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.761259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.761262 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.761266 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.761270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.761275 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.772250 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.772259 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.772263 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.772268 LLDP, length 82 [|LLDP] 12:28:51.772269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078c e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.772271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.772275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.772279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.772282 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.772286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.783264 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.783273 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.783277 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.783281 LLDP, length 82 [|LLDP] 12:28:51.783283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0795 4a07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.783285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.783289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.783293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.783296 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.783301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.791518 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.791527 LLDP, length 82 [|LLDP] 12:28:51.791528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079b 96d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.791530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.791534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.791538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.791541 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.791545 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.791550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.791554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.802527 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.802534 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.802539 LLDP, length 82 [|LLDP] 12:28:51.802540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a3 fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.802542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.802546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.802548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.802553 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.802557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.802562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.810785 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.810793 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.810798 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.810802 LLDP, length 82 [|LLDP] 12:28:51.810803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07aa 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.810805 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.810809 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.810814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.810816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.810821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.821813 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.821822 LLDP, length 82 [|LLDP] 12:28:51.821824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b2 b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.821825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.821829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.832808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bb 16d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.832811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.832818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.832820 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.832825 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.832829 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.832834 LLDP, length 82 [|LLDP] 12:28:51.832835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.832840 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.832844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.841065 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.841074 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.841078 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.841083 LLDP, length 82 [|LLDP] 12:28:51.841084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c1 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.841086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.841090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.841093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.841097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.841102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.852076 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.852084 LLDP, length 82 [|LLDP] 12:28:51.852086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c9 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.852087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.852092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.852096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.852099 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.852103 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.852108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.852112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.863084 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.863092 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.863096 LLDP, length 82 [|LLDP] 12:28:51.863098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d2 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.863099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.863104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.863108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.863110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.863114 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.863119 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.871346 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.871353 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.871358 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.871362 LLDP, length 82 [|LLDP] 12:28:51.871363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d8 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.871365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.871369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.871373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.871375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.871380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.882354 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.882363 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.882367 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.882372 LLDP, length 82 [|LLDP] 12:28:51.882373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e0 e39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.882375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.882379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.882381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.882385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.882390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.893366 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.893374 LLDP, length 82 [|LLDP] 12:28:51.893376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e9 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.893378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.893382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.893386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.893388 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.893393 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.893397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.893402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.901621 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.901630 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.901634 LLDP, length 82 [|LLDP] 12:28:51.901636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ef 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.901638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.901643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.901647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.901649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.901653 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.901658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.912630 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.912639 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.912643 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.912647 LLDP, length 82 [|LLDP] 12:28:51.912649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f7 fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.912650 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.912655 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.912659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.912662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.912666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.920889 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.920897 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.920901 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.920905 LLDP, length 82 [|LLDP] 12:28:51.920907 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fe 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.920909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.920913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.920915 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.920919 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.920924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.931903 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.931914 LLDP, length 82 [|LLDP] 12:28:51.931916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0806 b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.931917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.931922 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.931926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.931928 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.931932 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.931937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.931942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.942911 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.942921 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.942925 LLDP, length 82 [|LLDP] 12:28:51.942926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080f 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.942928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.942932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.942936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.942939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.942943 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.942948 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.951169 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.951180 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.951185 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.951189 LLDP, length 82 [|LLDP] 12:28:51.951190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0815 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.951192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.951196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.951200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.951203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.951208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.964946 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.964955 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.964959 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.964964 LLDP, length 82 [|LLDP] 12:28:51.964965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081d ca0d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.964967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.964971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.964974 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.964978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.964982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.973189 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.973197 LLDP, length 82 [|LLDP] 12:28:51.973198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0826 306d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.973200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.973204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.973208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.973211 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.973215 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.973219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.973224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.981448 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.981457 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.981461 LLDP, length 82 [|LLDP] 12:28:51.981463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082c 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.981465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.981469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.981473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.981476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.981480 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.981484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.992457 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.992465 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.992469 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.992474 LLDP, length 82 [|LLDP] 12:28:51.992475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0834 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.992477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.992481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.992485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.992488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.992492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.003466 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.003475 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.003479 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.003483 LLDP, length 82 [|LLDP] 12:28:52.003485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083d 4a07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.003486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.003491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.003493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.003497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.003502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.011723 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.011732 LLDP, length 82 [|LLDP] 12:28:52.011733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0843 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.011734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.011739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.011743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.011745 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.011750 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.011754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.011758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.022735 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.022743 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.022748 LLDP, length 82 [|LLDP] 12:28:52.022749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084b fd3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.022751 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.022755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.022759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.022762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.022766 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.022770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.030990 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.030999 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.031003 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.031007 LLDP, length 82 [|LLDP] 12:28:52.031008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0852 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.031010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.031014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.031018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.031021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.031026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.042002 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.042011 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.042015 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.042020 LLDP, length 82 [|LLDP] 12:28:52.042021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085a b06f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.042023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.042027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.042030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.042034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.042039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.053011 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.053020 LLDP, length 82 [|LLDP] 12:28:52.053021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0863 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.053023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.053027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.053032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.053034 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.053038 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.053042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.053047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.061268 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.061277 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.061281 LLDP, length 82 [|LLDP] 12:28:52.061282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0869 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.061284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.061288 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.061292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.061295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.061299 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.061303 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.072284 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.072294 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.072298 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.072303 LLDP, length 82 [|LLDP] 12:28:52.072304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0871 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.072306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.072310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.072314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.072317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.072321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.083289 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.083298 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.083302 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.083306 LLDP, length 82 [|LLDP] 12:28:52.083308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087a 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.083309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.083314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.083316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.083320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.083325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.091548 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.091556 LLDP, length 82 [|LLDP] 12:28:52.091558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0880 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.091560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.091564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.091568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.091571 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.091575 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.091579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.091584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.102557 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.102567 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.102571 LLDP, length 82 [|LLDP] 12:28:52.102572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0888 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.102574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.102579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.102583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.102585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.102589 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.102594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.110814 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.110822 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.110826 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.110830 LLDP, length 82 [|LLDP] 12:28:52.110832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088f 308d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.110833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.110838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.110842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.110844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.110849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.121827 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.121836 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.121840 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.121844 LLDP, length 82 [|LLDP] 12:28:52.121846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0897 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.121848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.121852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.121854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.121858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.121863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.132836 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.132845 LLDP, length 82 [|LLDP] 12:28:52.132847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089f fd61 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.132849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.132853 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.132858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.132860 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.132865 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.132869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.132873 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.141094 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.141103 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.141107 LLDP, length 82 [|LLDP] 12:28:52.141109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a6 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.141110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.141115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.141119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.141122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.141126 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.141130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.152105 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.152113 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.152117 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.152122 LLDP, length 82 [|LLDP] 12:28:52.152123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ae b08d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.152125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.152129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.152133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.152136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.152140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.163112 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.163121 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.163125 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.163130 LLDP, length 82 [|LLDP] 12:28:52.163131 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b7 16f3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.163133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.163137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.163140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.163144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.163149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.171378 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.171387 LLDP, length 82 [|LLDP] 12:28:52.171389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bd 63c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.171390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.171395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.171399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.171401 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.171405 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.171410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.171414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.182381 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.182390 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.182394 LLDP, length 82 [|LLDP] 12:28:52.182395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c5 ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.182397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.182402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.182406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.182408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.182412 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.182417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.193392 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.193400 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.193405 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.193409 LLDP, length 82 [|LLDP] 12:28:52.193411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ce 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.193412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.193417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.193421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.193424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.193428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.201649 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.201658 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.201662 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.201667 LLDP, length 82 [|LLDP] 12:28:52.201668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d4 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.201670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.201674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.201676 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.201681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.201685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.212659 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.212667 LLDP, length 82 [|LLDP] 12:28:52.212669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08dc e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.212671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.212675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.212679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.212682 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.212686 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.212690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.212695 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.220918 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.220926 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.220931 LLDP, length 82 [|LLDP] 12:28:52.220932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e3 308d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.220934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.220938 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.220942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.220945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.220949 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.220954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.231948 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.231965 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.231970 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.231974 LLDP, length 82 [|LLDP] 12:28:52.231976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08eb 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.231978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.231983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.231987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.231990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.231994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.242947 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.242959 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.242964 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.242968 LLDP, length 82 [|LLDP] 12:28:52.242970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f3 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.242971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.242976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.242978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.242982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.242987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.251201 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.251213 LLDP, length 82 [|LLDP] 12:28:52.251215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fa 4a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.251216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.251221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.251225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.251228 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.251232 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.251237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.251241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.262210 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.262221 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.262225 LLDP, length 82 [|LLDP] 12:28:52.262227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0902 b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.262229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.262233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.262237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.262240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.262245 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.262250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.273223 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.273234 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.273239 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.273243 LLDP, length 82 [|LLDP] 12:28:52.273245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090b 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.273246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.273251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.273255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.273258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.273262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.281478 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.281489 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.281494 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.281498 LLDP, length 82 [|LLDP] 12:28:52.281500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0911 63c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.281502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.281506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.281508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.281512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.281517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.292487 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.292498 LLDP, length 82 [|LLDP] 12:28:52.292500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0919 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.292501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.292506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.292510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.292512 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.292517 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.292521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.292525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.300749 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.300760 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.300765 LLDP, length 82 [|LLDP] 12:28:52.300766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0920 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.300768 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.300772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.300776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.300779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.300783 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.300788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.311758 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.311769 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.311774 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.311778 LLDP, length 82 [|LLDP] 12:28:52.311780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0928 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.311782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.311786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.311790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.311793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.311797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.322770 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.322782 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.322787 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.322791 LLDP, length 82 [|LLDP] 12:28:52.322793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0930 e3c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.322795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.322799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.322801 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.322806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.322810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.331027 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.331039 LLDP, length 82 [|LLDP] 12:28:52.331041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0937 308f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.331043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.331047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.331051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.331054 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.331058 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.331063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.331067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.342036 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.342047 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.342052 LLDP, length 82 [|LLDP] 12:28:52.342053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093f 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.342055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.342059 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.342063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.342066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.342070 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.342075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.353044 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.353056 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.353060 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.353064 LLDP, length 82 [|LLDP] 12:28:52.353066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0947 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.353067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.353072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.353076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.353079 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.353083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.361304 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.361316 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.361320 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.361325 LLDP, length 82 [|LLDP] 12:28:52.361326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094e 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.361328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.361332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.361335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.361339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.361344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.372313 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.372325 LLDP, length 82 [|LLDP] 12:28:52.372326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0956 b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.372329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.372333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.372337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.372339 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.372344 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.372348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.372352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.383324 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.383343 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.383348 LLDP, length 82 [|LLDP] 12:28:52.383349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095f 16fb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.383351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.383356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.383360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.383362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.383366 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.383371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.391581 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.391594 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.391598 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.391603 LLDP, length 82 [|LLDP] 12:28:52.391605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0965 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.391606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.391611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.391615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.391617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.391622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.402591 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.402602 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.402606 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.402611 LLDP, length 82 [|LLDP] 12:28:52.402612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096d ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.402614 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.402618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.402621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.402625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.402629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.410850 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.410861 LLDP, length 82 [|LLDP] 12:28:52.410862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0974 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.410864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.410868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.410873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.410875 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.410880 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.410884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.410889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.421860 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.421871 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.421875 LLDP, length 82 [|LLDP] 12:28:52.421877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097c 7d5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.421879 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.421883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.421887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.421890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.421894 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.421899 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.432866 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.432878 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.432882 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.432887 LLDP, length 82 [|LLDP] 12:28:52.432888 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0984 e3c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.432890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.432894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.432898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.432901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.432905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.441129 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.441140 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.441145 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.441149 LLDP, length 82 [|LLDP] 12:28:52.441151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098b 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.441153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.441157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.441159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.441163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.441168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.452142 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.452155 LLDP, length 82 [|LLDP] 12:28:52.452157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0993 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.452159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.452163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.452167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.452170 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.452174 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.452179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.452183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.463149 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.463161 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.463166 LLDP, length 82 [|LLDP] 12:28:52.463167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099b fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.463169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.463174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.463178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.463181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.463185 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.463190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.471407 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.471419 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.471423 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.471428 LLDP, length 82 [|LLDP] 12:28:52.471429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a2 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.471431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.471435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.471440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.471443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.471447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.482416 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.482428 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.482432 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.482437 LLDP, length 82 [|LLDP] 12:28:52.482438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09aa b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.482440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.482444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.482446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.482451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.482455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.493453 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.493475 LLDP, length 82 [|LLDP] 12:28:52.493477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b3 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.493479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.493485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.493489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.493492 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.493497 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.493502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.493506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.501709 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.501729 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.501734 LLDP, length 82 [|LLDP] 12:28:52.501736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b9 63c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.501738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.501742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.501747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.501750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.501754 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.501759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.512704 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.512721 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.512725 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.512730 LLDP, length 82 [|LLDP] 12:28:52.512732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c1 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.512734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.512738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.512742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.512745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.512750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.520961 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.520976 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.520980 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.520984 LLDP, length 82 [|LLDP] 12:28:52.520986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c8 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.520988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.520992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.520995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.520999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.521004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.531970 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.531985 LLDP, length 82 [|LLDP] 12:28:52.531987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d0 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.531989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.531993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.531998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.532000 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.532004 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.532009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.532013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.542979 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.542994 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.542998 LLDP, length 82 [|LLDP] 12:28:52.543000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d8 e3c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.543002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.543006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.543010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.543013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.543017 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.543022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.551236 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.551251 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.551255 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.551260 LLDP, length 82 [|LLDP] 12:28:52.551262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09df 308f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.551264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.551268 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.551273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.551276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.551280 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.562249 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.562266 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.562270 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.562275 LLDP, length 82 [|LLDP] 12:28:52.562276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e7 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.562278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.562282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.562285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.562289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.562294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.573257 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.573272 LLDP, length 82 [|LLDP] 12:28:52.573273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ef fd5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.573275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.573280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.573284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.573287 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.573291 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.573295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.573300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.581520 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.581534 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.581539 LLDP, length 82 [|LLDP] 12:28:52.581541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f6 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.581543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.581548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.581552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.581555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.581559 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.581563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.592524 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.592538 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.592543 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.592547 LLDP, length 82 [|LLDP] 12:28:52.592549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fe b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.592551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.592555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.592559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.592562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.592567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.600781 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.600796 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.600800 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.600805 LLDP, length 82 [|LLDP] 12:28:52.600806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a04 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.600808 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.600812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.600815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.600820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.600824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.611791 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.611806 LLDP, length 82 [|LLDP] 12:28:52.611807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0d 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.611809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.611813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.611818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.611820 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.611824 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.611829 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.611833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.622803 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.622818 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.622822 LLDP, length 82 [|LLDP] 12:28:52.622824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a15 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.622826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.622830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.622834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.622837 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.622841 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.622846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.631061 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.631075 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.631079 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.631084 LLDP, length 82 [|LLDP] 12:28:52.631085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1c 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.631087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.631092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.631096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.631099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.631103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.642071 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.642086 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.642091 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.642096 LLDP, length 82 [|LLDP] 12:28:52.642097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a24 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.642099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.642104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.642107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.642111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.642115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.653084 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.653099 LLDP, length 82 [|LLDP] 12:28:52.653100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2c e3c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.653102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.653107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.653111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.653114 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.653118 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.653123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.653127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.661340 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.661355 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.661360 LLDP, length 82 [|LLDP] 12:28:52.661361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a33 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.661363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.661368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.661372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.661375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.661379 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.661384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.672350 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.672364 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.672369 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.672373 LLDP, length 82 [|LLDP] 12:28:52.672375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3b 96f7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.672377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.672381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.672385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.672388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.672392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.683363 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.683378 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.683383 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.683388 LLDP, length 82 [|LLDP] 12:28:52.683390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a43 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.683392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.683396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.683400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.683404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.683409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.691617 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.691632 LLDP, length 82 [|LLDP] 12:28:52.691633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4a 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.691635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.691640 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.691644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.691647 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.691652 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.691657 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.691662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.702629 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.702645 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.702649 LLDP, length 82 [|LLDP] 12:28:52.702651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a52 b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.702653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.702657 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.702662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.702664 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.702669 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.702674 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.710885 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.710900 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.710904 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.710908 LLDP, length 82 [|LLDP] 12:28:52.710910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a58 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.710912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.710917 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.710921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.710924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.710928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.721895 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.721912 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.721917 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.721922 LLDP, length 82 [|LLDP] 12:28:52.721923 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a61 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.721925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.721930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.721933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.721937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.721941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.732904 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.732919 LLDP, length 82 [|LLDP] 12:28:52.732921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a69 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.732923 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.732928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.732932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.732935 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.732939 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.732944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.732949 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.741163 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.741178 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.741184 LLDP, length 82 [|LLDP] 12:28:52.741185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a70 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.741187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.741192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.741196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.741199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.741203 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.741208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.752173 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.752187 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.752191 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.752196 LLDP, length 82 [|LLDP] 12:28:52.752197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a78 7d62 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.752199 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.752204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.752209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.752212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.752216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.763183 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.763198 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.763203 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.763208 LLDP, length 82 [|LLDP] 12:28:52.763210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a80 e3c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.763212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.763216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.763219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.763223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.763228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.771441 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.771456 LLDP, length 82 [|LLDP] 12:28:52.771458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a87 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.771460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.771465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.771469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.771472 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.771476 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.771481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.771485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.782449 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.782464 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.782469 LLDP, length 82 [|LLDP] 12:28:52.782470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8f 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.782472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.782477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.782481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.782484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.782488 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.782493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.790710 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.790725 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.790729 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.790734 LLDP, length 82 [|LLDP] 12:28:52.790736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a95 e3c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.790737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.790742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.790746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.790749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.790753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.801718 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.801733 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.801738 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.801742 LLDP, length 82 [|LLDP] 12:28:52.801744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9e 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.801746 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.801750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.801753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.801757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.801762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.812727 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.812742 LLDP, length 82 [|LLDP] 12:28:52.812744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa6 b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.812746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.812750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.812755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.812758 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.812762 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.812766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.812771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.820986 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.821000 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.821005 LLDP, length 82 [|LLDP] 12:28:52.821007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aac fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.821008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.821013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.821017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.821020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.821024 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.821029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.831995 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.832010 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.832014 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.832018 LLDP, length 82 [|LLDP] 12:28:52.832020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab5 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.832022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.832026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.832030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.832033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.832038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.843004 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.843019 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.843023 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.843028 LLDP, length 82 [|LLDP] 12:28:52.843030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abd ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.843031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.843036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.843038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.843043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.843048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.851265 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.851279 LLDP, length 82 [|LLDP] 12:28:52.851281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac4 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.851283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.851287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.851291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.851294 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.851298 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.851303 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.851307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.862276 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.862292 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.862297 LLDP, length 82 [|LLDP] 12:28:52.862298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acc 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.862300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.862305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.862309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.862312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.862316 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.862321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.873287 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.873301 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.873306 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.873310 LLDP, length 82 [|LLDP] 12:28:52.873312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad4 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.873314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.873319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.873323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.873326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.873330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.881544 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.881559 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.881563 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.881568 LLDP, length 82 [|LLDP] 12:28:52.881569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0adb 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.881571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.881576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.881578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.881583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.881588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.892554 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.892569 LLDP, length 82 [|LLDP] 12:28:52.892571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae3 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.892573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.892577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.892582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.892584 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.892589 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.892593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.892598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.900810 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.900824 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.900829 LLDP, length 82 [|LLDP] 12:28:52.900830 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae9 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.900832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.900836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.900841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.900844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.900848 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.900853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.911818 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.911832 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.911837 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.911842 LLDP, length 82 [|LLDP] 12:28:52.911843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af2 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.911845 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.911850 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.911854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.911857 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.911861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.922829 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.922843 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.922847 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.922852 LLDP, length 82 [|LLDP] 12:28:52.922854 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afa b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.922855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.922860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.922863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.922867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.922872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.931089 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.931103 LLDP, length 82 [|LLDP] 12:28:52.931105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b00 fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.931107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.931111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.931116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.931118 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.931122 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.931127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.931131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.942098 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.942113 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.942118 LLDP, length 82 [|LLDP] 12:28:52.942120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b09 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.942121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.942126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.942130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.942133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.942137 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.942142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.953109 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.953125 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.953129 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.953134 LLDP, length 82 [|LLDP] 12:28:52.953135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b11 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.953137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.953142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.953146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.953149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.953153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.961366 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.961380 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.961385 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.961389 LLDP, length 82 [|LLDP] 12:28:52.961391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b18 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.961393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.961397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.961400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.961404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.961409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.972380 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.972395 LLDP, length 82 [|LLDP] 12:28:52.972396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b20 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.972398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.972403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.972407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.972410 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.972414 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.972419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.972423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.983390 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.983406 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.983410 LLDP, length 82 [|LLDP] 12:28:52.983412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b28 e3c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.983414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.983418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.983423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.983426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.983430 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.983435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.991646 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.991661 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.991666 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.991670 LLDP, length 82 [|LLDP] 12:28:52.991672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2f 308f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.991674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.991679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.991683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.991686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.991690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.002656 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.002672 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.002676 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.002681 LLDP, length 82 [|LLDP] 12:28:53.002682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b37 96fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.002684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.002688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.002691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.002695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.002700 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.010913 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.010927 LLDP, length 82 [|LLDP] 12:28:53.010929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3d e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.010931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.010936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.010940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.010943 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.010947 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.010952 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.010956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.021923 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.021937 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.021942 LLDP, length 82 [|LLDP] 12:28:53.021944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b46 4a29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.021946 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.021950 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.021954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.021957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.021961 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.021966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.032934 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.032949 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.032953 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.032957 LLDP, length 82 [|LLDP] 12:28:53.032959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4e b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.032961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.032965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.032969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.032972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.032977 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.041191 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.041205 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.041210 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.041214 LLDP, length 82 [|LLDP] 12:28:53.041216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b54 fd5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.041218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.041222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.041225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.041229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.041234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.052203 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.052217 LLDP, length 82 [|LLDP] 12:28:53.052219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5d 63c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.052221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.052225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.052230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.052232 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.052237 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.052241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.052246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.063209 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.063223 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.063228 LLDP, length 82 [|LLDP] 12:28:53.063230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b65 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.063232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.063236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.063241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.063243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.063247 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.063252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.071470 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.071486 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.071491 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.071495 LLDP, length 82 [|LLDP] 12:28:53.071497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6c 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.071499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.071504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.071508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.071511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.071515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.082479 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.082495 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.082499 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.082504 LLDP, length 82 [|LLDP] 12:28:53.082505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b74 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.082507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.082511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.082514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.082518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.082523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.090736 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.090750 LLDP, length 82 [|LLDP] 12:28:53.090751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7a ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.090753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.090758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.090763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.090765 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.090770 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.090774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.090779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.101749 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.101765 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.101770 LLDP, length 82 [|LLDP] 12:28:53.101771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b83 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.101773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.101777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.101782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.101785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.101789 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.101794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.112760 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.112775 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.112779 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.112784 LLDP, length 82 [|LLDP] 12:28:53.112785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8b 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.112787 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.112791 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.112795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.112798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.112803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.121018 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.121034 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.121038 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.121043 LLDP, length 82 [|LLDP] 12:28:53.121044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b91 e3c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.121046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.121051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.121053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.121058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.121062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.132030 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.132044 LLDP, length 82 [|LLDP] 12:28:53.132045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9a 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.132047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.132052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.132056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.132059 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.132063 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.132067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.132072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.143034 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.143048 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.143053 LLDP, length 82 [|LLDP] 12:28:53.143054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba2 b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.143056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.143061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.143065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.143068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.143072 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.143076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.151295 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.151309 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.151314 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.151318 LLDP, length 82 [|LLDP] 12:28:53.151320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba8 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.151322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.151326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.151330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.151333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.151344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.162303 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.162318 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.162323 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.162327 LLDP, length 82 [|LLDP] 12:28:53.162328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb1 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.162330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.162334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.162337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.162341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.162346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.173313 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.173329 LLDP, length 82 [|LLDP] 12:28:53.173331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb9 ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.173333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.173337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.173342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.173345 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.173349 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.173354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.173358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.181573 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.181589 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.181593 LLDP, length 82 [|LLDP] 12:28:53.181595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc0 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.181596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.181601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.181605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.181607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.181612 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.181616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.192583 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.192599 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.192604 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.192608 LLDP, length 82 [|LLDP] 12:28:53.192610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc8 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.192612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.192617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.192621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.192624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.192628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.200838 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.200854 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.200858 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.200863 LLDP, length 82 [|LLDP] 12:28:53.200864 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bce ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.200866 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.200870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.200873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.200877 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.200882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.211850 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.211865 LLDP, length 82 [|LLDP] 12:28:53.211866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd7 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.211868 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.211873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.211877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.211879 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.211884 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.211888 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.211892 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.222859 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.222874 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.222879 LLDP, length 82 [|LLDP] 12:28:53.222880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdf 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.222882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.222887 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.222891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.222894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.222898 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.222903 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.231117 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.231132 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.231136 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.231141 LLDP, length 82 [|LLDP] 12:28:53.231142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be5 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.231144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.231149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.231153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.231156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.231161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.242128 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.242143 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.242147 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.242152 LLDP, length 82 [|LLDP] 12:28:53.242153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bee 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.242155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.242160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.242163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.242167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.242171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.253148 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.253163 LLDP, length 82 [|LLDP] 12:28:53.253165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf6 b095 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.253167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.253172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.253176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.253178 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.253183 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.253187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.253192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.261396 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.261411 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.261415 LLDP, length 82 [|LLDP] 12:28:53.261417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfc fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.261419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.261424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.261428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.261431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.261435 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.261440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.272404 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.272420 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.272425 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.272429 LLDP, length 82 [|LLDP] 12:28:53.272431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c05 63c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.272433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.272437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.272441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.272444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.272448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.283417 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.283432 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.283437 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.283441 LLDP, length 82 [|LLDP] 12:28:53.283443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0d ca29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.283445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.283449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.283452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.283456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.283461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.291679 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.291697 LLDP, length 82 [|LLDP] 12:28:53.291699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c14 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.291701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.291706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.291710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.291713 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.291717 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.291722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.291726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.302688 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.302704 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.302709 LLDP, length 82 [|LLDP] 12:28:53.302710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1c 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.302712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.302717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.302721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.302724 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.302728 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.302733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.310942 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.310957 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.310961 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.310966 LLDP, length 82 [|LLDP] 12:28:53.310967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c22 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.310969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.310973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.310978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.310981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.310985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.321950 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.321965 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.321970 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.321974 LLDP, length 82 [|LLDP] 12:28:53.321976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2b 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.321978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.321982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.321985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.321989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.321994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.332961 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.332975 LLDP, length 82 [|LLDP] 12:28:53.332976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c33 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.332978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.332983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.332987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.332989 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.332994 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.332998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.333003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.341221 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.341235 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.341240 LLDP, length 82 [|LLDP] 12:28:53.341241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c39 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.341243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.341247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.341251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.341254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.341258 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.341263 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.352231 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.352245 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.352250 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.352254 LLDP, length 82 [|LLDP] 12:28:53.352256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c42 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.352258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.352262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.352266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.352269 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.352273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.363238 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.363253 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.363258 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.363262 LLDP, length 82 [|LLDP] 12:28:53.363264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4a b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.363266 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.363270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.363273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.363277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.363282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.371497 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.371512 LLDP, length 82 [|LLDP] 12:28:53.371514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c50 fd61 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.371516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.371521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.371525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.371528 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.371533 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.371537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.371542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.382506 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.382521 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.382525 LLDP, length 82 [|LLDP] 12:28:53.382527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c59 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.382529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.382533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.382537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.382540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.382544 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.382549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.390765 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.390780 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.390784 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.390789 LLDP, length 82 [|LLDP] 12:28:53.390790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5f b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.390792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.390797 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.390801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.390804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.390809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.401779 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.401793 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.401797 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.401802 LLDP, length 82 [|LLDP] 12:28:53.401803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c68 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.401805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.401809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.401812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.401816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.401821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.412785 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.412799 LLDP, length 82 [|LLDP] 12:28:53.412801 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c70 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.412803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.412807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.412812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.412815 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.412819 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.412823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.412828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.421044 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.421058 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.421063 LLDP, length 82 [|LLDP] 12:28:53.421064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c76 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.421066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.421071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.421075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.421078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.421082 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.421086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.432053 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.432068 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.432073 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.432077 LLDP, length 82 [|LLDP] 12:28:53.432079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7f 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.432081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.432085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.432089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.432092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.432096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.443063 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.443077 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.443082 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.443086 LLDP, length 82 [|LLDP] 12:28:53.443088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c87 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.443090 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.443094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.443097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.443101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.443106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.451322 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.451343 LLDP, length 82 [|LLDP] 12:28:53.451345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8d e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.451347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.451352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.451356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.451359 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.451363 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.451368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.451372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.462329 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.462343 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.462348 LLDP, length 82 [|LLDP] 12:28:53.462350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c96 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.462351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.462356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.462360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.462363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.462367 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.462372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.473341 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.473355 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.473360 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.473365 LLDP, length 82 [|LLDP] 12:28:53.473366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9e b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.473368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.473373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.473377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.473380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.473385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.481598 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.481613 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.481617 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.481622 LLDP, length 82 [|LLDP] 12:28:53.481623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca4 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.481625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.481629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.481632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.481637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.481642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.492608 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.492623 LLDP, length 82 [|LLDP] 12:28:53.492624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cad 63c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.492626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.492631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.492635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.492638 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.492642 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.492647 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.492651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.500867 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.500881 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.500886 LLDP, length 82 [|LLDP] 12:28:53.500887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb3 b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.500889 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.500894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.500898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.500901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.500905 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.500910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.511887 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.511908 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.511912 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.511917 LLDP, length 82 [|LLDP] 12:28:53.511919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbc 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.511921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.511926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.511930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.511933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.511938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.522914 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.522937 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.522943 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.522947 LLDP, length 82 [|LLDP] 12:28:53.522949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc4 7d5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.522951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.522956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.522959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.522963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.522968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.531157 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.531176 LLDP, length 82 [|LLDP] 12:28:53.531178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cca ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.531180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.531185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.531189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.531192 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.531196 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.531200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.531206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.542161 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.542177 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.542182 LLDP, length 82 [|LLDP] 12:28:53.542184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd3 308f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.542185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.542190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.542194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.542197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.542201 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.542205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.553174 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.553192 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.553197 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.553201 LLDP, length 82 [|LLDP] 12:28:53.553203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cdb 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.553205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.553209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.553213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.553216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.553221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.561430 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.561447 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.561451 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.561456 LLDP, length 82 [|LLDP] 12:28:53.561458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce1 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.561460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.561464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.561467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.561471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.561476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.572437 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.572453 LLDP, length 82 [|LLDP] 12:28:53.572455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cea 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.572457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.572461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.572466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.572468 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.572473 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.572477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.572481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.580697 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.580715 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.580720 LLDP, length 82 [|LLDP] 12:28:53.580721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf0 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.580723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.580728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.580732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.580734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.580739 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.580743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.591707 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.591725 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.591729 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.591734 LLDP, length 82 [|LLDP] 12:28:53.591736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf8 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.591738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.591742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.591747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.591749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.591754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.602716 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.602731 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.602735 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.602740 LLDP, length 82 [|LLDP] 12:28:53.602741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d01 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.602743 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.602747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.602750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.602755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.602759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.610969 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.610983 LLDP, length 82 [|LLDP] 12:28:53.610985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d07 b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.610986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.610991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.610995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.610998 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.611002 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.611007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.611012 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.621979 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.621993 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.621998 LLDP, length 82 [|LLDP] 12:28:53.622000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d10 16fa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.622001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.622006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.622010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.622013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.622017 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.622022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.632987 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.633000 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.633004 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.633009 LLDP, length 82 [|LLDP] 12:28:53.633010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d18 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.633012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.633017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.633021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.633024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.633028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.641246 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.641259 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.641264 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.641268 LLDP, length 82 [|LLDP] 12:28:53.641270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1e ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.641272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.641276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.641279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.641283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.641288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.652256 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.652270 LLDP, length 82 [|LLDP] 12:28:53.652271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d27 308d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.652273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.652278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.652282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.652285 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.652289 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.652294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.652298 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.663265 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.663280 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.663284 LLDP, length 82 [|LLDP] 12:28:53.663285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2f 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.663287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.663292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.663296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.663299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.663303 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.663307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.671526 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.671540 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.671545 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.671549 LLDP, length 82 [|LLDP] 12:28:53.671551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d35 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.671553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.671557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.671561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.671564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.671568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.682536 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.682551 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.682555 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.682559 LLDP, length 82 [|LLDP] 12:28:53.682561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3e 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.682563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.682567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.682570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.682574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.682579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.690794 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.690807 LLDP, length 82 [|LLDP] 12:28:53.690809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d44 96f3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.690811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.690815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.690819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.690822 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.690826 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.690830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.690835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.701803 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.701818 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.701822 LLDP, length 82 [|LLDP] 12:28:53.701824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4c fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.701826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.701830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.701834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.701837 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.701841 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.701846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.712814 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.712828 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.712832 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.712837 LLDP, length 82 [|LLDP] 12:28:53.712838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d55 63c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.712840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.712844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.712849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.712852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.712856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.721070 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.721084 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.721088 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.721093 LLDP, length 82 [|LLDP] 12:28:53.721094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5b b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.721096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.721100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.721103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.721107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.721111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.732081 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.732094 LLDP, length 82 [|LLDP] 12:28:53.732096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d64 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.732098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.732102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.732106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.732109 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.732113 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.732118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.732122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.743091 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.743104 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.743109 LLDP, length 82 [|LLDP] 12:28:53.743110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6c 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.743112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.743116 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.743120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.743123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.743127 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.743132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.751361 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.751376 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.751380 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.751385 LLDP, length 82 [|LLDP] 12:28:53.751386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d72 ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.751388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.751393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.751397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.751400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.751404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.762359 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.762374 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.762378 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.762383 LLDP, length 82 [|LLDP] 12:28:53.762384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7b 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.762386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.762390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.762393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.762397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.762402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.773369 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.773383 LLDP, length 82 [|LLDP] 12:28:53.773384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d83 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.773386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.773391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.773395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.773398 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.773402 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.773407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.773411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.781626 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.781640 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.781644 LLDP, length 82 [|LLDP] 12:28:53.781646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d89 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.781648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.781652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.781656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.781659 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.781663 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.781668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.792636 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.792649 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.792654 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.792659 LLDP, length 82 [|LLDP] 12:28:53.792660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d92 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.792662 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.792666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.792671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.792673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.792678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.800893 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.800908 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.800912 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.800917 LLDP, length 82 [|LLDP] 12:28:53.800918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d98 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.800920 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.800924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.800927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.800931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.800936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.811905 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.811919 LLDP, length 82 [|LLDP] 12:28:53.811920 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da0 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.811922 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.811927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.811931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.811934 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.811938 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.811942 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.811947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.822917 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.822932 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.822936 LLDP, length 82 [|LLDP] 12:28:53.822937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da9 63c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.822939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.822943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.822947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.822950 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.822954 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.822959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.831174 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.831187 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.831192 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.831196 LLDP, length 82 [|LLDP] 12:28:53.831197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0daf b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.831199 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.831204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.831208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.831211 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.831215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.842182 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.842196 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.842200 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.842204 LLDP, length 82 [|LLDP] 12:28:53.842206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db8 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.842208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.842212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.842215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.842220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.842224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.853193 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.853208 LLDP, length 82 [|LLDP] 12:28:53.853209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc0 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.853211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.853215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.853219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.853222 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.853226 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.853230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.853235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.861452 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.861466 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.861471 LLDP, length 82 [|LLDP] 12:28:53.861472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc6 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.861474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.861478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.861483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.861485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.861490 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.861494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.872461 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.872474 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.872479 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.872483 LLDP, length 82 [|LLDP] 12:28:53.872484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dcf 3095 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.872486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.872491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.872495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.872498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.872503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.880719 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.880733 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.880737 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.880741 LLDP, length 82 [|LLDP] 12:28:53.880743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd5 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.880744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.880748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.880751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.880755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.880760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.891727 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.891739 LLDP, length 82 [|LLDP] 12:28:53.891740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddd e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.891742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.891747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.891751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.891754 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.891758 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.891762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.891766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.902744 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.902761 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.902766 LLDP, length 82 [|LLDP] 12:28:53.902767 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de6 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.902769 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.902774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.902778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.902781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.902785 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.902790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.910997 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.911013 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.911018 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.911022 LLDP, length 82 [|LLDP] 12:28:53.911023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dec 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.911025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.911030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.911034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.911037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.911041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.922005 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.922019 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.922024 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.922028 LLDP, length 82 [|LLDP] 12:28:53.922029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df4 fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.922031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.922036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.922039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.922043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.922048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.933020 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.933033 LLDP, length 82 [|LLDP] 12:28:53.933035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfd 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.933037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.933041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.933046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.933049 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.933053 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.933057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.933062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.941277 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.941291 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.941295 LLDP, length 82 [|LLDP] 12:28:53.941297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e03 b08d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.941298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.941303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.941307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.941309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.941314 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.941318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.952286 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.952300 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.952304 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.952309 LLDP, length 82 [|LLDP] 12:28:53.952310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0c 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.952313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.952317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.952321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.952324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.952329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.963295 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.963308 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.963313 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.963317 LLDP, length 82 [|LLDP] 12:28:53.963319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e14 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.963321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.963325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.963328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.963332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.963346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.971553 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.971566 LLDP, length 82 [|LLDP] 12:28:53.971567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1a ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.971569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.971574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.971578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.971581 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.971585 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.971590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.971594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.982566 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.982580 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.982584 LLDP, length 82 [|LLDP] 12:28:53.982585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e23 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.982587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.982592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.982596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.982599 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.982603 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.982608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.990823 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.990836 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.990841 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.990845 LLDP, length 82 [|LLDP] 12:28:53.990846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e29 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.990848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.990853 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.990857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.990860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.990864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.001830 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.001843 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.001848 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.001852 LLDP, length 82 [|LLDP] 12:28:54.001853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e31 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.001855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.001859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.001862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.001866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.001871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.012840 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.012854 LLDP, length 82 [|LLDP] 12:28:54.012856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3a 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.012858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.012862 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.012866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.012869 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.012873 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.012878 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.012882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.021098 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.021112 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.021117 LLDP, length 82 [|LLDP] 12:28:54.021118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e40 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.021120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.021124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.021129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.021132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.021136 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.021140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.032108 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.032122 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.032126 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.032131 LLDP, length 82 [|LLDP] 12:28:54.032132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e48 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.032134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.032139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.032143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.032146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.032151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.043121 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.043135 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.043140 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.043144 LLDP, length 82 [|LLDP] 12:28:54.043146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e51 63c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.043147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.043152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.043154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.043158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.043163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.051385 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.051398 LLDP, length 82 [|LLDP] 12:28:54.051400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e57 b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.051401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.051406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.051410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.051412 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.051417 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.051421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.051425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.062387 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.062400 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.062404 LLDP, length 82 [|LLDP] 12:28:54.062406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e60 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.062408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.062412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.062416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.062419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.062423 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.062427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.070644 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.070657 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.070662 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.070666 LLDP, length 82 [|LLDP] 12:28:54.070667 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e66 63c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.070669 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.070674 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.070678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.070680 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.070685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.081654 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.081667 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.081672 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.081676 LLDP, length 82 [|LLDP] 12:28:54.081678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6e ca29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.081680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.081684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.081687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.081691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.081695 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.092665 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.092678 LLDP, length 82 [|LLDP] 12:28:54.092680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e77 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.092681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.092686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.092690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.092693 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.092697 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.092701 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.092706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.100923 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.100936 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.100941 LLDP, length 82 [|LLDP] 12:28:54.100942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7d 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.100944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.100948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.100953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.100955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.100959 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.100964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.111933 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.111946 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.111950 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.111955 LLDP, length 82 [|LLDP] 12:28:54.111956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e85 e3c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.111958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.111963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.111967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.111970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.111974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.122967 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.122993 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.122998 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.123003 LLDP, length 82 [|LLDP] 12:28:54.123005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8e 4a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.123007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.123011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.123014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.123019 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.123024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.131211 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.131228 LLDP, length 82 [|LLDP] 12:28:54.131230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e94 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.131232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.131236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.131241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.131244 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.131248 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.131252 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.131257 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.142212 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.142226 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.142230 LLDP, length 82 [|LLDP] 12:28:54.142232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9c fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.142234 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.142238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.142242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.142245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.142249 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.142254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.153239 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.153261 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.153265 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.153270 LLDP, length 82 [|LLDP] 12:28:54.153272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea5 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.153274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.153279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.153283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.153291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.153296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.161487 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.161504 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.161508 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.161513 LLDP, length 82 [|LLDP] 12:28:54.161514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eab b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.161517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.161521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.161524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.161528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.161533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.172497 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.172514 LLDP, length 82 [|LLDP] 12:28:54.172516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb4 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.172517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.172522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.172526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.172529 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.172534 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.172538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.172542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.180748 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.180761 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.180766 LLDP, length 82 [|LLDP] 12:28:54.180768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eba 63c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.180769 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.180774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.180778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.180781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.180785 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.180790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.191776 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.191800 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.191804 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.191809 LLDP, length 82 [|LLDP] 12:28:54.191811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec2 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.191813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.191818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.191822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.191825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.191830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.202781 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.202802 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.202806 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.202811 LLDP, length 82 [|LLDP] 12:28:54.202812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecb 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.202814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.202819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.202822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.202826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.202830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.211032 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.211048 LLDP, length 82 [|LLDP] 12:28:54.211050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed1 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.211052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.211056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.211061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.211064 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.211068 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.211072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.211077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.222052 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.222074 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.222079 LLDP, length 82 [|LLDP] 12:28:54.222081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed9 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.222083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.222088 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.222092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.222095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.222099 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.222104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.233054 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.233071 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.233075 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.233079 LLDP, length 82 [|LLDP] 12:28:54.233081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee2 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.233084 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.233088 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.233092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.233095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.233099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.241304 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.241319 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.241323 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.241327 LLDP, length 82 [|LLDP] 12:28:54.241329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee8 96fb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.241331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.241335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.241338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.241342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.241346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.252325 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.252343 LLDP, length 82 [|LLDP] 12:28:54.252345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef0 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.252347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.252352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.252356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.252359 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.252363 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.252368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.252373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.263362 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.263388 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.263393 LLDP, length 82 [|LLDP] 12:28:54.263395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef9 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.263397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.263402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.263406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.263409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.263414 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.263419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.271590 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.271606 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.271611 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.271615 LLDP, length 82 [|LLDP] 12:28:54.271617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eff b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.271618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.271623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.271627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.271630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.271634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.282597 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.282612 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.282617 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.282622 LLDP, length 82 [|LLDP] 12:28:54.282624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f08 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.282625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.282630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.282632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.282637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.282642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.290851 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.290866 LLDP, length 82 [|LLDP] 12:28:54.290867 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0e 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.290869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.290874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.290878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.290881 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.290886 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.290890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.290895 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.301862 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.301883 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.301887 LLDP, length 82 [|LLDP] 12:28:54.301889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f16 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.301891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.301895 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.301899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.301902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.301906 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.301911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.312872 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.312886 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.312891 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.312895 LLDP, length 82 [|LLDP] 12:28:54.312897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1f 308f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.312899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.312903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.312908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.312910 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.312915 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.321129 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.321143 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.321148 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.321153 LLDP, length 82 [|LLDP] 12:28:54.321154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f25 7d5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.321156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.321160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.321163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.321167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.321172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.332142 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.332158 LLDP, length 82 [|LLDP] 12:28:54.332160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2d e3c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.332162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.332166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.332171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.332173 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.332178 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.332182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.332187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.343150 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.343166 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.343171 LLDP, length 82 [|LLDP] 12:28:54.343172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f36 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.343174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.343179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.343184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.343186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.343190 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.343195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.351411 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.351427 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.351431 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.351436 LLDP, length 82 [|LLDP] 12:28:54.351438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3c 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.351440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.351444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.351449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.351452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.351456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.362417 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.362433 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.362438 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.362442 LLDP, length 82 [|LLDP] 12:28:54.362444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f44 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.362446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.362450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.362453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.362457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.362461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.370677 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.370693 LLDP, length 82 [|LLDP] 12:28:54.370694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4b 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.370696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.370701 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.370705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.370708 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.370712 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.370716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.370721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.381688 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.381703 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.381707 LLDP, length 82 [|LLDP] 12:28:54.381709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f53 b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.381711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.381715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.381719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.381722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.381726 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.381731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.392697 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.392711 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.392716 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.392720 LLDP, length 82 [|LLDP] 12:28:54.392722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5c 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.392724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.392729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.392733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.392736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.392740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.400956 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.400970 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.400975 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.400979 LLDP, length 82 [|LLDP] 12:28:54.400981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f62 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.400982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.400987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.400989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.400993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.400998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.411964 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.411979 LLDP, length 82 [|LLDP] 12:28:54.411981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6a ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.411983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.411988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.411992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.411995 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.411999 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.412003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.412008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.422975 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.422990 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.422995 LLDP, length 82 [|LLDP] 12:28:54.422996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f73 308d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.422998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.423003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.423007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.423010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.423014 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.423019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.431233 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.431248 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.431253 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.431257 LLDP, length 82 [|LLDP] 12:28:54.431259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f79 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.431261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.431265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.431269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.431272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.431277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.442244 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.442260 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.442264 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.442269 LLDP, length 82 [|LLDP] 12:28:54.442270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f81 e3c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.442272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.442276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.442279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.442283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.442288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.453254 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.453269 LLDP, length 82 [|LLDP] 12:28:54.453270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8a 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.453272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.453277 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.453281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.453284 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.453288 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.453293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.453297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.461511 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.461526 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.461531 LLDP, length 82 [|LLDP] 12:28:54.461532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f90 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.461535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.461539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.461543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.461546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.461550 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.461555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.472521 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.472535 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.472539 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.472544 LLDP, length 82 [|LLDP] 12:28:54.472545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f98 fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.472547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.472552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.472556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.472559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.472563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.480779 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.480795 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.480799 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.480804 LLDP, length 82 [|LLDP] 12:28:54.480805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9f 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.480807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.480811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.480814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.480818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.480823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.491789 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.491803 LLDP, length 82 [|LLDP] 12:28:54.491805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa7 b094 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.491807 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.491811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.491816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.491818 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.491823 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.491828 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.491832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.502798 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.502813 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.502818 LLDP, length 82 [|LLDP] 12:28:54.502819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb0 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.502821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.502826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.502830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.502832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.502836 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.502841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.511057 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.511072 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.511077 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.511081 LLDP, length 82 [|LLDP] 12:28:54.511083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb6 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.511085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.511089 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.511094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.511097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.511101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.522069 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.522084 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.522089 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.522093 LLDP, length 82 [|LLDP] 12:28:54.522095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbe ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.522097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.522101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.522104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.522108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.522113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.533077 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.533091 LLDP, length 82 [|LLDP] 12:28:54.533093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc7 308f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.533095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.533099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.533104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.533107 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.533111 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.533115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.533120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.541358 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.541381 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.541386 LLDP, length 82 [|LLDP] 12:28:54.541388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fcd 7d5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.541390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.541395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.541400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.541403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.541407 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.541412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.552352 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.552370 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.552375 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.552379 LLDP, length 82 [|LLDP] 12:28:54.552380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd5 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.552382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.552387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.552391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.552394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.552399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.563367 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.563382 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.563386 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.563391 LLDP, length 82 [|LLDP] 12:28:54.563392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fde 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.563394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.563398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.563401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.563405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.563410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.571612 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.571625 LLDP, length 82 [|LLDP] 12:28:54.571626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe4 96f7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.571628 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.571632 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.571637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.571640 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.571644 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.571648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.571653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.582624 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.582637 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.582641 LLDP, length 82 [|LLDP] 12:28:54.582643 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fec fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.582645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.582650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.582654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.582656 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.582661 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.582665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.590877 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.590891 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.590895 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.590900 LLDP, length 82 [|LLDP] 12:28:54.590901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff3 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.590903 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.590907 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.590912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.590914 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.590919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.601887 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.601901 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.601905 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.601910 LLDP, length 82 [|LLDP] 12:28:54.601911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffb b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.601913 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.601917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.601920 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.601924 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.601929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.612896 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.612910 LLDP, length 82 [|LLDP] 12:28:54.612911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1004 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.612913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.612918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.612922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.612925 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.612929 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.612934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.612938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.621154 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.621167 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.621171 LLDP, length 82 [|LLDP] 12:28:54.621172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100a 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.621174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.621179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.621183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.621186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.621190 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.621195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.632165 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.632178 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.632182 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.632187 LLDP, length 82 [|LLDP] 12:28:54.632188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1012 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.632190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.632194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.632199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.632201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.632206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.643175 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.643188 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.643192 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.643197 LLDP, length 82 [|LLDP] 12:28:54.643198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101b 308d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.643200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.643204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.643207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.643211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.643216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.651452 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.651471 LLDP, length 82 [|LLDP] 12:28:54.651473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1021 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.651475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.651479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.651484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.651487 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.651491 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.651496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.651501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.662447 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.662461 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.662465 LLDP, length 82 [|LLDP] 12:28:54.662467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1029 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.662469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.662473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.662477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.662480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.662484 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.662489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.670704 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.670718 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.670722 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.670726 LLDP, length 82 [|LLDP] 12:28:54.670728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1030 308d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.670730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.670734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.670739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.670741 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.670746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.681716 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.681731 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.681735 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.681739 LLDP, length 82 [|LLDP] 12:28:54.681741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1038 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.681742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.681747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.681749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.681754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.681758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.692724 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.692737 LLDP, length 82 [|LLDP] 12:28:54.692739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1040 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.692741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.692745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.692750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.692753 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.692757 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.692761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.692766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.700982 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.700998 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.701002 LLDP, length 82 [|LLDP] 12:28:54.701004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1047 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.701006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.701011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.701015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.701018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.701022 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.701027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.711996 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.712010 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.712015 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.712019 LLDP, length 82 [|LLDP] 12:28:54.712021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104f b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.712023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.712027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.712032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.712034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.712039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.722998 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.723012 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.723017 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.723021 LLDP, length 82 [|LLDP] 12:28:54.723022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1058 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.723024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.723028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.723031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.723035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.723040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.731259 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.731274 LLDP, length 82 [|LLDP] 12:28:54.731275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105e 63c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.731277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.731281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.731286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.731288 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.731292 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.731297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.731301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.742289 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.742309 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.742314 LLDP, length 82 [|LLDP] 12:28:54.742315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1066 ca2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.742317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.742322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.742326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.742329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.742334 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.742339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.753297 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.753318 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.753323 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.753328 LLDP, length 82 [|LLDP] 12:28:54.753329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106f 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.753331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.753336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.753340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.753343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.753348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.761559 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.761580 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.761585 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.761589 LLDP, length 82 [|LLDP] 12:28:54.761591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1075 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.761593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.761597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.761601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.761605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.761610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.772548 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.772562 LLDP, length 82 [|LLDP] 12:28:54.772563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107d e3c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.772565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.772570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.772574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.772577 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.772581 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.772586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.772591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.780835 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.780849 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.780853 LLDP, length 82 [|LLDP] 12:28:54.780854 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1084 308f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.780856 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.780861 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.780865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.780868 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.780872 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.780877 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.791858 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.791890 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.791895 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.791900 LLDP, length 82 [|LLDP] 12:28:54.791902 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108c 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.791904 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.791909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.791913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.791917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.791922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.802868 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.802904 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.802909 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.802913 LLDP, length 82 [|LLDP] 12:28:54.802915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1094 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.802918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.802922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.802926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.802930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.802936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.811114 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.811140 LLDP, length 82 [|LLDP] 12:28:54.811142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109b 4a29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.811145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.811149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.811154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.811158 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.811163 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.811167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.811172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.822124 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.822150 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.822155 LLDP, length 82 [|LLDP] 12:28:54.822156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a3 b090 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.822159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.822163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.822168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.822171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.822176 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.822181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.833135 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.833166 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.833171 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.833176 LLDP, length 82 [|LLDP] 12:28:54.833178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ac 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.833180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.833185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.833190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.833194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.833199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.841391 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.841422 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.841427 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.841431 LLDP, length 82 [|LLDP] 12:28:54.841433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b2 63c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.841435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.841439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.841444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.841448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.841453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.852394 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.852420 LLDP, length 82 [|LLDP] 12:28:54.852422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ba ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.852425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.852429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.852433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.852437 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.852442 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.852446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.852451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.860655 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.860681 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.860686 LLDP, length 82 [|LLDP] 12:28:54.860687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c1 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.860690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.860695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.860699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.860702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.860707 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.860712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.871644 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.871661 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.871665 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.871669 LLDP, length 82 [|LLDP] 12:28:54.871671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c9 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.871673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.871677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.871682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.871685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.871690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.882654 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.882668 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.882673 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.882677 LLDP, length 82 [|LLDP] 12:28:54.882678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d1 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.882681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.882685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.882688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.882692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.882697 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.890906 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.890919 LLDP, length 82 [|LLDP] 12:28:54.890921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d8 308d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.890923 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.890927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.890932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.890934 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.890939 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.890943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.890947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.901917 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.901931 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.901936 LLDP, length 82 [|LLDP] 12:28:54.901937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e0 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.901939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.901943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.901947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.901950 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.901954 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.901959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.912926 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.912939 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.912943 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.912948 LLDP, length 82 [|LLDP] 12:28:54.912949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e8 fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.912951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.912955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.912959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.912962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.912966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.921183 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.921197 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.921202 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.921206 LLDP, length 82 [|LLDP] 12:28:54.921207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ef 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.921209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.921213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.921215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.921220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.921224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.932194 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.932208 LLDP, length 82 [|LLDP] 12:28:54.932210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f7 b08d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.932212 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.932216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.932220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.932223 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.932228 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.932232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.932236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.943204 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.943217 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.943222 LLDP, length 82 [|LLDP] 12:28:54.943223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1100 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.943225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.943229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.943233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.943236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.943240 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.943244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.951464 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.951478 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.951483 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.951487 LLDP, length 82 [|LLDP] 12:28:54.951489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1106 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.951491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.951495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.951500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.951502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.951507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.962473 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.962486 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.962490 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.962495 LLDP, length 82 [|LLDP] 12:28:54.962496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110e ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.962498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.962502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.962505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.962509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.962514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.970730 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.970744 LLDP, length 82 [|LLDP] 12:28:54.970745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1115 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.970747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.970751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.970755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.970758 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.970762 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.970767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.970771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.981742 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.981757 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.981762 LLDP, length 82 [|LLDP] 12:28:54.981763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111d 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.981765 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.981770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.981774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.981776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.981780 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.981785 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.992755 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.992769 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.992774 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.992778 LLDP, length 82 [|LLDP] 12:28:54.992780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1125 e3c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.992782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.992786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.992790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.992793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.992797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.001011 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.001025 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.001029 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.001034 LLDP, length 82 [|LLDP] 12:28:55.001035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112c 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.001037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.001041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.001044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.001048 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.001053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.012020 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.012034 LLDP, length 82 [|LLDP] 12:28:55.012036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1134 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.012037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.012042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.012046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.012048 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.012053 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.012057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.012061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.023030 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.023044 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.023048 LLDP, length 82 [|LLDP] 12:28:55.023049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113c fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.023051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.023056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.023060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.023062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.023066 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.023071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.031288 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.031303 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.031308 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.031312 LLDP, length 82 [|LLDP] 12:28:55.031314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1143 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.031316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.031321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.031325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.031328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.031333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.042297 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.042311 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.042315 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.042320 LLDP, length 82 [|LLDP] 12:28:55.042321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114b b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.042324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.042328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.042331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.042335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.042340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.053306 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.053320 LLDP, length 82 [|LLDP] 12:28:55.053321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1154 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.053323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.053328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.053332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.053335 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.053339 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.053343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.053347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.061565 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.061579 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.061583 LLDP, length 82 [|LLDP] 12:28:55.061585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115a 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.061586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.061591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.061595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.061598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.061602 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.061606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.072575 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.072589 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.072593 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.072598 LLDP, length 82 [|LLDP] 12:28:55.072599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1162 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.072601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.072605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.072609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.072612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.072616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.080833 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.080848 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.080852 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.080857 LLDP, length 82 [|LLDP] 12:28:55.080858 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1169 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.080860 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.080864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.080866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.080871 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.080875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.091847 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.091861 LLDP, length 82 [|LLDP] 12:28:55.091863 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1171 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.091864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.091870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.091874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.091877 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.091881 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.091885 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.091890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.102854 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.102868 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.102873 LLDP, length 82 [|LLDP] 12:28:55.102875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1179 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.102876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.102881 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.102885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.102887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.102892 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.102896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.111111 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.111125 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.111130 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.111134 LLDP, length 82 [|LLDP] 12:28:55.111135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1180 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.111137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.111141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.111146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.111149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.111153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.122123 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.122137 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.122141 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.122146 LLDP, length 82 [|LLDP] 12:28:55.122147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1188 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.122149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.122154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.122156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.122160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.122165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.133133 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.133147 LLDP, length 82 [|LLDP] 12:28:55.133149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1190 fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.133151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.133155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.133159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.133162 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.133166 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.133171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.133175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.141390 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.141403 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.141407 LLDP, length 82 [|LLDP] 12:28:55.141409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1197 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.141411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.141415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.141419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.141422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.141427 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.141431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.152399 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.152415 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.152419 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.152423 LLDP, length 82 [|LLDP] 12:28:55.152425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119f b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.152427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.152431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.152435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.152438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.152442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.160663 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.160678 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.160682 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.160686 LLDP, length 82 [|LLDP] 12:28:55.160688 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a5 fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.160690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.160694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.160697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.160701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.160705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.171667 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.171681 LLDP, length 82 [|LLDP] 12:28:55.171683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ae 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.171685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.171689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.171693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.171696 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.171700 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.171704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.171709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.182679 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.182693 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.182698 LLDP, length 82 [|LLDP] 12:28:55.182699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b6 ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.182701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.182705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.182709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.182712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.182716 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.182721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.190936 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.190951 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.190955 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.190959 LLDP, length 82 [|LLDP] 12:28:55.190961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bd 16fb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.190963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.190967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.190971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.190974 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.190978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.201947 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.201962 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.201967 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.201971 LLDP, length 82 [|LLDP] 12:28:55.201972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c5 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.201974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.201979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.201981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.201986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.201990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.212957 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.212971 LLDP, length 82 [|LLDP] 12:28:55.212973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cd e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.212974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.212979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.212983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.212986 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.212991 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.212995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.213000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.221214 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.221227 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.221232 LLDP, length 82 [|LLDP] 12:28:55.221233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d4 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.221235 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.221240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.221244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.221246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.221251 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.221256 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.232322 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.232335 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.232340 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.232344 LLDP, length 82 [|LLDP] 12:28:55.232345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11dc 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.232347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.232352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.232356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.232359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.232363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.243234 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.243247 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.243252 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.243256 LLDP, length 82 [|LLDP] 12:28:55.243258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e4 fd61 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.243259 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.243263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.243266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.243270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.243275 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.251491 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.251504 LLDP, length 82 [|LLDP] 12:28:55.251506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11eb 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.251508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.251512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.251516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.251519 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.251523 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.251528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.251532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.262513 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.262530 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.262535 LLDP, length 82 [|LLDP] 12:28:55.262536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f3 b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.262538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.262542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.262546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.262549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.262553 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.262558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.270766 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.270782 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.270786 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.270791 LLDP, length 82 [|LLDP] 12:28:55.270792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f9 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.270794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.270799 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.270803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.270806 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.270810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.281770 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.281784 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.281789 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.281793 LLDP, length 82 [|LLDP] 12:28:55.281795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1202 63c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.281796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.281801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.281803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.281807 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.281812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.292784 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.292803 LLDP, length 82 [|LLDP] 12:28:55.292805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120a ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.292807 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.292811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.292815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.292818 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.292822 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.292827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.292832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.301041 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.301056 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.301060 LLDP, length 82 [|LLDP] 12:28:55.301061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1211 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.301063 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.301068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.301072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.301075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.301079 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.301084 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.312050 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.312064 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.312068 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.312073 LLDP, length 82 [|LLDP] 12:28:55.312074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1219 7d5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.312076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.312080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.312084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.312087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.312091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.323058 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.323072 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.323076 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.323081 LLDP, length 82 [|LLDP] 12:28:55.323082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1221 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.323084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.323088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.323091 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.323095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.323100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.331316 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.331330 LLDP, length 82 [|LLDP] 12:28:55.331332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1228 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.331334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.331347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.331351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.331354 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.331358 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.331363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.331368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.342327 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.342341 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.342345 LLDP, length 82 [|LLDP] 12:28:55.342347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1230 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.342349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.342353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.342357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.342360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.342364 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.342369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.350585 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.350598 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.350602 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.350607 LLDP, length 82 [|LLDP] 12:28:55.350608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1236 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.350610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.350615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.350619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.350622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.350627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.361595 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.361609 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.361613 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.361618 LLDP, length 82 [|LLDP] 12:28:55.361619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123f 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.361621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.361625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.361628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.361633 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.361637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.372603 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.372618 LLDP, length 82 [|LLDP] 12:28:55.372619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1247 b08d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.372621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.372626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.372630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.372633 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.372637 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.372642 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.372646 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.380861 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.380875 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.380879 LLDP, length 82 [|LLDP] 12:28:55.380881 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124d fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.380883 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.380887 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.380891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.380894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.380898 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.380903 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.391872 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.391885 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.391890 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.391894 LLDP, length 82 [|LLDP] 12:28:55.391896 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1256 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.391898 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.391902 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.391906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.391909 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.391913 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.402883 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.402897 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.402902 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.402906 LLDP, length 82 [|LLDP] 12:28:55.402907 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125e ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.402909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.402914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.402916 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.402921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.402926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.411142 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.411156 LLDP, length 82 [|LLDP] 12:28:55.411158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1265 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.411160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.411164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.411169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.411171 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.411176 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.411180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.411185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.422150 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.422164 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.422168 LLDP, length 82 [|LLDP] 12:28:55.422170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126d 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.422172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.422176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.422180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.422183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.422187 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.422192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.433161 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.433175 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.433179 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.433184 LLDP, length 82 [|LLDP] 12:28:55.433185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1275 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.433187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.433192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.433196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.433199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.433203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.441418 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.441431 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.441436 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.441440 LLDP, length 82 [|LLDP] 12:28:55.441441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127c 3093 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.441443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.441447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.441450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.441454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.441459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.452429 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.452442 LLDP, length 82 [|LLDP] 12:28:55.452444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1284 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.452445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.452450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.452454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.452457 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.452461 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.452465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.452469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.460688 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.460701 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.460705 LLDP, length 82 [|LLDP] 12:28:55.460707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 128a e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.460709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.460713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.460717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.460720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.460724 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.460728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.471695 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.471708 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.471713 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.471717 LLDP, length 82 [|LLDP] 12:28:55.471718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1293 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.471720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.471725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.471729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.471731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.471736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.482704 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.482718 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.482722 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.482726 LLDP, length 82 [|LLDP] 12:28:55.482728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 129b b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.482730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.482734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.482736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.482740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.482745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 6045 packets captured 6045 packets received by filter 0 packets dropped by kernel 605 packets dropped by interface INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra1 with rc 0 and out 12:28:49.443654 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.443712 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.443718 LLDP, length 82 [|LLDP] 12:28:49.443720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009c 49e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.443722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.443727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.443732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.443736 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.443741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.443747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.451867 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.451886 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.451890 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.451895 LLDP, length 82 [|LLDP] 12:28:49.451896 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a2 96b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.451898 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.451903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.451907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.451910 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.451915 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.462874 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.462889 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.462893 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.462898 LLDP, length 82 [|LLDP] 12:28:49.462900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00aa fd18 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.462901 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.462906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.462910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.462913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.462917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.471122 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.471135 LLDP, length 82 [|LLDP] 12:28:49.471136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b1 49e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.471138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.471143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.471151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.471154 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.471158 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.471162 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.471167 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.482130 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.482142 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.482146 LLDP, length 82 [|LLDP] 12:28:49.482148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b9 b04b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.482150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.482154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.482157 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.482161 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.482165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.482170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.493141 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.493154 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.493159 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.493163 LLDP, length 82 [|LLDP] 12:28:49.493164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c2 16b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.493166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.493170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.493174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.493177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.493181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.501397 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.501409 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.501414 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.501418 LLDP, length 82 [|LLDP] 12:28:49.501420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c8 637e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.501422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.501426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.501430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.501433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.501438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.512407 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.512421 LLDP, length 82 [|LLDP] 12:28:49.512422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d0 c9e7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.512424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.512429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.512433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.512435 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.512439 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.512443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.512448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.523426 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.523440 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.523444 LLDP, length 82 [|LLDP] 12:28:49.523446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d9 304c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.523448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.523452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.523455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.523459 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.523463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.523468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.531678 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.531692 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.531696 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.531701 LLDP, length 82 [|LLDP] 12:28:49.531702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00df 7d18 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.531704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.531708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.531712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.531715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.531720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.542685 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.542697 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.542702 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.542706 LLDP, length 82 [|LLDP] 12:28:49.542708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e7 e37f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.542710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.542714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.542718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.542721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.542725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.550943 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.550956 LLDP, length 82 [|LLDP] 12:28:49.550957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ee 304b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.550959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.550964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.550968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.550970 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.550975 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.550979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.550983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.561953 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.561966 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.561970 LLDP, length 82 [|LLDP] 12:28:49.561971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f6 96b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.561973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.561977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.561980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.561984 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.561989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.561993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.572963 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.572976 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.572981 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.572985 LLDP, length 82 [|LLDP] 12:28:49.572986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fe fd18 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.572988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.572993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.572997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.572999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.573004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.581224 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.581238 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.581243 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.581247 LLDP, length 82 [|LLDP] 12:28:49.581249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0105 49e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.581251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.581255 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.581259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.581262 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.581266 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.592237 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.592250 LLDP, length 82 [|LLDP] 12:28:49.592252 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010d b04a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.592253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.592257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.592262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.592264 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.592268 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.592273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.592277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.603244 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.603257 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.603262 LLDP, length 82 [|LLDP] 12:28:49.603263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0116 16b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.603265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.603269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.603272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.603276 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.603280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.603285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.611503 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.611515 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.611519 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.611524 LLDP, length 82 [|LLDP] 12:28:49.611525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011c 637e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.611527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.611531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.611536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.611538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.611543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.622512 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.622525 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.622530 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.622534 LLDP, length 82 [|LLDP] 12:28:49.622535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0124 c9e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.622537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.622542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.622546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.622548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.622553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.633523 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.633536 LLDP, length 82 [|LLDP] 12:28:49.633537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012d 304b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.633539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.633543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.633547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.633550 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.633554 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.633559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.633563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.641779 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.641792 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.641796 LLDP, length 82 [|LLDP] 12:28:49.641798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0133 7d17 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.641800 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.641804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.641807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.641811 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.641816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.641821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.652810 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.652822 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.652827 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.652831 LLDP, length 82 [|LLDP] 12:28:49.652833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013b e37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.652835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.652839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.652843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.652846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.652850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.661046 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.661066 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.661070 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.661074 LLDP, length 82 [|LLDP] 12:28:49.661076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0142 304a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.661078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.661082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.661086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.661089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.661093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.672057 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.672070 LLDP, length 82 [|LLDP] 12:28:49.672072 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014a 96b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.672074 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.672078 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.672083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.672086 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.672090 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.672094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.672098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.683068 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.683079 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.683084 LLDP, length 82 [|LLDP] 12:28:49.683085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0152 fd1e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.683087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.683091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.683094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.683097 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.683102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.683106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.691323 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.691342 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.691347 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.691352 LLDP, length 82 [|LLDP] 12:28:49.691353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0159 49e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.691355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.691359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.691363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.691365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.691370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.702336 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.702356 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.702360 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.702365 LLDP, length 82 [|LLDP] 12:28:49.702366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0161 b04b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.702368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.702372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.702377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.702379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.702384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.713348 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.713361 LLDP, length 82 [|LLDP] 12:28:49.713363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016a 16b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.713365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.713369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.713373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.713376 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.713380 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.713384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.713389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.721601 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.721615 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.721619 LLDP, length 82 [|LLDP] 12:28:49.721620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0170 637f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.721622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.721626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.721629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.721633 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.721638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.721642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.732614 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.732626 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.732631 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.732635 LLDP, length 82 [|LLDP] 12:28:49.732637 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0178 c9e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.732639 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.732643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.732647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.732650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.732654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.740884 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.740901 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.740906 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.740910 LLDP, length 82 [|LLDP] 12:28:49.740912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017f 16b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.740914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.740918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.740923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.740925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.740930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.751892 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.751912 LLDP, length 82 [|LLDP] 12:28:49.751914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0187 7d19 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.751916 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.751921 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.751926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.751929 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.751933 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.751938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.751943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.762907 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.762927 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.762932 LLDP, length 82 [|LLDP] 12:28:49.762933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018f e380 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.762935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.762940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.762943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.762948 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.762952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.762957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.771155 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.771174 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.771178 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.771183 LLDP, length 82 [|LLDP] 12:28:49.771185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0196 304b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.771186 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.771191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.771195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.771198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.771203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.782163 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.782177 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.782182 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.782186 LLDP, length 82 [|LLDP] 12:28:49.782188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019e 96b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.782190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.782195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.782199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.782202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.782206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.793231 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.793275 LLDP, length 82 [|LLDP] 12:28:49.793277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a6 fd18 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.793279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.793285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.793291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.793295 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.793300 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.793306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.793311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.801474 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.801507 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.801512 LLDP, length 82 [|LLDP] 12:28:49.801514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ad 49e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.801517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.801521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.801526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.801531 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.801536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.801542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.812474 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.812503 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.812508 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.812513 LLDP, length 82 [|LLDP] 12:28:49.812515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b5 b04b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.812518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.812523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.812527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.812530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.812535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.823474 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.823502 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.823507 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.823512 LLDP, length 82 [|LLDP] 12:28:49.823513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01be 16b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.823516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.823520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.823525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.823528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.823533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.831773 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.831815 LLDP, length 82 [|LLDP] 12:28:49.831817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c4 637d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.831820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.831827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.831832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.831838 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.831843 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.831848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.831854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.842765 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.842800 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.842805 LLDP, length 82 [|LLDP] 12:28:49.842808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cc c9e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.842810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.842815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.842819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.842824 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.842828 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.842834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.851014 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.851045 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.851050 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.851054 LLDP, length 82 [|LLDP] 12:28:49.851056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d3 16b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.851058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.851063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.851067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.851071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.851076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.862022 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.862054 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.862059 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.862064 LLDP, length 82 [|LLDP] 12:28:49.862066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01db 7d17 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.862068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.862073 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.862078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.862081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.862086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.872996 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.873009 LLDP, length 82 [|LLDP] 12:28:49.873011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e3 e37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.873013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.873017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.873021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.873024 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.873029 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.873033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.873038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.881249 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.881260 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.881265 LLDP, length 82 [|LLDP] 12:28:49.881266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ea 3052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.881268 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.881272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.881275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.881279 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.881283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.881287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.892255 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.892265 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.892269 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.892274 LLDP, length 82 [|LLDP] 12:28:49.892275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f2 96b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.892277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.892281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.892285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.892287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.892292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.903265 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.903274 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.903279 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.903283 LLDP, length 82 [|LLDP] 12:28:49.903284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fa fd17 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.903286 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.903291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.903295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.903297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.903302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.911524 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.911533 LLDP, length 82 [|LLDP] 12:28:49.911535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0201 49e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.911536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.911541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.911545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.911548 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.911552 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.911556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.911561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.922538 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.922548 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.922552 LLDP, length 82 [|LLDP] 12:28:49.922554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0209 b04b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.922555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.922560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.922563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.922567 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.922571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.922576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.933545 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.933555 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.933559 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.933563 LLDP, length 82 [|LLDP] 12:28:49.933565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0212 16b8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.933567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.933571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.933575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.933577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.933582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.941803 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.941812 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.941817 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.941821 LLDP, length 82 [|LLDP] 12:28:49.941823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0218 637e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.941825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.941829 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.941834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.941836 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.941840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.952818 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.952829 LLDP, length 82 [|LLDP] 12:28:49.952831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0220 c9e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.952833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.952837 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.952841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.952844 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.952848 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.952852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.952857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.961073 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.961082 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.961086 LLDP, length 82 [|LLDP] 12:28:49.961088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0227 16b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.961090 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.961094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.961096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.961100 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.961105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.961109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.972079 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.972088 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.972093 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.972097 LLDP, length 82 [|LLDP] 12:28:49.972098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022f 7d18 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.972100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.972104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.972108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.972111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.972115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.983090 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.983100 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.983105 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.983109 LLDP, length 82 [|LLDP] 12:28:49.983111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0237 e37e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.983112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.983117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.983121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.983123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.983127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:49.991355 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:49.991365 LLDP, length 82 [|LLDP] 12:28:49.991367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023e 306d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:49.991368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:49.991373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:49.991377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:49.991379 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.991383 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:49.991388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:49.991392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.002360 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.002370 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.002374 LLDP, length 82 [|LLDP] 12:28:50.002375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0246 96d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.002377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.002381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.002384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.002388 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.002392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.002397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.013372 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.013381 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.013385 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.013390 LLDP, length 82 [|LLDP] 12:28:50.013392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024e fd3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.013394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.013398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.013402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.013405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.013409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.021626 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.021635 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.021640 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.021644 LLDP, length 82 [|LLDP] 12:28:50.021646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0255 4a07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.021647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.021652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.021656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.021659 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.021663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.032643 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.032654 LLDP, length 82 [|LLDP] 12:28:50.032655 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025d b06d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.032657 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.032661 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.032665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.032668 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.032672 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.032676 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.032680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.040895 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.040904 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.040909 LLDP, length 82 [|LLDP] 12:28:50.040910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0263 fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.040912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.040916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.040919 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.040923 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.040928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.040933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.051904 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.051915 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.051919 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.051923 LLDP, length 82 [|LLDP] 12:28:50.051924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026c 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.051926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.051931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.051935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.051937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.051942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.062914 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.062923 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.062928 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.062932 LLDP, length 82 [|LLDP] 12:28:50.062933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0274 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.062935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.062940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.062944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.062946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.062951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.071170 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.071179 LLDP, length 82 [|LLDP] 12:28:50.071181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027b 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.071182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.071187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.071191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.071193 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.071197 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.071202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.071206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.082187 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.082198 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.082202 LLDP, length 82 [|LLDP] 12:28:50.082204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0283 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.082205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.082210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.082213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.082217 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.082221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.082226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.093207 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.093217 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.093221 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.093225 LLDP, length 82 [|LLDP] 12:28:50.093227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028b e39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.093229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.093233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.093237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.093239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.093244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.101449 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.101458 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.101462 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.101466 LLDP, length 82 [|LLDP] 12:28:50.101468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0292 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.101470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.101474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.101478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.101480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.101485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.112460 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.112470 LLDP, length 82 [|LLDP] 12:28:50.112471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029a 96d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.112473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.112477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.112481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.112484 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.112489 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.112493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.112498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.123491 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.123511 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.123515 LLDP, length 82 [|LLDP] 12:28:50.123517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a2 fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.123519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.123523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.123526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.123530 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.123535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.123540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.131739 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.131753 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.131757 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.131762 LLDP, length 82 [|LLDP] 12:28:50.131763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a9 4a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.131765 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.131770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.131774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.131777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.131781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.142744 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.142759 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.142763 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.142775 LLDP, length 82 [|LLDP] 12:28:50.142777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b1 b070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.142779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.142783 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.142788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.142791 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.142795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.151005 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.151018 LLDP, length 82 [|LLDP] 12:28:50.151019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b7 fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.151022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.151026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.151030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.151033 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.151037 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.151042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.151046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.162015 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.162029 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.162034 LLDP, length 82 [|LLDP] 12:28:50.162035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c0 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.162037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.162041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.162044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.162049 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.162053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.162058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.173025 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.173039 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.173044 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.173048 LLDP, length 82 [|LLDP] 12:28:50.173049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c8 ca07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.173051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.173056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.173060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.173063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.173067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.181281 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.181295 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.181299 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.181304 LLDP, length 82 [|LLDP] 12:28:50.181305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cf 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.181307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.181311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.181316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.181318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.181323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.192291 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.192304 LLDP, length 82 [|LLDP] 12:28:50.192306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d7 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.192308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.192312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.192316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.192319 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.192323 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.192328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.192332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.203300 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.203313 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.203318 LLDP, length 82 [|LLDP] 12:28:50.203319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02df e3a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.203321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.203325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.203328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.203332 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.203345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.203350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.211560 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.211573 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.211577 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.211582 LLDP, length 82 [|LLDP] 12:28:50.211583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e6 306d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.211585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.211590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.211594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.211596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.211601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.222569 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.222582 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.222586 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.222590 LLDP, length 82 [|LLDP] 12:28:50.222592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ee 96da 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.222594 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.222598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.222603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.222605 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.222610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.230826 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.230841 LLDP, length 82 [|LLDP] 12:28:50.230842 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f4 e3a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.230844 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.230848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.230852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.230855 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.230859 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.230863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.230868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.241837 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.241851 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.241855 LLDP, length 82 [|LLDP] 12:28:50.241857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fd 4a07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.241858 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.241863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.241866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.241870 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.241874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.241879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.252847 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.252861 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.252866 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.252870 LLDP, length 82 [|LLDP] 12:28:50.252872 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0305 b06d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.252874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.252878 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.252882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.252885 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.252890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.261109 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.261122 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.261127 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.261131 LLDP, length 82 [|LLDP] 12:28:50.261132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030b fd3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.261134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.261139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.261143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.261146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.261150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.272114 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.272128 LLDP, length 82 [|LLDP] 12:28:50.272130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0314 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.272132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.272136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.272140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.272143 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.272147 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.272151 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.272156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.283131 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.283149 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.283153 LLDP, length 82 [|LLDP] 12:28:50.283155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031c ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.283157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.283161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.283164 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.283168 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.283173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.283177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.291386 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.291401 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.291406 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.291410 LLDP, length 82 [|LLDP] 12:28:50.291411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0323 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.291413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.291418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.291422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.291424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.291429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.302395 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.302408 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.302413 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.302417 LLDP, length 82 [|LLDP] 12:28:50.302418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032b 7d3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.302420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.302424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.302429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.302431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.302435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.313404 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.313417 LLDP, length 82 [|LLDP] 12:28:50.313418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0333 e39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.313420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.313425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.313429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.313431 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.313436 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.313440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.313445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.321661 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.321674 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.321679 LLDP, length 82 [|LLDP] 12:28:50.321680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033a 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.321682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.321686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.321689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.321693 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.321698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.321702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.332673 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.332686 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.332690 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.332695 LLDP, length 82 [|LLDP] 12:28:50.332696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0342 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.332698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.332703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.332707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.332709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.332714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.340929 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.340942 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.340946 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.340950 LLDP, length 82 [|LLDP] 12:28:50.340952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0348 e3a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.340953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.340958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.340962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.340964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.340969 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.351939 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.351952 LLDP, length 82 [|LLDP] 12:28:50.351954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0351 4a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.351956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.351960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.351964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.351967 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.351971 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.351976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.351981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.362950 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.362964 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.362969 LLDP, length 82 [|LLDP] 12:28:50.362970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0359 b06b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.362972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.362976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.362979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.362983 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.362987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.362992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.371208 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.371221 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.371225 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.371229 LLDP, length 82 [|LLDP] 12:28:50.371231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035f fd38 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.371233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.371237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.371241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.371244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.371248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.382219 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.382232 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.382237 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.382241 LLDP, length 82 [|LLDP] 12:28:50.382243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0368 639e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.382245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.382249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.382253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.382256 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.382260 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.393228 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.393240 LLDP, length 82 [|LLDP] 12:28:50.393242 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0370 ca08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.393244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.393248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.393252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.393255 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.393259 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.393263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.393267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.401491 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.401507 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.401511 LLDP, length 82 [|LLDP] 12:28:50.401513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0377 16d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.401515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.401519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.401522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.401526 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.401531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.401535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.412499 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.412518 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.412522 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.412526 LLDP, length 82 [|LLDP] 12:28:50.412528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037f 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.412530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.412534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.412538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.412541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.412545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.423506 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.423520 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.423524 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.423529 LLDP, length 82 [|LLDP] 12:28:50.423530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0387 e39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.423532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.423536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.423541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.423544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.423548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.431762 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.431776 LLDP, length 82 [|LLDP] 12:28:50.431777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038e 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.431779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.431783 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.431787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.431790 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.431794 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.431799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.431803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.442813 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.442832 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.442837 LLDP, length 82 [|LLDP] 12:28:50.442838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0396 96d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.442841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.442845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.442849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.442853 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.442858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.442863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.451059 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.451081 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.451086 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.451091 LLDP, length 82 [|LLDP] 12:28:50.451093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039c e39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.451095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.451100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.451104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.451107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.451112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.462051 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.462068 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.462073 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.462078 LLDP, length 82 [|LLDP] 12:28:50.462079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a5 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.462081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.462086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.462090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.462094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.462098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.473059 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.473074 LLDP, length 82 [|LLDP] 12:28:50.473076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ad b073 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.473078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.473083 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.473087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.473089 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.473093 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.473098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.473102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.481318 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.481336 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.481340 LLDP, length 82 [|LLDP] 12:28:50.481342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b3 fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.481344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.481348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.481351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.481355 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.481360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.481365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.492325 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.492339 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.492344 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.492348 LLDP, length 82 [|LLDP] 12:28:50.492350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03bc 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.492352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.492356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.492360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.492363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.492368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.503333 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.503356 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.503361 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.503365 LLDP, length 82 [|LLDP] 12:28:50.503367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c4 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.503369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.503373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.503377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.503380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.503384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.511592 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.511608 LLDP, length 82 [|LLDP] 12:28:50.511609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cb 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.511611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.511616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.511620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.511623 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.511627 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.511632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.511637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.522602 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.522617 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.522621 LLDP, length 82 [|LLDP] 12:28:50.522623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d3 7d3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.522625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.522629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.522632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.522636 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.522641 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.522645 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.530858 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.530873 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.530877 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.530882 LLDP, length 82 [|LLDP] 12:28:50.530883 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d9 ca07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.530885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.530890 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.530894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.530897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.530901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.541869 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.541883 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.541887 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.541891 LLDP, length 82 [|LLDP] 12:28:50.541893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e2 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.541895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.541900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.541904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.541907 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.541912 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.552883 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.552897 LLDP, length 82 [|LLDP] 12:28:50.552898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ea 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.552900 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.552905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.552909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.552912 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.552916 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.552921 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.552925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.561135 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.561150 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.561154 LLDP, length 82 [|LLDP] 12:28:50.561156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f0 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.561158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.561162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.561165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.561169 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.561173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.561178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.572150 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.572165 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.572169 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.572173 LLDP, length 82 [|LLDP] 12:28:50.572174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f9 4a07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.572176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.572181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.572185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.572187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.572192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.583157 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.583172 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.583176 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.583181 LLDP, length 82 [|LLDP] 12:28:50.583183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0401 b06d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.583184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.583189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.583193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.583196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.583201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.591414 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.591429 LLDP, length 82 [|LLDP] 12:28:50.591430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0407 fd40 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.591432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.591437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.591441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.591444 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.591448 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.591452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.591457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.602426 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.602440 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.602445 LLDP, length 82 [|LLDP] 12:28:50.602446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0410 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.602448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.602452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.602456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.602460 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.602464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.602468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.613438 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.613451 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.613456 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.613460 LLDP, length 82 [|LLDP] 12:28:50.613462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0418 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.613464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.613468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.613472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.613475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.613480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.621691 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.621706 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.621710 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.621715 LLDP, length 82 [|LLDP] 12:28:50.621716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041f 16d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.621718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.621723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.621727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.621730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.621734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.632702 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.632717 LLDP, length 82 [|LLDP] 12:28:50.632719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0427 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.632720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.632725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.632729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.632732 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.632736 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.632740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.632745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.640959 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.640974 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.640978 LLDP, length 82 [|LLDP] 12:28:50.640979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042d ca05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.640981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.640985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.640988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.640992 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.640997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.641001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.651971 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.651985 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.651990 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.651994 LLDP, length 82 [|LLDP] 12:28:50.651995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0436 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.651997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.652002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.652006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.652008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.652013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.662980 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.662995 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.662999 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.663003 LLDP, length 82 [|LLDP] 12:28:50.663005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043e 96d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.663007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.663011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.663015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.663018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.663022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.671239 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.671255 LLDP, length 82 [|LLDP] 12:28:50.671257 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0444 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.671259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.671263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.671267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.671270 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.671274 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.671278 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.671283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.682249 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.682264 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.682268 LLDP, length 82 [|LLDP] 12:28:50.682269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044d 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.682271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.682276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.682279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.682283 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.682287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.682291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.693258 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.693272 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.693277 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.693281 LLDP, length 82 [|LLDP] 12:28:50.693282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0455 b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.693284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.693288 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.693292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.693295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.693299 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.701517 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.701533 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.701537 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.701542 LLDP, length 82 [|LLDP] 12:28:50.701543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045b fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.701545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.701549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.701554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.701556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.701561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.712527 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.712543 LLDP, length 82 [|LLDP] 12:28:50.712545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0464 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.712547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.712551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.712555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.712558 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.712563 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.712567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.712571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.723539 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.723554 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.723558 LLDP, length 82 [|LLDP] 12:28:50.723559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046c ca0d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.723561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.723565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.723568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.723572 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.723577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.723581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.731795 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.731811 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.731815 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.731819 LLDP, length 82 [|LLDP] 12:28:50.731821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0473 16d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.731823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.731827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.731831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.731833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.731838 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.742804 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.742818 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.742822 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.742827 LLDP, length 82 [|LLDP] 12:28:50.742828 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047b 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.742830 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.742835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.742839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.742842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.742847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.751062 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.751077 LLDP, length 82 [|LLDP] 12:28:50.751078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0481 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.751080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.751085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.751089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.751091 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.751095 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.751100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.751104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.762073 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.762087 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.762092 LLDP, length 82 [|LLDP] 12:28:50.762093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048a 306d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.762095 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.762099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.762102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.762106 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.762111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.762115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.773082 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.773097 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.773102 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.773106 LLDP, length 82 [|LLDP] 12:28:50.773108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0492 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.773110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.773114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.773118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.773121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.773126 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.781342 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.781357 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.781362 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.781366 LLDP, length 82 [|LLDP] 12:28:50.781368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0498 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.781370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.781374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.781378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.781381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.781386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.792351 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.792365 LLDP, length 82 [|LLDP] 12:28:50.792367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a1 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.792369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.792373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.792377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.792380 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.792384 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.792389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.792393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.803371 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.803386 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.803391 LLDP, length 82 [|LLDP] 12:28:50.803393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a9 b06d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.803394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.803398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.803401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.803405 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.803410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.803415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.811619 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.811633 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.811638 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.811642 LLDP, length 82 [|LLDP] 12:28:50.811644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04af fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.811646 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.811650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.811654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.811657 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.811662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.822628 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.822643 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.822647 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.822652 LLDP, length 82 [|LLDP] 12:28:50.822653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b8 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.822655 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.822660 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.822664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.822666 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.822671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.830887 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.830902 LLDP, length 82 [|LLDP] 12:28:50.830903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04be b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.830905 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.830910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.830914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.830916 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.830921 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.830925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.830930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.841897 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.841911 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.841915 LLDP, length 82 [|LLDP] 12:28:50.841917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c7 16d9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.841919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.841923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.841926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.841930 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.841934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.841939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.852920 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.852935 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.852939 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.852944 LLDP, length 82 [|LLDP] 12:28:50.852945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cf 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.852948 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.852952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.852956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.852959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.852964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.861217 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.861251 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.861256 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.861261 LLDP, length 82 [|LLDP] 12:28:50.861263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d5 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.861265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.861270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.861275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.861278 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.861283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.872217 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.872250 LLDP, length 82 [|LLDP] 12:28:50.872252 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04de 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.872254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.872259 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.872263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.872267 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.872272 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.872276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.872281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.883200 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.883217 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.883221 LLDP, length 82 [|LLDP] 12:28:50.883223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e6 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.883225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.883229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.883232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.883236 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.883240 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.883245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.891447 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.891464 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.891468 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.891473 LLDP, length 82 [|LLDP] 12:28:50.891475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ec e39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.891476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.891481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.891485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.891488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.891492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.902454 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.902468 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.902473 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.902477 LLDP, length 82 [|LLDP] 12:28:50.902479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f5 4a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.902481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.902485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.902489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.902492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.902496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.913463 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.913477 LLDP, length 82 [|LLDP] 12:28:50.913479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fd b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.913481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.913485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.913490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.913492 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.913497 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.913501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.913506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.921716 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.921730 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.921734 LLDP, length 82 [|LLDP] 12:28:50.921736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0503 fd3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.921738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.921742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.921745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.921749 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.921754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.921758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.932731 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.932746 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.932750 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.932755 LLDP, length 82 [|LLDP] 12:28:50.932756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050c 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.932758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.932762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.932766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.932769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.932773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.940988 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.941002 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.941006 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.941011 LLDP, length 82 [|LLDP] 12:28:50.941013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0512 b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.941015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.941019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.941023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.941026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.941030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.952001 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.952016 LLDP, length 82 [|LLDP] 12:28:50.952018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051b 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.952020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.952024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.952028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.952031 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.952035 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.952039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.952044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.963012 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.963027 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.963031 LLDP, length 82 [|LLDP] 12:28:50.963033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0523 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.963035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.963040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.963042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.963047 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.963051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.963056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.971267 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.971282 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.971286 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.971291 LLDP, length 82 [|LLDP] 12:28:50.971293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0529 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.971295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.971299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.971303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.971306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.971310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.982278 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.982292 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.982297 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.982301 LLDP, length 82 [|LLDP] 12:28:50.982302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0532 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.982304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.982308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.982313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.982315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.982320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:50.993284 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:50.993297 LLDP, length 82 [|LLDP] 12:28:50.993298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053a 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:50.993300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:50.993304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:50.993309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:50.993311 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.993316 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:50.993320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:50.993324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.001544 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.001558 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.001563 LLDP, length 82 [|LLDP] 12:28:51.001564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0540 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.001566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.001570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.001573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.001577 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.001582 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.001586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.012555 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.012568 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.012572 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.012577 LLDP, length 82 [|LLDP] 12:28:51.012578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0549 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.012580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.012584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.012589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.012591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.012595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.020810 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.020822 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.020827 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.020831 LLDP, length 82 [|LLDP] 12:28:51.020833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054f 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.020835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.020839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.020844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.020846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.020851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.031822 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.031835 LLDP, length 82 [|LLDP] 12:28:51.031837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0557 fd3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.031838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.031843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.031847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.031850 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.031854 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.031858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.031863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.042828 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.042841 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.042845 LLDP, length 82 [|LLDP] 12:28:51.042847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0560 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.042848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.042852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.042855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.042859 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.042864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.042868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.051091 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.051106 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.051111 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.051115 LLDP, length 82 [|LLDP] 12:28:51.051116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0566 b06d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.051118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.051122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.051127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.051129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.051134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.062101 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.062114 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.062118 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.062122 LLDP, length 82 [|LLDP] 12:28:51.062124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056f 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.062125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.062130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.062134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.062137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.062141 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.073109 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.073121 LLDP, length 82 [|LLDP] 12:28:51.073123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0577 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.073124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.073129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.073133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.073136 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.073140 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.073144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.073149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.081366 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.081380 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.081384 LLDP, length 82 [|LLDP] 12:28:51.081386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057d ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.081387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.081392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.081394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.081399 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.081403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.081407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.092376 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.092389 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.092393 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.092397 LLDP, length 82 [|LLDP] 12:28:51.092398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0586 3073 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.092400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.092404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.092409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.092411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.092415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.103393 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.103406 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.103410 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.103414 LLDP, length 82 [|LLDP] 12:28:51.103416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058e 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.103418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.103422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.103426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.103429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.103433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.111644 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.111656 LLDP, length 82 [|LLDP] 12:28:51.111658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0594 e39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.111659 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.111664 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.111668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.111670 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.111675 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.111679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.111683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.122657 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.122670 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.122674 LLDP, length 82 [|LLDP] 12:28:51.122676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059d 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.122678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.122682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.122685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.122689 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.122693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.122698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.130912 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.130925 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.130929 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.130933 LLDP, length 82 [|LLDP] 12:28:51.130935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a3 96d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.130936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.130941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.130945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.130948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.130952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.141920 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.141933 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.141937 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.141942 LLDP, length 82 [|LLDP] 12:28:51.141943 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ab fd38 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.141945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.141949 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.141953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.141956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.141960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.152932 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.152945 LLDP, length 82 [|LLDP] 12:28:51.152946 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b4 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.152948 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.152952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.152957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.152959 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.152963 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.152968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.152972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.161188 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.161200 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.161205 LLDP, length 82 [|LLDP] 12:28:51.161206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ba b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.161208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.161212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.161215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.161220 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.161224 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.161229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.172199 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.172212 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.172216 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.172221 LLDP, length 82 [|LLDP] 12:28:51.172222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c3 16d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.172224 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.172228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.172233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.172235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.172239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.183210 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.183224 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.183228 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.183233 LLDP, length 82 [|LLDP] 12:28:51.183234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05cb 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.183236 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.183240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.183245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.183247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.183252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.191469 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.191482 LLDP, length 82 [|LLDP] 12:28:51.191483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d1 ca05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.191485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.191489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.191493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.191496 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.191501 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.191505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.191510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.202477 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.202490 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.202494 LLDP, length 82 [|LLDP] 12:28:51.202496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05da 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.202498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.202502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.202504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.202509 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.202513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.202518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.213488 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.213501 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.213506 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.213510 LLDP, length 82 [|LLDP] 12:28:51.213511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e2 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.213513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.213517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.213522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.213524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.213529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.221744 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.221757 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.221762 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.221766 LLDP, length 82 [|LLDP] 12:28:51.221768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e8 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.221769 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.221774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.221778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.221781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.221785 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.232757 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.232769 LLDP, length 82 [|LLDP] 12:28:51.232771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f1 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.232773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.232777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.232781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.232784 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.232788 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.232793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.232797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.241011 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.241023 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.241028 LLDP, length 82 [|LLDP] 12:28:51.241029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f7 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.241031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.241035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.241038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.241042 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.241046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.241051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.252023 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.252034 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.252039 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.252043 LLDP, length 82 [|LLDP] 12:28:51.252044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ff fd3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.252046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.252051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.252055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.252057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.252062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.263029 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.263038 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.263043 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.263047 LLDP, length 82 [|LLDP] 12:28:51.263048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0608 63a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.263050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.263055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.263059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.263061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.263066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.271285 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.271295 LLDP, length 82 [|LLDP] 12:28:51.271296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060e b06d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.271298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.271302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.271306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.271309 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.271313 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.271317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.271322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.282297 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.282306 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.282310 LLDP, length 82 [|LLDP] 12:28:51.282312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0617 16d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.282313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.282317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.282320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.282324 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.282328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.282333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.293308 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.293317 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.293321 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.293326 LLDP, length 82 [|LLDP] 12:28:51.293327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061f 7d3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.293329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.293333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.293337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.293339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.293344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.301562 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.301570 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.301575 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.301579 LLDP, length 82 [|LLDP] 12:28:51.301580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0625 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.301582 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.301586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.301591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.301593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.301598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.312573 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.312582 LLDP, length 82 [|LLDP] 12:28:51.312583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062e 306d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.312585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.312590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.312594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.312596 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.312601 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.312605 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.312610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.320830 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.320844 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.320849 LLDP, length 82 [|LLDP] 12:28:51.320850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0634 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.320852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.320856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.320858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.320863 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.320867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.320871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.331839 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.331854 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.331858 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.331863 LLDP, length 82 [|LLDP] 12:28:51.331864 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063c e39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.331866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.331870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.331875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.331877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.331881 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.342852 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.342861 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.342865 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.342869 LLDP, length 82 [|LLDP] 12:28:51.342870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0645 4a0d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.342872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.342876 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.342881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.342883 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.342887 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.351109 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.351118 LLDP, length 82 [|LLDP] 12:28:51.351119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064b 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.351121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.351125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.351129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.351132 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.351136 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.351141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.351145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.362120 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.362130 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.362134 LLDP, length 82 [|LLDP] 12:28:51.362136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0653 fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.362137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.362142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.362145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.362149 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.362153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.362158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.373129 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.373137 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.373142 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.373146 LLDP, length 82 [|LLDP] 12:28:51.373147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065c 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.373149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.373153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.373157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.373160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.373165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.381385 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.381394 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.381398 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.381402 LLDP, length 82 [|LLDP] 12:28:51.381404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0662 b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.381405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.381410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.381414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.381417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.381421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.392396 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.392405 LLDP, length 82 [|LLDP] 12:28:51.392406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066b 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.392408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.392412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.392417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.392419 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.392423 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.392428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.392432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.403408 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.403416 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.403420 LLDP, length 82 [|LLDP] 12:28:51.403422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0673 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.403424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.403428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.403430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.403434 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.403439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.403444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.411664 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.411672 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.411676 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.411680 LLDP, length 82 [|LLDP] 12:28:51.411681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0679 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.411683 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.411688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.411692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.411694 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.411699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.422675 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.422684 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.422688 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.422692 LLDP, length 82 [|LLDP] 12:28:51.422694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0682 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.422695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.422700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.422704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.422706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.422711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.430932 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.430946 LLDP, length 82 [|LLDP] 12:28:51.430947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0688 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.430949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.430953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.430957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.430960 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.430964 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.430968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.430973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.441943 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.441951 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.441955 LLDP, length 82 [|LLDP] 12:28:51.441957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0690 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.441958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.441963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.441966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.441970 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.441974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.441979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.452956 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.452965 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.452969 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.452973 LLDP, length 82 [|LLDP] 12:28:51.452975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0699 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.452976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.452981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.452985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.452988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.452992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.461214 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.461223 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.461227 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.461232 LLDP, length 82 [|LLDP] 12:28:51.461233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069f 96da 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.461235 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.461239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.461243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.461246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.461250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.472239 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.472258 LLDP, length 82 [|LLDP] 12:28:51.472260 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a7 fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.472262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.472267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.472271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.472274 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.472279 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.472283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.472288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.483262 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.483282 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.483287 LLDP, length 82 [|LLDP] 12:28:51.483289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b0 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.483291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.483296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.483299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.483303 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.483308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.483313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.491494 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.491506 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.491510 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.491514 LLDP, length 82 [|LLDP] 12:28:51.491516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b6 b06d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.491518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.491522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.491526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.491529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.491534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.502500 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.502510 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.502514 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.502519 LLDP, length 82 [|LLDP] 12:28:51.502520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06bf 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.502522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.502526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.502531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.502533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.502538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.510759 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.510768 LLDP, length 82 [|LLDP] 12:28:51.510769 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c5 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.510771 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.510776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.510780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.510782 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.510787 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.510791 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.510796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.521768 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.521777 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.521782 LLDP, length 82 [|LLDP] 12:28:51.521783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cd ca07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.521785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.521789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.521791 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.521795 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.521800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.521804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.532781 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.532790 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.532794 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.532798 LLDP, length 82 [|LLDP] 12:28:51.532800 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d6 306d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.532802 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.532806 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.532810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.532813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.532817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.541035 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.541044 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.541048 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.541052 LLDP, length 82 [|LLDP] 12:28:51.541054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06dc 7d3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.541055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.541060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.541064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.541066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.541071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.552045 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.552053 LLDP, length 82 [|LLDP] 12:28:51.552054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e4 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.552056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.552060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.552064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.552067 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.552071 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.552075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.552080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.563054 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.563062 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.563066 LLDP, length 82 [|LLDP] 12:28:51.563068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ed 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.563069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.563074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.563076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.563080 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.563085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.563089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.571313 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.571321 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.571325 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.571330 LLDP, length 82 [|LLDP] 12:28:51.571331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f3 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.571333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.571343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.571348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.571350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.571355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.582326 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.582334 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.582338 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.582343 LLDP, length 82 [|LLDP] 12:28:51.582344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fb fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.582346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.582350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.582354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.582357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.582361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.593333 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.593341 LLDP, length 82 [|LLDP] 12:28:51.593343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0704 63a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.593344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.593349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.593353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.593355 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.593359 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.593363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.593368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.601592 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.601601 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.601605 LLDP, length 82 [|LLDP] 12:28:51.601606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070a b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.601608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.601612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.601615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.601619 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.601623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.601628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.612603 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.612611 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.612615 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.612620 LLDP, length 82 [|LLDP] 12:28:51.612621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0713 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.612623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.612627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.612631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.612634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.612638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.620860 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.620868 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.620873 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.620877 LLDP, length 82 [|LLDP] 12:28:51.620878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0719 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.620880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.620884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.620889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.620891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.620896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.631869 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.631877 LLDP, length 82 [|LLDP] 12:28:51.631878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0721 ca05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.631880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.631884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.631888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.631891 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.631895 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.631899 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.631904 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.642879 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.642893 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.642897 LLDP, length 82 [|LLDP] 12:28:51.642898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072a 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.642900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.642905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.642907 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.642912 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.642916 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.642921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.651136 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.651144 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.651148 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.651153 LLDP, length 82 [|LLDP] 12:28:51.651154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0730 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.651156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.651160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.651165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.651167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.651171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.662151 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.662159 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.662163 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.662167 LLDP, length 82 [|LLDP] 12:28:51.662169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0738 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.662171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.662175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.662179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.662182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.662186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.673159 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.673167 LLDP, length 82 [|LLDP] 12:28:51.673169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0741 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.673170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.673175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.673179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.673182 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.673186 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.673191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.673195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.681415 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.681424 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.681428 LLDP, length 82 [|LLDP] 12:28:51.681430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0747 96d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.681431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.681436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.681438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.681442 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.681447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.681452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.692427 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.692437 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.692442 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.692446 LLDP, length 82 [|LLDP] 12:28:51.692447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074f fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.692449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.692454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.692458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.692460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.692465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.703453 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.703471 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.703476 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.703480 LLDP, length 82 [|LLDP] 12:28:51.703482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0758 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.703484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.703488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.703492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.703495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.703499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.711698 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.711708 LLDP, length 82 [|LLDP] 12:28:51.711709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075e b073 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.711711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.711715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.711720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.711722 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.711727 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.711731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.711735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.722706 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.722715 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.722719 LLDP, length 82 [|LLDP] 12:28:51.722721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0767 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.722722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.722727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.722729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.722734 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.722738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.722743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.730962 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.730971 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.730975 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.730979 LLDP, length 82 [|LLDP] 12:28:51.730981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076d 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.730983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.730987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.730991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.730993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.730998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.741973 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.741981 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.741985 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.741990 LLDP, length 82 [|LLDP] 12:28:51.741991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0775 ca07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.741993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.741997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.742002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.742004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.742008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.752984 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.752993 LLDP, length 82 [|LLDP] 12:28:51.752994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077e 306d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.752996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.753000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.753004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.753007 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.753011 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.753015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.753020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.761239 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.761247 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.761252 LLDP, length 82 [|LLDP] 12:28:51.761253 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0784 7d3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.761255 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.761259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.761262 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.761266 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.761270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.761275 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.772250 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.772259 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.772263 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.772268 LLDP, length 82 [|LLDP] 12:28:51.772269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078c e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.772271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.772275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.772279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.772282 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.772286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.783264 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.783273 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.783277 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.783281 LLDP, length 82 [|LLDP] 12:28:51.783283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0795 4a07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.783285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.783289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.783293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.783296 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.783301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.791518 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.791527 LLDP, length 82 [|LLDP] 12:28:51.791528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079b 96d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.791530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.791534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.791538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.791541 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.791545 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.791550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.791554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.802527 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.802534 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.802539 LLDP, length 82 [|LLDP] 12:28:51.802540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a3 fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.802542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.802546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.802548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.802553 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.802557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.802562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.810785 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.810793 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.810798 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.810802 LLDP, length 82 [|LLDP] 12:28:51.810803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07aa 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.810805 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.810809 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.810814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.810816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.810821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.821813 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.821822 LLDP, length 82 [|LLDP] 12:28:51.821824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b2 b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.821825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.821829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.832808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bb 16d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.832811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.832818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.832820 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.832825 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.832829 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.832834 LLDP, length 82 [|LLDP] 12:28:51.832835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.832840 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.832844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.841065 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.841074 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.841078 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.841083 LLDP, length 82 [|LLDP] 12:28:51.841084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c1 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.841086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.841090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.841093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.841097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.841102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.852076 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.852084 LLDP, length 82 [|LLDP] 12:28:51.852086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c9 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.852087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.852092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.852096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.852099 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.852103 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.852108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.852112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.863084 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.863092 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.863096 LLDP, length 82 [|LLDP] 12:28:51.863098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d2 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.863099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.863104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.863108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.863110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.863114 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.863119 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.871346 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.871353 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.871358 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.871362 LLDP, length 82 [|LLDP] 12:28:51.871363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d8 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.871365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.871369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.871373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.871375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.871380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.882354 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.882363 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.882367 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.882372 LLDP, length 82 [|LLDP] 12:28:51.882373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e0 e39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.882375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.882379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.882381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.882385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.882390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.893366 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.893374 LLDP, length 82 [|LLDP] 12:28:51.893376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e9 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.893378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.893382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.893386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.893388 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.893393 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.893397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.893402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.901621 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.901630 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.901634 LLDP, length 82 [|LLDP] 12:28:51.901636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ef 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.901638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.901643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.901647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.901649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.901653 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.901658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.912630 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.912639 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.912643 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.912647 LLDP, length 82 [|LLDP] 12:28:51.912649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f7 fd39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.912650 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.912655 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.912659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.912662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.912666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.920889 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.920897 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.920901 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.920905 LLDP, length 82 [|LLDP] 12:28:51.920907 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fe 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.920909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.920913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.920915 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.920919 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.920924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.931903 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.931914 LLDP, length 82 [|LLDP] 12:28:51.931916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0806 b06c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.931917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.931922 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.931926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.931928 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.931932 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.931937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.931942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.942911 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.942921 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.942925 LLDP, length 82 [|LLDP] 12:28:51.942926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080f 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.942928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.942932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.942936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.942939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.942943 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.942948 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.951169 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.951180 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.951185 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.951189 LLDP, length 82 [|LLDP] 12:28:51.951190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0815 63a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.951192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.951196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.951200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.951203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.951208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.964946 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.964955 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.964959 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.964964 LLDP, length 82 [|LLDP] 12:28:51.964965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081d ca0d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.964967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.964971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.964974 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.964978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.964982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.973189 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.973197 LLDP, length 82 [|LLDP] 12:28:51.973198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0826 306d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.973200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.973204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.973208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.973211 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.973215 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.973219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.973224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.981448 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.981457 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.981461 LLDP, length 82 [|LLDP] 12:28:51.981463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082c 7d39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.981465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.981469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.981473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.981476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.981480 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.981484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:51.992457 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:51.992465 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.992469 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:51.992474 LLDP, length 82 [|LLDP] 12:28:51.992475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0834 e3a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:51.992477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:51.992481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:51.992485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:51.992488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:51.992492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.003466 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.003475 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.003479 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.003483 LLDP, length 82 [|LLDP] 12:28:52.003485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083d 4a07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.003486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.003491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.003493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.003497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.003502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.011723 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.011732 LLDP, length 82 [|LLDP] 12:28:52.011733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0843 96d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.011734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.011739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.011743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.011745 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.011750 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.011754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.011758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.022735 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.022743 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.022748 LLDP, length 82 [|LLDP] 12:28:52.022749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084b fd3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.022751 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.022755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.022759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.022762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.022766 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.022770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.030990 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.030999 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.031003 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.031007 LLDP, length 82 [|LLDP] 12:28:52.031008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0852 4a06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.031010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.031014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.031018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.031021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.031026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.042002 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.042011 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.042015 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.042020 LLDP, length 82 [|LLDP] 12:28:52.042021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085a b06f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.042023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.042027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.042030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.042034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.042039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.053011 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.053020 LLDP, length 82 [|LLDP] 12:28:52.053021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0863 16d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.053023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.053027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.053032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.053034 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.053038 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.053042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.053047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.061268 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.061277 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.061281 LLDP, length 82 [|LLDP] 12:28:52.061282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0869 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.061284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.061288 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.061292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.061295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.061299 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.061303 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.072284 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.072294 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.072298 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.072303 LLDP, length 82 [|LLDP] 12:28:52.072304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0871 ca06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.072306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.072310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.072314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.072317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.072321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.083289 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.083298 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.083302 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.083306 LLDP, length 82 [|LLDP] 12:28:52.083308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087a 306c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.083309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.083314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.083316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.083320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.083325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.091548 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.091556 LLDP, length 82 [|LLDP] 12:28:52.091558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0880 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.091560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.091564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.091568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.091571 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.091575 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.091579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.091584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.102557 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.102567 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.102571 LLDP, length 82 [|LLDP] 12:28:52.102572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0888 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.102574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.102579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.102583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.102585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.102589 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.102594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.110814 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.110822 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.110826 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.110830 LLDP, length 82 [|LLDP] 12:28:52.110832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088f 308d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.110833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.110838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.110842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.110844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.110849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.121827 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.121836 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.121840 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.121844 LLDP, length 82 [|LLDP] 12:28:52.121846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0897 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.121848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.121852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.121854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.121858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.121863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.132836 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.132845 LLDP, length 82 [|LLDP] 12:28:52.132847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089f fd61 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.132849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.132853 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.132858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.132860 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.132865 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.132869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.132873 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.141094 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.141103 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.141107 LLDP, length 82 [|LLDP] 12:28:52.141109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a6 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.141110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.141115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.141119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.141122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.141126 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.141130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.152105 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.152113 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.152117 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.152122 LLDP, length 82 [|LLDP] 12:28:52.152123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ae b08d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.152125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.152129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.152133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.152136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.152140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.163112 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.163121 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.163125 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.163130 LLDP, length 82 [|LLDP] 12:28:52.163131 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b7 16f3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.163133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.163137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.163140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.163144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.163149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.171378 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.171387 LLDP, length 82 [|LLDP] 12:28:52.171389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bd 63c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.171390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.171395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.171399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.171401 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.171405 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.171410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.171414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.182381 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.182390 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.182394 LLDP, length 82 [|LLDP] 12:28:52.182395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c5 ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.182397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.182402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.182406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.182408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.182412 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.182417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.193392 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.193400 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.193405 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.193409 LLDP, length 82 [|LLDP] 12:28:52.193411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ce 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.193412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.193417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.193421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.193424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.193428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.201649 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.201658 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.201662 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.201667 LLDP, length 82 [|LLDP] 12:28:52.201668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d4 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.201670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.201674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.201676 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.201681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.201685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.212659 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.212667 LLDP, length 82 [|LLDP] 12:28:52.212669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08dc e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.212671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.212675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.212679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.212682 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.212686 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.212690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.212695 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.220918 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.220926 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.220931 LLDP, length 82 [|LLDP] 12:28:52.220932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e3 308d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.220934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.220938 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.220942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.220945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.220949 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.220954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.231948 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.231965 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.231970 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.231974 LLDP, length 82 [|LLDP] 12:28:52.231976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08eb 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.231978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.231983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.231987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.231990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.231994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.242947 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.242959 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.242964 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.242968 LLDP, length 82 [|LLDP] 12:28:52.242970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f3 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.242971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.242976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.242978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.242982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.242987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.251201 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.251213 LLDP, length 82 [|LLDP] 12:28:52.251215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fa 4a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.251216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.251221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.251225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.251228 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.251232 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.251237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.251241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.262210 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.262221 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.262225 LLDP, length 82 [|LLDP] 12:28:52.262227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0902 b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.262229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.262233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.262237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.262240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.262245 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.262250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.273223 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.273234 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.273239 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.273243 LLDP, length 82 [|LLDP] 12:28:52.273245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090b 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.273246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.273251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.273255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.273258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.273262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.281478 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.281489 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.281494 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.281498 LLDP, length 82 [|LLDP] 12:28:52.281500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0911 63c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.281502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.281506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.281508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.281512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.281517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.292487 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.292498 LLDP, length 82 [|LLDP] 12:28:52.292500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0919 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.292501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.292506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.292510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.292512 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.292517 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.292521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.292525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.300749 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.300760 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.300765 LLDP, length 82 [|LLDP] 12:28:52.300766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0920 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.300768 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.300772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.300776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.300779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.300783 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.300788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.311758 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.311769 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.311774 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.311778 LLDP, length 82 [|LLDP] 12:28:52.311780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0928 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.311782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.311786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.311790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.311793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.311797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.322770 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.322782 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.322787 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.322791 LLDP, length 82 [|LLDP] 12:28:52.322793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0930 e3c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.322795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.322799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.322801 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.322806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.322810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.331027 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.331039 LLDP, length 82 [|LLDP] 12:28:52.331041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0937 308f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.331043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.331047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.331051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.331054 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.331058 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.331063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.331067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.342036 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.342047 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.342052 LLDP, length 82 [|LLDP] 12:28:52.342053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093f 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.342055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.342059 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.342063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.342066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.342070 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.342075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.353044 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.353056 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.353060 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.353064 LLDP, length 82 [|LLDP] 12:28:52.353066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0947 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.353067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.353072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.353076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.353079 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.353083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.361304 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.361316 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.361320 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.361325 LLDP, length 82 [|LLDP] 12:28:52.361326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094e 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.361328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.361332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.361335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.361339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.361344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.372313 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.372325 LLDP, length 82 [|LLDP] 12:28:52.372326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0956 b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.372329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.372333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.372337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.372339 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.372344 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.372348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.372352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.383324 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.383343 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.383348 LLDP, length 82 [|LLDP] 12:28:52.383349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095f 16fb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.383351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.383356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.383360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.383362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.383366 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.383371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.391581 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.391594 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.391598 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.391603 LLDP, length 82 [|LLDP] 12:28:52.391605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0965 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.391606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.391611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.391615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.391617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.391622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.402591 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.402602 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.402606 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.402611 LLDP, length 82 [|LLDP] 12:28:52.402612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096d ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.402614 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.402618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.402621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.402625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.402629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.410850 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.410861 LLDP, length 82 [|LLDP] 12:28:52.410862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0974 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.410864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.410868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.410873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.410875 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.410880 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.410884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.410889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.421860 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.421871 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.421875 LLDP, length 82 [|LLDP] 12:28:52.421877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097c 7d5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.421879 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.421883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.421887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.421890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.421894 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.421899 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.432866 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.432878 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.432882 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.432887 LLDP, length 82 [|LLDP] 12:28:52.432888 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0984 e3c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.432890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.432894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.432898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.432901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.432905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.441129 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.441140 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.441145 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.441149 LLDP, length 82 [|LLDP] 12:28:52.441151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098b 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.441153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.441157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.441159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.441163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.441168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.452142 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.452155 LLDP, length 82 [|LLDP] 12:28:52.452157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0993 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.452159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.452163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.452167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.452170 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.452174 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.452179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.452183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.463149 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.463161 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.463166 LLDP, length 82 [|LLDP] 12:28:52.463167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099b fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.463169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.463174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.463178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.463181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.463185 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.463190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.471407 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.471419 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.471423 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.471428 LLDP, length 82 [|LLDP] 12:28:52.471429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a2 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.471431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.471435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.471440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.471443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.471447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.482416 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.482428 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.482432 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.482437 LLDP, length 82 [|LLDP] 12:28:52.482438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09aa b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.482440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.482444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.482446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.482451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.482455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.493453 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.493475 LLDP, length 82 [|LLDP] 12:28:52.493477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b3 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.493479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.493485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.493489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.493492 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.493497 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.493502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.493506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.501709 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.501729 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.501734 LLDP, length 82 [|LLDP] 12:28:52.501736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b9 63c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.501738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.501742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.501747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.501750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.501754 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.501759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.512704 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.512721 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.512725 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.512730 LLDP, length 82 [|LLDP] 12:28:52.512732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c1 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.512734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.512738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.512742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.512745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.512750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.520961 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.520976 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.520980 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.520984 LLDP, length 82 [|LLDP] 12:28:52.520986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c8 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.520988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.520992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.520995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.520999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.521004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.531970 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.531985 LLDP, length 82 [|LLDP] 12:28:52.531987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d0 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.531989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.531993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.531998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.532000 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.532004 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.532009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.532013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.542979 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.542994 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.542998 LLDP, length 82 [|LLDP] 12:28:52.543000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d8 e3c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.543002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.543006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.543010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.543013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.543017 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.543022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.551236 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.551251 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.551255 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.551260 LLDP, length 82 [|LLDP] 12:28:52.551262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09df 308f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.551264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.551268 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.551273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.551276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.551280 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.562249 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.562266 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.562270 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.562275 LLDP, length 82 [|LLDP] 12:28:52.562276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e7 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.562278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.562282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.562285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.562289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.562294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.573257 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.573272 LLDP, length 82 [|LLDP] 12:28:52.573273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ef fd5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.573275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.573280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.573284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.573287 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.573291 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.573295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.573300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.581520 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.581534 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.581539 LLDP, length 82 [|LLDP] 12:28:52.581541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f6 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.581543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.581548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.581552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.581555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.581559 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.581563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.592524 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.592538 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.592543 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.592547 LLDP, length 82 [|LLDP] 12:28:52.592549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fe b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.592551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.592555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.592559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.592562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.592567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.600781 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.600796 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.600800 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.600805 LLDP, length 82 [|LLDP] 12:28:52.600806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a04 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.600808 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.600812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.600815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.600820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.600824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.611791 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.611806 LLDP, length 82 [|LLDP] 12:28:52.611807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0d 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.611809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.611813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.611818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.611820 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.611824 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.611829 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.611833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.622803 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.622818 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.622822 LLDP, length 82 [|LLDP] 12:28:52.622824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a15 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.622826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.622830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.622834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.622837 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.622841 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.622846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.631061 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.631075 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.631079 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.631084 LLDP, length 82 [|LLDP] 12:28:52.631085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1c 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.631087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.631092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.631096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.631099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.631103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.642071 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.642086 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.642091 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.642096 LLDP, length 82 [|LLDP] 12:28:52.642097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a24 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.642099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.642104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.642107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.642111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.642115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.653084 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.653099 LLDP, length 82 [|LLDP] 12:28:52.653100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2c e3c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.653102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.653107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.653111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.653114 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.653118 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.653123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.653127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.661340 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.661355 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.661360 LLDP, length 82 [|LLDP] 12:28:52.661361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a33 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.661363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.661368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.661372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.661375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.661379 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.661384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.672350 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.672364 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.672369 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.672373 LLDP, length 82 [|LLDP] 12:28:52.672375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3b 96f7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.672377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.672381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.672385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.672388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.672392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.683363 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.683378 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.683383 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.683388 LLDP, length 82 [|LLDP] 12:28:52.683390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a43 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.683392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.683396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.683400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.683404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.683409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.691617 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.691632 LLDP, length 82 [|LLDP] 12:28:52.691633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4a 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.691635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.691640 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.691644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.691647 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.691652 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.691657 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.691662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.702629 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.702645 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.702649 LLDP, length 82 [|LLDP] 12:28:52.702651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a52 b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.702653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.702657 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.702662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.702664 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.702669 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.702674 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.710885 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.710900 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.710904 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.710908 LLDP, length 82 [|LLDP] 12:28:52.710910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a58 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.710912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.710917 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.710921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.710924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.710928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.721895 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.721912 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.721917 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.721922 LLDP, length 82 [|LLDP] 12:28:52.721923 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a61 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.721925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.721930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.721933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.721937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.721941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.732904 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.732919 LLDP, length 82 [|LLDP] 12:28:52.732921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a69 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.732923 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.732928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.732932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.732935 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.732939 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.732944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.732949 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.741163 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.741178 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.741184 LLDP, length 82 [|LLDP] 12:28:52.741185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a70 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.741187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.741192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.741196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.741199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.741203 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.741208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.752173 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.752187 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.752191 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.752196 LLDP, length 82 [|LLDP] 12:28:52.752197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a78 7d62 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.752199 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.752204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.752209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.752212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.752216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.763183 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.763198 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.763203 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.763208 LLDP, length 82 [|LLDP] 12:28:52.763210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a80 e3c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.763212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.763216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.763219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.763223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.763228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.771441 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.771456 LLDP, length 82 [|LLDP] 12:28:52.771458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a87 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.771460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.771465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.771469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.771472 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.771476 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.771481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.771485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.782449 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.782464 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.782469 LLDP, length 82 [|LLDP] 12:28:52.782470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8f 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.782472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.782477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.782481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.782484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.782488 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.782493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.790710 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.790725 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.790729 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.790734 LLDP, length 82 [|LLDP] 12:28:52.790736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a95 e3c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.790737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.790742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.790746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.790749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.790753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.801718 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.801733 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.801738 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.801742 LLDP, length 82 [|LLDP] 12:28:52.801744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9e 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.801746 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.801750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.801753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.801757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.801762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.812727 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.812742 LLDP, length 82 [|LLDP] 12:28:52.812744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa6 b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.812746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.812750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.812755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.812758 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.812762 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.812766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.812771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.820986 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.821000 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.821005 LLDP, length 82 [|LLDP] 12:28:52.821007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aac fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.821008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.821013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.821017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.821020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.821024 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.821029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.831995 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.832010 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.832014 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.832018 LLDP, length 82 [|LLDP] 12:28:52.832020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab5 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.832022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.832026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.832030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.832033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.832038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.843004 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.843019 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.843023 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.843028 LLDP, length 82 [|LLDP] 12:28:52.843030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abd ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.843031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.843036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.843038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.843043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.843048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.851265 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.851279 LLDP, length 82 [|LLDP] 12:28:52.851281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac4 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.851283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.851287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.851291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.851294 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.851298 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.851303 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.851307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.862276 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.862292 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.862297 LLDP, length 82 [|LLDP] 12:28:52.862298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acc 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.862300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.862305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.862309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.862312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.862316 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.862321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.873287 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.873301 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.873306 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.873310 LLDP, length 82 [|LLDP] 12:28:52.873312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad4 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.873314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.873319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.873323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.873326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.873330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.881544 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.881559 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.881563 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.881568 LLDP, length 82 [|LLDP] 12:28:52.881569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0adb 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.881571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.881576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.881578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.881583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.881588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.892554 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.892569 LLDP, length 82 [|LLDP] 12:28:52.892571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae3 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.892573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.892577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.892582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.892584 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.892589 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.892593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.892598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.900810 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.900824 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.900829 LLDP, length 82 [|LLDP] 12:28:52.900830 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae9 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.900832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.900836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.900841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.900844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.900848 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.900853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.911818 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.911832 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.911837 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.911842 LLDP, length 82 [|LLDP] 12:28:52.911843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af2 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.911845 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.911850 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.911854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.911857 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.911861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.922829 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.922843 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.922847 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.922852 LLDP, length 82 [|LLDP] 12:28:52.922854 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afa b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.922855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.922860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.922863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.922867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.922872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.931089 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.931103 LLDP, length 82 [|LLDP] 12:28:52.931105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b00 fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.931107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.931111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.931116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.931118 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.931122 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.931127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.931131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.942098 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.942113 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.942118 LLDP, length 82 [|LLDP] 12:28:52.942120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b09 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.942121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.942126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.942130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.942133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.942137 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.942142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.953109 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.953125 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.953129 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.953134 LLDP, length 82 [|LLDP] 12:28:52.953135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b11 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.953137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.953142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.953146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.953149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.953153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.961366 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.961380 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.961385 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.961389 LLDP, length 82 [|LLDP] 12:28:52.961391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b18 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.961393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.961397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.961400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.961404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.961409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.972380 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.972395 LLDP, length 82 [|LLDP] 12:28:52.972396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b20 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.972398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.972403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.972407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.972410 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.972414 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.972419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.972423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.983390 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.983406 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.983410 LLDP, length 82 [|LLDP] 12:28:52.983412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b28 e3c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.983414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.983418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.983423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.983426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.983430 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.983435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:52.991646 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:52.991661 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.991666 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:52.991670 LLDP, length 82 [|LLDP] 12:28:52.991672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2f 308f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:52.991674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:52.991679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:52.991683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:52.991686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:52.991690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.002656 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.002672 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.002676 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.002681 LLDP, length 82 [|LLDP] 12:28:53.002682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b37 96fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.002684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.002688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.002691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.002695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.002700 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.010913 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.010927 LLDP, length 82 [|LLDP] 12:28:53.010929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3d e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.010931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.010936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.010940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.010943 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.010947 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.010952 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.010956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.021923 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.021937 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.021942 LLDP, length 82 [|LLDP] 12:28:53.021944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b46 4a29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.021946 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.021950 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.021954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.021957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.021961 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.021966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.032934 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.032949 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.032953 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.032957 LLDP, length 82 [|LLDP] 12:28:53.032959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4e b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.032961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.032965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.032969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.032972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.032977 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.041191 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.041205 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.041210 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.041214 LLDP, length 82 [|LLDP] 12:28:53.041216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b54 fd5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.041218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.041222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.041225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.041229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.041234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.052203 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.052217 LLDP, length 82 [|LLDP] 12:28:53.052219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5d 63c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.052221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.052225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.052230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.052232 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.052237 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.052241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.052246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.063209 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.063223 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.063228 LLDP, length 82 [|LLDP] 12:28:53.063230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b65 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.063232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.063236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.063241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.063243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.063247 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.063252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.071470 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.071486 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.071491 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.071495 LLDP, length 82 [|LLDP] 12:28:53.071497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6c 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.071499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.071504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.071508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.071511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.071515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.082479 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.082495 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.082499 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.082504 LLDP, length 82 [|LLDP] 12:28:53.082505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b74 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.082507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.082511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.082514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.082518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.082523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.090736 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.090750 LLDP, length 82 [|LLDP] 12:28:53.090751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7a ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.090753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.090758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.090763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.090765 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.090770 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.090774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.090779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.101749 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.101765 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.101770 LLDP, length 82 [|LLDP] 12:28:53.101771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b83 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.101773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.101777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.101782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.101785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.101789 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.101794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.112760 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.112775 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.112779 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.112784 LLDP, length 82 [|LLDP] 12:28:53.112785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8b 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.112787 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.112791 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.112795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.112798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.112803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.121018 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.121034 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.121038 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.121043 LLDP, length 82 [|LLDP] 12:28:53.121044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b91 e3c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.121046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.121051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.121053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.121058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.121062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.132030 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.132044 LLDP, length 82 [|LLDP] 12:28:53.132045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9a 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.132047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.132052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.132056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.132059 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.132063 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.132067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.132072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.143034 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.143048 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.143053 LLDP, length 82 [|LLDP] 12:28:53.143054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba2 b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.143056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.143061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.143065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.143068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.143072 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.143076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.151295 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.151309 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.151314 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.151318 LLDP, length 82 [|LLDP] 12:28:53.151320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba8 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.151322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.151326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.151330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.151333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.151344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.162303 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.162318 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.162323 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.162327 LLDP, length 82 [|LLDP] 12:28:53.162328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb1 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.162330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.162334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.162337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.162341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.162346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.173313 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.173329 LLDP, length 82 [|LLDP] 12:28:53.173331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb9 ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.173333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.173337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.173342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.173345 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.173349 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.173354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.173358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.181573 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.181589 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.181593 LLDP, length 82 [|LLDP] 12:28:53.181595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc0 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.181596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.181601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.181605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.181607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.181612 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.181616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.192583 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.192599 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.192604 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.192608 LLDP, length 82 [|LLDP] 12:28:53.192610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc8 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.192612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.192617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.192621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.192624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.192628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.200838 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.200854 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.200858 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.200863 LLDP, length 82 [|LLDP] 12:28:53.200864 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bce ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.200866 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.200870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.200873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.200877 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.200882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.211850 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.211865 LLDP, length 82 [|LLDP] 12:28:53.211866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd7 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.211868 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.211873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.211877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.211879 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.211884 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.211888 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.211892 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.222859 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.222874 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.222879 LLDP, length 82 [|LLDP] 12:28:53.222880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdf 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.222882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.222887 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.222891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.222894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.222898 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.222903 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.231117 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.231132 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.231136 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.231141 LLDP, length 82 [|LLDP] 12:28:53.231142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be5 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.231144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.231149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.231153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.231156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.231161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.242128 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.242143 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.242147 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.242152 LLDP, length 82 [|LLDP] 12:28:53.242153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bee 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.242155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.242160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.242163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.242167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.242171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.253148 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.253163 LLDP, length 82 [|LLDP] 12:28:53.253165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf6 b095 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.253167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.253172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.253176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.253178 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.253183 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.253187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.253192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.261396 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.261411 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.261415 LLDP, length 82 [|LLDP] 12:28:53.261417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfc fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.261419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.261424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.261428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.261431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.261435 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.261440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.272404 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.272420 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.272425 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.272429 LLDP, length 82 [|LLDP] 12:28:53.272431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c05 63c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.272433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.272437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.272441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.272444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.272448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.283417 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.283432 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.283437 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.283441 LLDP, length 82 [|LLDP] 12:28:53.283443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0d ca29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.283445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.283449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.283452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.283456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.283461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.291679 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.291697 LLDP, length 82 [|LLDP] 12:28:53.291699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c14 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.291701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.291706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.291710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.291713 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.291717 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.291722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.291726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.302688 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.302704 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.302709 LLDP, length 82 [|LLDP] 12:28:53.302710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1c 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.302712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.302717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.302721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.302724 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.302728 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.302733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.310942 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.310957 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.310961 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.310966 LLDP, length 82 [|LLDP] 12:28:53.310967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c22 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.310969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.310973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.310978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.310981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.310985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.321950 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.321965 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.321970 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.321974 LLDP, length 82 [|LLDP] 12:28:53.321976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2b 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.321978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.321982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.321985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.321989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.321994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.332961 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.332975 LLDP, length 82 [|LLDP] 12:28:53.332976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c33 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.332978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.332983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.332987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.332989 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.332994 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.332998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.333003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.341221 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.341235 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.341240 LLDP, length 82 [|LLDP] 12:28:53.341241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c39 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.341243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.341247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.341251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.341254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.341258 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.341263 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.352231 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.352245 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.352250 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.352254 LLDP, length 82 [|LLDP] 12:28:53.352256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c42 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.352258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.352262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.352266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.352269 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.352273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.363238 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.363253 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.363258 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.363262 LLDP, length 82 [|LLDP] 12:28:53.363264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4a b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.363266 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.363270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.363273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.363277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.363282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.371497 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.371512 LLDP, length 82 [|LLDP] 12:28:53.371514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c50 fd61 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.371516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.371521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.371525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.371528 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.371533 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.371537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.371542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.382506 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.382521 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.382525 LLDP, length 82 [|LLDP] 12:28:53.382527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c59 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.382529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.382533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.382537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.382540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.382544 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.382549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.390765 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.390780 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.390784 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.390789 LLDP, length 82 [|LLDP] 12:28:53.390790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5f b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.390792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.390797 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.390801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.390804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.390809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.401779 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.401793 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.401797 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.401802 LLDP, length 82 [|LLDP] 12:28:53.401803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c68 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.401805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.401809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.401812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.401816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.401821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.412785 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.412799 LLDP, length 82 [|LLDP] 12:28:53.412801 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c70 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.412803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.412807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.412812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.412815 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.412819 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.412823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.412828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.421044 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.421058 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.421063 LLDP, length 82 [|LLDP] 12:28:53.421064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c76 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.421066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.421071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.421075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.421078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.421082 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.421086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.432053 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.432068 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.432073 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.432077 LLDP, length 82 [|LLDP] 12:28:53.432079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7f 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.432081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.432085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.432089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.432092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.432096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.443063 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.443077 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.443082 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.443086 LLDP, length 82 [|LLDP] 12:28:53.443088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c87 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.443090 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.443094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.443097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.443101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.443106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.451322 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.451343 LLDP, length 82 [|LLDP] 12:28:53.451345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8d e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.451347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.451352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.451356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.451359 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.451363 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.451368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.451372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.462329 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.462343 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.462348 LLDP, length 82 [|LLDP] 12:28:53.462350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c96 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.462351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.462356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.462360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.462363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.462367 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.462372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.473341 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.473355 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.473360 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.473365 LLDP, length 82 [|LLDP] 12:28:53.473366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9e b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.473368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.473373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.473377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.473380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.473385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.481598 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.481613 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.481617 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.481622 LLDP, length 82 [|LLDP] 12:28:53.481623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca4 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.481625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.481629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.481632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.481637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.481642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.492608 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.492623 LLDP, length 82 [|LLDP] 12:28:53.492624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cad 63c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.492626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.492631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.492635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.492638 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.492642 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.492647 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.492651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.500867 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.500881 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.500886 LLDP, length 82 [|LLDP] 12:28:53.500887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb3 b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.500889 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.500894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.500898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.500901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.500905 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.500910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.511887 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.511908 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.511912 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.511917 LLDP, length 82 [|LLDP] 12:28:53.511919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbc 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.511921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.511926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.511930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.511933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.511938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.522914 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.522937 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.522943 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.522947 LLDP, length 82 [|LLDP] 12:28:53.522949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc4 7d5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.522951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.522956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.522959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.522963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.522968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.531157 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.531176 LLDP, length 82 [|LLDP] 12:28:53.531178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cca ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.531180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.531185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.531189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.531192 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.531196 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.531200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.531206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.542161 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.542177 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.542182 LLDP, length 82 [|LLDP] 12:28:53.542184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd3 308f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.542185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.542190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.542194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.542197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.542201 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.542205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.553174 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.553192 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.553197 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.553201 LLDP, length 82 [|LLDP] 12:28:53.553203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cdb 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.553205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.553209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.553213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.553216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.553221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.561430 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.561447 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.561451 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.561456 LLDP, length 82 [|LLDP] 12:28:53.561458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce1 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.561460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.561464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.561467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.561471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.561476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.572437 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.572453 LLDP, length 82 [|LLDP] 12:28:53.572455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cea 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.572457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.572461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.572466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.572468 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.572473 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.572477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.572481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.580697 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.580715 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.580720 LLDP, length 82 [|LLDP] 12:28:53.580721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf0 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.580723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.580728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.580732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.580734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.580739 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.580743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.591707 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.591725 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.591729 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.591734 LLDP, length 82 [|LLDP] 12:28:53.591736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf8 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.591738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.591742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.591747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.591749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.591754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.602716 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.602731 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.602735 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.602740 LLDP, length 82 [|LLDP] 12:28:53.602741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d01 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.602743 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.602747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.602750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.602755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.602759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.610969 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.610983 LLDP, length 82 [|LLDP] 12:28:53.610985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d07 b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.610986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.610991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.610995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.610998 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.611002 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.611007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.611012 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.621979 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.621993 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.621998 LLDP, length 82 [|LLDP] 12:28:53.622000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d10 16fa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.622001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.622006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.622010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.622013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.622017 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.622022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.632987 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.633000 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.633004 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.633009 LLDP, length 82 [|LLDP] 12:28:53.633010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d18 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.633012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.633017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.633021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.633024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.633028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.641246 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.641259 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.641264 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.641268 LLDP, length 82 [|LLDP] 12:28:53.641270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1e ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.641272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.641276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.641279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.641283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.641288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.652256 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.652270 LLDP, length 82 [|LLDP] 12:28:53.652271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d27 308d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.652273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.652278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.652282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.652285 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.652289 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.652294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.652298 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.663265 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.663280 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.663284 LLDP, length 82 [|LLDP] 12:28:53.663285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2f 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.663287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.663292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.663296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.663299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.663303 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.663307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.671526 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.671540 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.671545 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.671549 LLDP, length 82 [|LLDP] 12:28:53.671551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d35 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.671553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.671557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.671561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.671564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.671568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.682536 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.682551 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.682555 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.682559 LLDP, length 82 [|LLDP] 12:28:53.682561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3e 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.682563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.682567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.682570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.682574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.682579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.690794 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.690807 LLDP, length 82 [|LLDP] 12:28:53.690809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d44 96f3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.690811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.690815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.690819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.690822 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.690826 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.690830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.690835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.701803 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.701818 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.701822 LLDP, length 82 [|LLDP] 12:28:53.701824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4c fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.701826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.701830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.701834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.701837 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.701841 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.701846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.712814 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.712828 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.712832 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.712837 LLDP, length 82 [|LLDP] 12:28:53.712838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d55 63c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.712840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.712844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.712849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.712852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.712856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.721070 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.721084 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.721088 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.721093 LLDP, length 82 [|LLDP] 12:28:53.721094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5b b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.721096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.721100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.721103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.721107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.721111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.732081 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.732094 LLDP, length 82 [|LLDP] 12:28:53.732096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d64 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.732098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.732102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.732106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.732109 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.732113 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.732118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.732122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.743091 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.743104 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.743109 LLDP, length 82 [|LLDP] 12:28:53.743110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6c 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.743112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.743116 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.743120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.743123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.743127 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.743132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.751361 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.751376 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.751380 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.751385 LLDP, length 82 [|LLDP] 12:28:53.751386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d72 ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.751388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.751393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.751397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.751400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.751404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.762359 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.762374 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.762378 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.762383 LLDP, length 82 [|LLDP] 12:28:53.762384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7b 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.762386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.762390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.762393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.762397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.762402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.773369 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.773383 LLDP, length 82 [|LLDP] 12:28:53.773384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d83 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.773386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.773391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.773395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.773398 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.773402 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.773407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.773411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.781626 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.781640 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.781644 LLDP, length 82 [|LLDP] 12:28:53.781646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d89 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.781648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.781652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.781656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.781659 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.781663 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.781668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.792636 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.792649 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.792654 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.792659 LLDP, length 82 [|LLDP] 12:28:53.792660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d92 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.792662 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.792666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.792671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.792673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.792678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.800893 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.800908 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.800912 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.800917 LLDP, length 82 [|LLDP] 12:28:53.800918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d98 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.800920 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.800924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.800927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.800931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.800936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.811905 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.811919 LLDP, length 82 [|LLDP] 12:28:53.811920 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da0 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.811922 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.811927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.811931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.811934 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.811938 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.811942 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.811947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.822917 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.822932 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.822936 LLDP, length 82 [|LLDP] 12:28:53.822937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da9 63c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.822939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.822943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.822947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.822950 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.822954 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.822959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.831174 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.831187 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.831192 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.831196 LLDP, length 82 [|LLDP] 12:28:53.831197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0daf b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.831199 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.831204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.831208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.831211 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.831215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.842182 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.842196 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.842200 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.842204 LLDP, length 82 [|LLDP] 12:28:53.842206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db8 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.842208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.842212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.842215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.842220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.842224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.853193 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.853208 LLDP, length 82 [|LLDP] 12:28:53.853209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc0 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.853211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.853215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.853219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.853222 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.853226 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.853230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.853235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.861452 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.861466 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.861471 LLDP, length 82 [|LLDP] 12:28:53.861472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc6 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.861474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.861478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.861483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.861485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.861490 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.861494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.872461 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.872474 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.872479 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.872483 LLDP, length 82 [|LLDP] 12:28:53.872484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dcf 3095 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.872486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.872491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.872495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.872498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.872503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.880719 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.880733 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.880737 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.880741 LLDP, length 82 [|LLDP] 12:28:53.880743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd5 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.880744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.880748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.880751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.880755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.880760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.891727 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.891739 LLDP, length 82 [|LLDP] 12:28:53.891740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddd e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.891742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.891747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.891751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.891754 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.891758 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.891762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.891766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.902744 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.902761 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.902766 LLDP, length 82 [|LLDP] 12:28:53.902767 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de6 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.902769 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.902774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.902778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.902781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.902785 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.902790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.910997 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.911013 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.911018 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.911022 LLDP, length 82 [|LLDP] 12:28:53.911023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dec 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.911025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.911030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.911034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.911037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.911041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.922005 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.922019 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.922024 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.922028 LLDP, length 82 [|LLDP] 12:28:53.922029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df4 fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.922031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.922036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.922039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.922043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.922048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.933020 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.933033 LLDP, length 82 [|LLDP] 12:28:53.933035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfd 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.933037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.933041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.933046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.933049 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.933053 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.933057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.933062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.941277 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.941291 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.941295 LLDP, length 82 [|LLDP] 12:28:53.941297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e03 b08d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.941298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.941303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.941307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.941309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.941314 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.941318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.952286 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.952300 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.952304 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.952309 LLDP, length 82 [|LLDP] 12:28:53.952310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0c 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.952313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.952317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.952321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.952324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.952329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.963295 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.963308 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.963313 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.963317 LLDP, length 82 [|LLDP] 12:28:53.963319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e14 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.963321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.963325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.963328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.963332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.963346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.971553 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.971566 LLDP, length 82 [|LLDP] 12:28:53.971567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1a ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.971569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.971574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.971578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.971581 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.971585 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.971590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.971594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.982566 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.982580 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.982584 LLDP, length 82 [|LLDP] 12:28:53.982585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e23 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.982587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.982592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.982596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.982599 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.982603 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.982608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:53.990823 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:53.990836 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.990841 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:53.990845 LLDP, length 82 [|LLDP] 12:28:53.990846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e29 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:53.990848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:53.990853 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:53.990857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:53.990860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:53.990864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.001830 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.001843 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.001848 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.001852 LLDP, length 82 [|LLDP] 12:28:54.001853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e31 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.001855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.001859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.001862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.001866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.001871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.012840 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.012854 LLDP, length 82 [|LLDP] 12:28:54.012856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3a 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.012858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.012862 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.012866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.012869 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.012873 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.012878 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.012882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.021098 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.021112 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.021117 LLDP, length 82 [|LLDP] 12:28:54.021118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e40 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.021120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.021124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.021129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.021132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.021136 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.021140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.032108 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.032122 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.032126 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.032131 LLDP, length 82 [|LLDP] 12:28:54.032132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e48 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.032134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.032139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.032143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.032146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.032151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.043121 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.043135 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.043140 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.043144 LLDP, length 82 [|LLDP] 12:28:54.043146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e51 63c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.043147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.043152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.043154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.043158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.043163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.051385 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.051398 LLDP, length 82 [|LLDP] 12:28:54.051400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e57 b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.051401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.051406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.051410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.051412 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.051417 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.051421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.051425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.062387 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.062400 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.062404 LLDP, length 82 [|LLDP] 12:28:54.062406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e60 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.062408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.062412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.062416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.062419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.062423 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.062427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.070644 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.070657 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.070662 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.070666 LLDP, length 82 [|LLDP] 12:28:54.070667 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e66 63c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.070669 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.070674 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.070678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.070680 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.070685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.081654 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.081667 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.081672 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.081676 LLDP, length 82 [|LLDP] 12:28:54.081678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6e ca29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.081680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.081684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.081687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.081691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.081695 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.092665 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.092678 LLDP, length 82 [|LLDP] 12:28:54.092680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e77 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.092681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.092686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.092690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.092693 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.092697 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.092701 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.092706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.100923 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.100936 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.100941 LLDP, length 82 [|LLDP] 12:28:54.100942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7d 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.100944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.100948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.100953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.100955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.100959 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.100964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.111933 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.111946 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.111950 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.111955 LLDP, length 82 [|LLDP] 12:28:54.111956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e85 e3c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.111958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.111963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.111967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.111970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.111974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.122967 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.122993 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.122998 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.123003 LLDP, length 82 [|LLDP] 12:28:54.123005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8e 4a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.123007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.123011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.123014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.123019 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.123024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.131211 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.131228 LLDP, length 82 [|LLDP] 12:28:54.131230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e94 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.131232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.131236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.131241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.131244 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.131248 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.131252 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.131257 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.142212 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.142226 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.142230 LLDP, length 82 [|LLDP] 12:28:54.142232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9c fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.142234 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.142238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.142242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.142245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.142249 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.142254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.153239 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.153261 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.153265 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.153270 LLDP, length 82 [|LLDP] 12:28:54.153272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea5 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.153274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.153279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.153283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.153291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.153296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.161487 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.161504 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.161508 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.161513 LLDP, length 82 [|LLDP] 12:28:54.161514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eab b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.161517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.161521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.161524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.161528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.161533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.172497 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.172514 LLDP, length 82 [|LLDP] 12:28:54.172516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb4 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.172517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.172522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.172526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.172529 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.172534 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.172538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.172542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.180748 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.180761 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.180766 LLDP, length 82 [|LLDP] 12:28:54.180768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eba 63c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.180769 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.180774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.180778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.180781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.180785 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.180790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.191776 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.191800 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.191804 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.191809 LLDP, length 82 [|LLDP] 12:28:54.191811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec2 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.191813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.191818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.191822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.191825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.191830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.202781 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.202802 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.202806 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.202811 LLDP, length 82 [|LLDP] 12:28:54.202812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecb 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.202814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.202819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.202822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.202826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.202830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.211032 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.211048 LLDP, length 82 [|LLDP] 12:28:54.211050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed1 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.211052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.211056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.211061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.211064 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.211068 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.211072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.211077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.222052 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.222074 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.222079 LLDP, length 82 [|LLDP] 12:28:54.222081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed9 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.222083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.222088 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.222092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.222095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.222099 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.222104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.233054 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.233071 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.233075 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.233079 LLDP, length 82 [|LLDP] 12:28:54.233081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee2 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.233084 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.233088 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.233092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.233095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.233099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.241304 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.241319 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.241323 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.241327 LLDP, length 82 [|LLDP] 12:28:54.241329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee8 96fb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.241331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.241335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.241338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.241342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.241346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.252325 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.252343 LLDP, length 82 [|LLDP] 12:28:54.252345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef0 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.252347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.252352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.252356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.252359 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.252363 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.252368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.252373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.263362 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.263388 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.263393 LLDP, length 82 [|LLDP] 12:28:54.263395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef9 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.263397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.263402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.263406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.263409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.263414 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.263419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.271590 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.271606 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.271611 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.271615 LLDP, length 82 [|LLDP] 12:28:54.271617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eff b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.271618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.271623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.271627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.271630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.271634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.282597 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.282612 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.282617 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.282622 LLDP, length 82 [|LLDP] 12:28:54.282624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f08 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.282625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.282630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.282632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.282637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.282642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.290851 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.290866 LLDP, length 82 [|LLDP] 12:28:54.290867 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0e 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.290869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.290874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.290878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.290881 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.290886 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.290890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.290895 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.301862 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.301883 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.301887 LLDP, length 82 [|LLDP] 12:28:54.301889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f16 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.301891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.301895 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.301899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.301902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.301906 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.301911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.312872 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.312886 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.312891 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.312895 LLDP, length 82 [|LLDP] 12:28:54.312897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1f 308f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.312899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.312903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.312908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.312910 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.312915 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.321129 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.321143 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.321148 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.321153 LLDP, length 82 [|LLDP] 12:28:54.321154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f25 7d5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.321156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.321160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.321163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.321167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.321172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.332142 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.332158 LLDP, length 82 [|LLDP] 12:28:54.332160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2d e3c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.332162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.332166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.332171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.332173 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.332178 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.332182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.332187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.343150 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.343166 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.343171 LLDP, length 82 [|LLDP] 12:28:54.343172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f36 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.343174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.343179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.343184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.343186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.343190 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.343195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.351411 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.351427 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.351431 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.351436 LLDP, length 82 [|LLDP] 12:28:54.351438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3c 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.351440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.351444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.351449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.351452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.351456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.362417 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.362433 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.362438 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.362442 LLDP, length 82 [|LLDP] 12:28:54.362444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f44 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.362446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.362450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.362453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.362457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.362461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.370677 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.370693 LLDP, length 82 [|LLDP] 12:28:54.370694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4b 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.370696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.370701 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.370705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.370708 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.370712 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.370716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.370721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.381688 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.381703 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.381707 LLDP, length 82 [|LLDP] 12:28:54.381709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f53 b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.381711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.381715 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.381719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.381722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.381726 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.381731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.392697 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.392711 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.392716 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.392720 LLDP, length 82 [|LLDP] 12:28:54.392722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5c 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.392724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.392729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.392733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.392736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.392740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.400956 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.400970 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.400975 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.400979 LLDP, length 82 [|LLDP] 12:28:54.400981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f62 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.400982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.400987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.400989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.400993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.400998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.411964 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.411979 LLDP, length 82 [|LLDP] 12:28:54.411981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6a ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.411983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.411988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.411992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.411995 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.411999 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.412003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.412008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.422975 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.422990 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.422995 LLDP, length 82 [|LLDP] 12:28:54.422996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f73 308d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.422998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.423003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.423007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.423010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.423014 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.423019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.431233 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.431248 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.431253 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.431257 LLDP, length 82 [|LLDP] 12:28:54.431259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f79 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.431261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.431265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.431269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.431272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.431277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.442244 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.442260 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.442264 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.442269 LLDP, length 82 [|LLDP] 12:28:54.442270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f81 e3c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.442272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.442276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.442279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.442283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.442288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.453254 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.453269 LLDP, length 82 [|LLDP] 12:28:54.453270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8a 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.453272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.453277 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.453281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.453284 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.453288 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.453293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.453297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.461511 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.461526 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.461531 LLDP, length 82 [|LLDP] 12:28:54.461532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f90 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.461535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.461539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.461543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.461546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.461550 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.461555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.472521 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.472535 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.472539 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.472544 LLDP, length 82 [|LLDP] 12:28:54.472545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f98 fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.472547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.472552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.472556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.472559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.472563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.480779 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.480795 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.480799 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.480804 LLDP, length 82 [|LLDP] 12:28:54.480805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9f 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.480807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.480811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.480814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.480818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.480823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.491789 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.491803 LLDP, length 82 [|LLDP] 12:28:54.491805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa7 b094 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.491807 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.491811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.491816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.491818 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.491823 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.491828 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.491832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.502798 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.502813 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.502818 LLDP, length 82 [|LLDP] 12:28:54.502819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb0 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.502821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.502826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.502830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.502832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.502836 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.502841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.511057 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.511072 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.511077 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.511081 LLDP, length 82 [|LLDP] 12:28:54.511083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb6 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.511085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.511089 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.511094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.511097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.511101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.522069 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.522084 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.522089 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.522093 LLDP, length 82 [|LLDP] 12:28:54.522095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbe ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.522097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.522101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.522104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.522108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.522113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.533077 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.533091 LLDP, length 82 [|LLDP] 12:28:54.533093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc7 308f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.533095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.533099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.533104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.533107 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.533111 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.533115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.533120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.541358 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.541381 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.541386 LLDP, length 82 [|LLDP] 12:28:54.541388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fcd 7d5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.541390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.541395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.541400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.541403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.541407 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.541412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.552352 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.552370 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.552375 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.552379 LLDP, length 82 [|LLDP] 12:28:54.552380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd5 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.552382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.552387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.552391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.552394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.552399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.563367 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.563382 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.563386 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.563391 LLDP, length 82 [|LLDP] 12:28:54.563392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fde 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.563394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.563398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.563401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.563405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.563410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.571612 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.571625 LLDP, length 82 [|LLDP] 12:28:54.571626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe4 96f7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.571628 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.571632 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.571637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.571640 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.571644 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.571648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.571653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.582624 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.582637 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.582641 LLDP, length 82 [|LLDP] 12:28:54.582643 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fec fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.582645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.582650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.582654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.582656 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.582661 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.582665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.590877 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.590891 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.590895 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.590900 LLDP, length 82 [|LLDP] 12:28:54.590901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff3 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.590903 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.590907 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.590912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.590914 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.590919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.601887 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.601901 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.601905 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.601910 LLDP, length 82 [|LLDP] 12:28:54.601911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffb b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.601913 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.601917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.601920 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.601924 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.601929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.612896 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.612910 LLDP, length 82 [|LLDP] 12:28:54.612911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1004 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.612913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.612918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.612922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.612925 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.612929 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.612934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.612938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.621154 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.621167 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.621171 LLDP, length 82 [|LLDP] 12:28:54.621172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100a 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.621174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.621179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.621183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.621186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.621190 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.621195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.632165 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.632178 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.632182 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.632187 LLDP, length 82 [|LLDP] 12:28:54.632188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1012 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.632190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.632194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.632199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.632201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.632206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.643175 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.643188 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.643192 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.643197 LLDP, length 82 [|LLDP] 12:28:54.643198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101b 308d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.643200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.643204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.643207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.643211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.643216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.651452 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.651471 LLDP, length 82 [|LLDP] 12:28:54.651473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1021 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.651475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.651479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.651484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.651487 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.651491 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.651496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.651501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.662447 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.662461 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.662465 LLDP, length 82 [|LLDP] 12:28:54.662467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1029 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.662469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.662473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.662477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.662480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.662484 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.662489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.670704 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.670718 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.670722 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.670726 LLDP, length 82 [|LLDP] 12:28:54.670728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1030 308d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.670730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.670734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.670739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.670741 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.670746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.681716 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.681731 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.681735 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.681739 LLDP, length 82 [|LLDP] 12:28:54.681741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1038 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.681742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.681747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.681749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.681754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.681758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.692724 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.692737 LLDP, length 82 [|LLDP] 12:28:54.692739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1040 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.692741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.692745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.692750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.692753 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.692757 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.692761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.692766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.700982 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.700998 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.701002 LLDP, length 82 [|LLDP] 12:28:54.701004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1047 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.701006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.701011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.701015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.701018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.701022 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.701027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.711996 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.712010 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.712015 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.712019 LLDP, length 82 [|LLDP] 12:28:54.712021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104f b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.712023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.712027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.712032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.712034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.712039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.722998 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.723012 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.723017 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.723021 LLDP, length 82 [|LLDP] 12:28:54.723022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1058 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.723024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.723028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.723031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.723035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.723040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.731259 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.731274 LLDP, length 82 [|LLDP] 12:28:54.731275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105e 63c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.731277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.731281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.731286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.731288 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.731292 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.731297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.731301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.742289 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.742309 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.742314 LLDP, length 82 [|LLDP] 12:28:54.742315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1066 ca2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.742317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.742322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.742326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.742329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.742334 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.742339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.753297 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.753318 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.753323 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.753328 LLDP, length 82 [|LLDP] 12:28:54.753329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106f 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.753331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.753336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.753340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.753343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.753348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.761559 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.761580 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.761585 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.761589 LLDP, length 82 [|LLDP] 12:28:54.761591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1075 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.761593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.761597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.761601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.761605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.761610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.772548 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.772562 LLDP, length 82 [|LLDP] 12:28:54.772563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107d e3c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.772565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.772570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.772574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.772577 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.772581 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.772586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.772591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.780835 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.780849 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.780853 LLDP, length 82 [|LLDP] 12:28:54.780854 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1084 308f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.780856 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.780861 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.780865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.780868 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.780872 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.780877 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.791858 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.791890 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.791895 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.791900 LLDP, length 82 [|LLDP] 12:28:54.791902 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108c 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.791904 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.791909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.791913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.791917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.791922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.802868 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.802904 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.802909 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.802913 LLDP, length 82 [|LLDP] 12:28:54.802915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1094 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.802918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.802922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.802926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.802930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.802936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.811114 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.811140 LLDP, length 82 [|LLDP] 12:28:54.811142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109b 4a29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.811145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.811149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.811154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.811158 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.811163 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.811167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.811172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.822124 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.822150 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.822155 LLDP, length 82 [|LLDP] 12:28:54.822156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a3 b090 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.822159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.822163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.822168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.822171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.822176 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.822181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.833135 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.833166 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.833171 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.833176 LLDP, length 82 [|LLDP] 12:28:54.833178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ac 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.833180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.833185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.833190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.833194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.833199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.841391 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.841422 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.841427 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.841431 LLDP, length 82 [|LLDP] 12:28:54.841433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b2 63c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.841435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.841439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.841444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.841448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.841453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.852394 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.852420 LLDP, length 82 [|LLDP] 12:28:54.852422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ba ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.852425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.852429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.852433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.852437 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.852442 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.852446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.852451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.860655 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.860681 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.860686 LLDP, length 82 [|LLDP] 12:28:54.860687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c1 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.860690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.860695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.860699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.860702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.860707 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.860712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.871644 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.871661 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.871665 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.871669 LLDP, length 82 [|LLDP] 12:28:54.871671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c9 7d5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.871673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.871677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.871682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.871685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.871690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.882654 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.882668 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.882673 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.882677 LLDP, length 82 [|LLDP] 12:28:54.882678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d1 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.882681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.882685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.882688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.882692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.882697 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.890906 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.890919 LLDP, length 82 [|LLDP] 12:28:54.890921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d8 308d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.890923 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.890927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.890932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.890934 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.890939 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.890943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.890947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.901917 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.901931 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.901936 LLDP, length 82 [|LLDP] 12:28:54.901937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e0 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.901939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.901943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.901947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.901950 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.901954 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.901959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.912926 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.912939 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.912943 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.912948 LLDP, length 82 [|LLDP] 12:28:54.912949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e8 fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.912951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.912955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.912959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.912962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.912966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.921183 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.921197 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.921202 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.921206 LLDP, length 82 [|LLDP] 12:28:54.921207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ef 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.921209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.921213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.921215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.921220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.921224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.932194 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.932208 LLDP, length 82 [|LLDP] 12:28:54.932210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f7 b08d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.932212 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.932216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.932220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.932223 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.932228 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.932232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.932236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.943204 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.943217 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.943222 LLDP, length 82 [|LLDP] 12:28:54.943223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1100 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.943225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.943229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.943233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.943236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.943240 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.943244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.951464 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.951478 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.951483 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.951487 LLDP, length 82 [|LLDP] 12:28:54.951489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1106 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.951491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.951495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.951500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.951502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.951507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.962473 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.962486 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.962490 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.962495 LLDP, length 82 [|LLDP] 12:28:54.962496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110e ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.962498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.962502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.962505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.962509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.962514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.970730 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.970744 LLDP, length 82 [|LLDP] 12:28:54.970745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1115 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.970747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.970751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.970755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.970758 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.970762 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.970767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.970771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.981742 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.981757 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.981762 LLDP, length 82 [|LLDP] 12:28:54.981763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111d 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.981765 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.981770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.981774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.981776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.981780 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.981785 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:54.992755 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:54.992769 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.992774 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:54.992778 LLDP, length 82 [|LLDP] 12:28:54.992780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1125 e3c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:54.992782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:54.992786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:54.992790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:54.992793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:54.992797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.001011 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.001025 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.001029 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.001034 LLDP, length 82 [|LLDP] 12:28:55.001035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112c 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.001037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.001041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.001044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.001048 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.001053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.012020 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.012034 LLDP, length 82 [|LLDP] 12:28:55.012036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1134 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.012037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.012042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.012046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.012048 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.012053 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.012057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.012061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.023030 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.023044 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.023048 LLDP, length 82 [|LLDP] 12:28:55.023049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113c fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.023051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.023056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.023060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.023062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.023066 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.023071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.031288 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.031303 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.031308 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.031312 LLDP, length 82 [|LLDP] 12:28:55.031314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1143 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.031316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.031321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.031325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.031328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.031333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.042297 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.042311 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.042315 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.042320 LLDP, length 82 [|LLDP] 12:28:55.042321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114b b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.042324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.042328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.042331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.042335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.042340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.053306 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.053320 LLDP, length 82 [|LLDP] 12:28:55.053321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1154 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.053323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.053328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.053332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.053335 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.053339 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.053343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.053347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.061565 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.061579 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.061583 LLDP, length 82 [|LLDP] 12:28:55.061585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115a 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.061586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.061591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.061595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.061598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.061602 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.061606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.072575 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.072589 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.072593 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.072598 LLDP, length 82 [|LLDP] 12:28:55.072599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1162 ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.072601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.072605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.072609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.072612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.072616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.080833 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.080848 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.080852 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.080857 LLDP, length 82 [|LLDP] 12:28:55.080858 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1169 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.080860 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.080864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.080866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.080871 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.080875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.091847 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.091861 LLDP, length 82 [|LLDP] 12:28:55.091863 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1171 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.091864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.091870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.091874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.091877 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.091881 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.091885 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.091890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.102854 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.102868 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.102873 LLDP, length 82 [|LLDP] 12:28:55.102875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1179 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.102876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.102881 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.102885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.102887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.102892 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.102896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.111111 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.111125 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.111130 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.111134 LLDP, length 82 [|LLDP] 12:28:55.111135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1180 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.111137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.111141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.111146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.111149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.111153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.122123 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.122137 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.122141 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.122146 LLDP, length 82 [|LLDP] 12:28:55.122147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1188 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.122149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.122154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.122156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.122160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.122165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.133133 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.133147 LLDP, length 82 [|LLDP] 12:28:55.133149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1190 fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.133151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.133155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.133159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.133162 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.133166 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.133171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.133175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.141390 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.141403 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.141407 LLDP, length 82 [|LLDP] 12:28:55.141409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1197 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.141411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.141415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.141419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.141422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.141427 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.141431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.152399 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.152415 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.152419 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.152423 LLDP, length 82 [|LLDP] 12:28:55.152425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119f b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.152427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.152431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.152435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.152438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.152442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.160663 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.160678 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.160682 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.160686 LLDP, length 82 [|LLDP] 12:28:55.160688 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a5 fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.160690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.160694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.160697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.160701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.160705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.171667 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.171681 LLDP, length 82 [|LLDP] 12:28:55.171683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ae 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.171685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.171689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.171693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.171696 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.171700 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.171704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.171709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.182679 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.182693 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.182698 LLDP, length 82 [|LLDP] 12:28:55.182699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b6 ca27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.182701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.182705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.182709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.182712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.182716 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.182721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.190936 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.190951 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.190955 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.190959 LLDP, length 82 [|LLDP] 12:28:55.190961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bd 16fb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.190963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.190967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.190971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.190974 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.190978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.201947 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.201962 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.201967 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.201971 LLDP, length 82 [|LLDP] 12:28:55.201972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c5 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.201974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.201979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.201981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.201986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.201990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.212957 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.212971 LLDP, length 82 [|LLDP] 12:28:55.212973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cd e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.212974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.212979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.212983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.212986 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.212991 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.212995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.213000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.221214 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.221227 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.221232 LLDP, length 82 [|LLDP] 12:28:55.221233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d4 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.221235 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.221240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.221244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.221246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.221251 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.221256 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.232322 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.232335 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.232340 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.232344 LLDP, length 82 [|LLDP] 12:28:55.232345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11dc 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.232347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.232352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.232356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.232359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.232363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.243234 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.243247 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.243252 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.243256 LLDP, length 82 [|LLDP] 12:28:55.243258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e4 fd61 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.243259 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.243263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.243266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.243270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.243275 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.251491 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.251504 LLDP, length 82 [|LLDP] 12:28:55.251506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11eb 4a28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.251508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.251512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.251516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.251519 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.251523 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.251528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.251532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.262513 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.262530 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.262535 LLDP, length 82 [|LLDP] 12:28:55.262536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f3 b08f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.262538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.262542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.262546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.262549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.262553 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.262558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.270766 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.270782 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.270786 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.270791 LLDP, length 82 [|LLDP] 12:28:55.270792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f9 fd5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.270794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.270799 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.270803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.270806 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.270810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.281770 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.281784 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.281789 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.281793 LLDP, length 82 [|LLDP] 12:28:55.281795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1202 63c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.281796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.281801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.281803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.281807 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.281812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.292784 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.292803 LLDP, length 82 [|LLDP] 12:28:55.292805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120a ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.292807 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.292811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.292815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.292818 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.292822 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.292827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.292832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.301041 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.301056 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.301060 LLDP, length 82 [|LLDP] 12:28:55.301061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1211 16f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.301063 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.301068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.301072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.301075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.301079 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.301084 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.312050 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.312064 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.312068 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.312073 LLDP, length 82 [|LLDP] 12:28:55.312074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1219 7d5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.312076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.312080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.312084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.312087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.312091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.323058 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.323072 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.323076 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.323081 LLDP, length 82 [|LLDP] 12:28:55.323082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1221 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.323084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.323088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.323091 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.323095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.323100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.331316 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.331330 LLDP, length 82 [|LLDP] 12:28:55.331332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1228 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.331334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.331347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.331351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.331354 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.331358 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.331363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.331368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.342327 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.342341 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.342345 LLDP, length 82 [|LLDP] 12:28:55.342347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1230 96f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.342349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.342353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.342357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.342360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.342364 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.342369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.350585 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.350598 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.350602 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.350607 LLDP, length 82 [|LLDP] 12:28:55.350608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1236 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.350610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.350615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.350619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.350622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.350627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.361595 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.361609 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.361613 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.361618 LLDP, length 82 [|LLDP] 12:28:55.361619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123f 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.361621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.361625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.361628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.361633 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.361637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.372603 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.372618 LLDP, length 82 [|LLDP] 12:28:55.372619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1247 b08d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.372621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.372626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.372630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.372633 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.372637 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.372642 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.372646 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.380861 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.380875 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.380879 LLDP, length 82 [|LLDP] 12:28:55.380881 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124d fd5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.380883 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.380887 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.380891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.380894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.380898 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.380903 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.391872 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.391885 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.391890 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.391894 LLDP, length 82 [|LLDP] 12:28:55.391896 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1256 63c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.391898 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.391902 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.391906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.391909 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.391913 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.402883 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.402897 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.402902 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.402906 LLDP, length 82 [|LLDP] 12:28:55.402907 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125e ca28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.402909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.402914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.402916 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.402921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.402926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.411142 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.411156 LLDP, length 82 [|LLDP] 12:28:55.411158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1265 16f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.411160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.411164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.411169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.411171 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.411176 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.411180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.411185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.422150 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.422164 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.422168 LLDP, length 82 [|LLDP] 12:28:55.422170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126d 7d5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.422172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.422176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.422180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.422183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.422187 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.422192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.433161 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.433175 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.433179 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.433184 LLDP, length 82 [|LLDP] 12:28:55.433185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1275 e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.433187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.433192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.433196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.433199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.433203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.441418 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.441431 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.441436 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.441440 LLDP, length 82 [|LLDP] 12:28:55.441441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127c 3093 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.441443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.441447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.441450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.441454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.441459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.452429 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.452442 LLDP, length 82 [|LLDP] 12:28:55.452444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1284 96f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.452445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.452450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.452454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.452457 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.452461 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.452465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.452469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.460688 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.460701 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.460705 LLDP, length 82 [|LLDP] 12:28:55.460707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 128a e3c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.460709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.460713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.460717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.460720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.460724 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.460728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.471695 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.471708 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.471713 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.471717 LLDP, length 82 [|LLDP] 12:28:55.471718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1293 4a27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.471720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.471725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.471729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.471731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.471736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:28:55.482704 IP 1.1.1.2.59624 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:28:55.482718 IP 1.1.1.2.43194 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.482722 IP 192.168.1.1.47397 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:28:55.482726 LLDP, length 82 [|LLDP] 12:28:55.482728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 129b b08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:28:55.482730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:28:55.482734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:28:55.482736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:28:55.482740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:28:55.482745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 6045 packets captured 6045 packets received by filter 0 packets dropped by kernel 605 packets dropped by interface -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_bridge_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:29:04 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=43, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=43, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=14] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=43, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=43, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=16] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=43, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":96,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=43, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=43, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=18] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=43, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:29:05 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=43, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:29:05 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=43, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=43, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=43, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":96,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=43, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=26] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_bum_traffic_port.py::test_bridging_bum_traffic_port_with_rif | 277.03 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_port_with_rif">Starting testcase:test_bridging_bum_traffic_port_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2521' coro=<test_bridging_bum_traffic_port_with_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py:49> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=44] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=44] Local address: 172.17.0.4, port 34222 INFO asyncssh:logging.py:92 [conn=44] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=44] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=44] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:29:05 UTC 2087 INFO asyncssh:logging.py:92 [conn=44, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip address add 100.1.1.253/24 dev swp33 && ip address add 101.1.1.253/24 dev swp34 INFO asyncssh:logging.py:92 [conn=44, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=2] Command: ip address add 100.1.1.253/24 dev swp33 && ip address add 101.1.1.253/24 dev swp34 INFO asyncssh:logging.py:92 [conn=44, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=44, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=6] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=44, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=6] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra1... INFO asyncssh:logging.py:92 [conn=44, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=7] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=44, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=8] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6bdf90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI BridgedLLDP SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI LACPDU SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4ToMe SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Request_BC SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Reply SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Broadcast SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_SSH SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_Telnet SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_ICMP_Request SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DCHP_BC SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Reserved_MC SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_OSPFIGP SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_VRRP SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_IGMP SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_BGP SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=44, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=8] Channel closed DEBUG infra1:Logger.py:156 12:33:26.457969 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.457971 LLDP, length 82 [|LLDP] 12:33:26.458014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.458015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009e 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.458017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.458018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.458019 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.458020 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.458021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.458022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.458096 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.458099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.458100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.458115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.458117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.466185 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.466186 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.466187 LLDP, length 82 [|LLDP] 12:33:26.466233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.466234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a4 9113 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.466235 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.466236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.466238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.466264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.466266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.466267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.466268 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.466269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.466283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.466285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.477189 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.477191 LLDP, length 82 [|LLDP] 12:33:26.477219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.477220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ac f77a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.477221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.477222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.477223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.477224 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.477225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.477226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.477269 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.477271 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.477272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.477284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.477286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.485440 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.485442 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.485443 LLDP, length 82 [|LLDP] 12:33:26.485484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.485485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b3 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.485486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.485487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.485488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.485490 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.485491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.485492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.485524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.485525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.485529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.485531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.496448 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.496450 LLDP, length 82 [|LLDP] 12:33:26.496473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.496474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00bb aaad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.496475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.496477 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.496477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.496478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.496507 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.496509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.496510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.496511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.496512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.496532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.496534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.507466 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.507467 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.507468 LLDP, length 82 [|LLDP] 12:33:26.507510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.507511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c4 1114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.507512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.507513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.507514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.507515 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.507516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.507517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.507550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.507552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.507556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.507558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.515715 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.515717 LLDP, length 82 [|LLDP] 12:33:26.515741 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.515742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ca 5de7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.515744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.515745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.515758 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.515760 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.515761 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.515762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.515763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.515764 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.515765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.515803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.515805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.526741 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.526749 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.526750 LLDP, length 82 [|LLDP] 12:33:26.526798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.526799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d2 c447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.526800 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.526801 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.526802 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.526803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.526804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.526820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.526822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.526823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.526835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.526838 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.537749 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.537751 LLDP, length 82 [|LLDP] 12:33:26.537774 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.537775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00db 2aad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.537776 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.537777 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.537778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.537779 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.537780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.537781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.537818 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.537820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.537821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.537833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.537835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.545997 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.545999 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.546000 LLDP, length 82 [|LLDP] 12:33:26.546046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.546047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e1 777a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.546048 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.546050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.546051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.546065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.546067 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.546068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.546069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.546070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.546083 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.546085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.557008 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.557009 LLDP, length 82 [|LLDP] 12:33:26.557030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.557031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e9 dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.557032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.557033 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.557034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.557035 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.557036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.557037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.557069 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.557071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.557072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.557084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.557087 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.565270 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.565272 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.565273 LLDP, length 82 [|LLDP] 12:33:26.565316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.565317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f0 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.565318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.565319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.565320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.565321 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.565323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.565324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.565349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.565351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.565354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.565356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.576274 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.576276 LLDP, length 82 [|LLDP] 12:33:26.576296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.576296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f8 9114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.576298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.576299 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.576301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.576302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.576316 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.576318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.576319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.576320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.576321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.576346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.576348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.587284 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.587286 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.587286 LLDP, length 82 [|LLDP] 12:33:26.587327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.587328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0100 f77a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.587330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.587331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.587332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.587333 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.587343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.587344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.587368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.587370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.587373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.587375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.595540 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.595541 LLDP, length 82 [|LLDP] 12:33:26.595568 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.595569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0107 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.595571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.595572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.595584 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.595587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.595587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.595588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.595589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.595590 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.595591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.595618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.595620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.606550 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.606552 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.606553 LLDP, length 82 [|LLDP] 12:33:26.606593 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.606594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010f aaae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.606595 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.606596 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.606598 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.606599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.606600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.606614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.606616 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.606617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.606628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.606630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.617561 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.617563 LLDP, length 82 [|LLDP] 12:33:26.617588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.617588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0118 1114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.617590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.617591 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.617592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.617593 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.617594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.617595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.617626 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.617628 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.617629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.617640 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.617642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.625825 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.625826 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.625827 LLDP, length 82 [|LLDP] 12:33:26.625868 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.625869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011e 5de1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.625870 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.625871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.625872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.625885 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.625887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.625888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.625889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.625890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.625903 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.625905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.636828 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.636829 LLDP, length 82 [|LLDP] 12:33:26.636854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.636855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0126 c447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.636856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.636857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.636858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.636859 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.636860 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.636861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.636891 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.636893 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.636895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.636906 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.636908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.647837 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.647839 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.647840 LLDP, length 82 [|LLDP] 12:33:26.647881 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.647882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012f 2ab5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.647883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.647884 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.647886 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.647887 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.647888 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.647889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.647912 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.647913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.647917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.647919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.656097 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.656099 LLDP, length 82 [|LLDP] 12:33:26.656119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.656120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0135 777b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.656122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.656123 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.656124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.656125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.656139 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.656141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.656142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.656143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.656144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.656168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.656170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.667105 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.667107 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.667108 LLDP, length 82 [|LLDP] 12:33:26.667154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.667155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013d dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.667156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.667157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.667158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.667159 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.667160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.667161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.667184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.667186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.667189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.667191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.675373 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.675374 LLDP, length 82 [|LLDP] 12:33:26.675402 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.675403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0144 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.675404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.675405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.675419 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.675420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.675421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.675422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.675423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.675425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.675426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.675456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.675459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.686384 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.686386 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.686387 LLDP, length 82 [|LLDP] 12:33:26.686427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.686428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014c 9119 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.686430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.686431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.686432 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.686433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.686434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.686449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.686450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.686451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.686463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.686466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.697389 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.697392 LLDP, length 82 [|LLDP] 12:33:26.697421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.697422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0154 f77b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.697424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.697425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.697426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.697427 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.697428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.697429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.697465 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.697467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.697468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.697480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.697482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.705646 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.705648 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.705649 LLDP, length 82 [|LLDP] 12:33:26.705695 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.705696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015b 4448 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.705698 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.705699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.705700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.705714 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.705715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.705716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.705717 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.705718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.705731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.705733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.716654 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.716655 LLDP, length 82 [|LLDP] 12:33:26.716681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.716682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0163 aaae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.716684 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.716685 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.716686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.716687 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.716688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.716689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.716719 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.716721 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.716722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.716733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.716735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.727663 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.727665 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.727666 LLDP, length 82 [|LLDP] 12:33:26.727707 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.727708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016c 1115 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.727709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.727710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.727711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.727712 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.727713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.727714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.727737 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.727739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.727742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.727744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.735928 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.735929 LLDP, length 82 [|LLDP] 12:33:26.735947 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.735948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0172 5de2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.735950 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.735951 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.735952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.735953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.735968 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.735969 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.735970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.735971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.735972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.735997 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.736000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.746936 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.746938 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.746938 LLDP, length 82 [|LLDP] 12:33:26.746980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.746981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017a c448 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.746983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.746984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.746985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.746986 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.746987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.746988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.747011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.747013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.747017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.747019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.755188 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.755189 LLDP, length 82 [|LLDP] 12:33:26.755214 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.755215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0181 1115 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.755216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.755217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.755230 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.755232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.755233 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.755234 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.755235 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.755236 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.755237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.755263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.755265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.766198 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.766199 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.766200 LLDP, length 82 [|LLDP] 12:33:26.766240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.766241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0189 7781 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.766243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.766244 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.766245 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.766246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.766247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.766261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.766262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.766263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.766275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.766277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.777208 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.777210 LLDP, length 82 [|LLDP] 12:33:26.777235 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.777235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0191 dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.777237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.777238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.777239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.777240 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.777241 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.777242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.777271 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.777273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.777274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.777286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.777288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.785464 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.785466 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.785467 LLDP, length 82 [|LLDP] 12:33:26.785507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.785508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0198 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.785510 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.785511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.785512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.785524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.785526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.785527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.785528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.785529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.785542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.785543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.796476 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.796477 LLDP, length 82 [|LLDP] 12:33:26.796502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.796503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a0 9114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.796504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.796505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.796507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.796508 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.796508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.796509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.796539 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.796541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.796542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.796553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.796555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.807486 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.807488 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.807489 LLDP, length 82 [|LLDP] 12:33:26.807529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.807530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a8 f779 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.807532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.807533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.807534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.807535 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.807536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.807537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.807559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.807561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.807564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.807566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.815743 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.815745 LLDP, length 82 [|LLDP] 12:33:26.815769 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.815770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01af 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.815771 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.815772 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.815773 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.815774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.815788 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.815790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.815791 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.815792 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.815793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.815817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.815819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.826757 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.826759 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.826759 LLDP, length 82 [|LLDP] 12:33:26.826799 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.826800 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b7 aaad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.826801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.826802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.826803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.826804 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.826805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.826806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.826828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.826830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.826833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.826835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.837766 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.837768 LLDP, length 82 [|LLDP] 12:33:26.837792 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.837793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c0 1113 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.837794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.837795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.837808 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.837810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.837811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.837812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.837813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.837814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.837815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.837841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.837843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.846023 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.846025 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.846026 LLDP, length 82 [|LLDP] 12:33:26.846065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.846066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c6 5de0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.846067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.846068 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.846069 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.846070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.846071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.846085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.846087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.846088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.846100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.846102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.857033 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.857035 LLDP, length 82 [|LLDP] 12:33:26.857058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.857059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ce c447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.857060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.857061 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.857062 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.857063 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.857064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.857065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.857094 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.857096 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.857097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.857108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.857111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.865290 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.865291 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.865292 LLDP, length 82 [|LLDP] 12:33:26.865332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.865333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d5 1113 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.865334 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.865335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.865336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.865348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.865350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.865351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.865352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.865353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.865366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.865368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.876300 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.876301 LLDP, length 82 [|LLDP] 12:33:26.876326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.876326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01dd 777a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.876328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.876329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.876330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.876331 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.876332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.876333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.876362 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.876364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.876365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.876376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.876379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.887310 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.887311 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.887312 LLDP, length 82 [|LLDP] 12:33:26.887362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.887363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e5 dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.887365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.887366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.887367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.887368 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.887369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.887370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.887394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.887396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.887399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.887402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.895567 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.895569 LLDP, length 82 [|LLDP] 12:33:26.895594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.895595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ec 2aad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.895596 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.895597 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.895598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.895599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.895614 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.895616 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.895617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.895618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.895619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.895644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.895646 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.906579 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.906581 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.906582 LLDP, length 82 [|LLDP] 12:33:26.906623 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.906623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f4 9114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.906625 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.906626 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.906627 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.906628 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.906629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.906630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.906652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.906654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.906657 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.906659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.917587 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.917589 LLDP, length 82 [|LLDP] 12:33:26.917614 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.917615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fc f77a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.917616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.917617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.917630 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.917632 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.917633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.917634 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.917635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.917636 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.917637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.917663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.917665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.925847 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.925849 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.925850 LLDP, length 82 [|LLDP] 12:33:26.925888 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.925889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0203 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.925891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.925892 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.925893 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.925894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.925895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.925909 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.925910 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.925911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.925923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.925925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.936856 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.936858 LLDP, length 82 [|LLDP] 12:33:26.936883 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.936884 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020b aab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.936885 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.936886 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.936887 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.936888 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.936889 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.936890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.936921 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.936923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.936924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.936935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.936937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.947867 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.947869 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.947870 LLDP, length 82 [|LLDP] 12:33:26.947910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.947911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0214 1114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.947913 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.947914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.947915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.947928 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.947930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.947931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.947932 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.947933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.947946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.947948 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.956125 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.956128 LLDP, length 82 [|LLDP] 12:33:26.956152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.956152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021a 5de1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.956154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.956155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.956156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.956156 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.956158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.956159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.956188 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.956190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.956191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.956202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.956204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.967150 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.967152 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.967153 LLDP, length 82 [|LLDP] 12:33:26.967194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.967195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0222 c447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.967197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.967197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.967198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.967199 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.967200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.967201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.967224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.967226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.967229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.967231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.975400 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.975401 LLDP, length 82 [|LLDP] 12:33:26.975427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.975428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0229 1115 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.975429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.975430 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.975431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.975432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.975447 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.975449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.975450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.975451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.975452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.975477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.975479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.986403 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.986404 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.986406 LLDP, length 82 [|LLDP] 12:33:26.986447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.986448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0231 777b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.986450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.986451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.986452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.986453 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.986454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.986455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.986478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.986479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.986482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.986484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.997412 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.997413 LLDP, length 82 [|LLDP] 12:33:26.997437 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.997438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0239 dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.997440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.997440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.997453 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.997455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.997456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.997457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.997458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.997459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.997460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.997486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.997488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.005670 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.005672 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.005673 LLDP, length 82 [|LLDP] 12:33:27.005712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.005713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0240 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.005714 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.005715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.005716 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.005717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.005719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.005733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.005735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.005736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.005748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.005750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.016680 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.016681 LLDP, length 82 [|LLDP] 12:33:27.016707 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.016707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0248 911b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.016709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.016710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.016711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.016712 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.016713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.016714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.016743 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.016745 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.016746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.016757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.016759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.027692 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.027694 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.027695 LLDP, length 82 [|LLDP] 12:33:27.027734 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.027734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0250 f77b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.027736 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.027737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.027738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.027750 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.027752 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.027753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.027754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.027755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.027768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.027770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.035950 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.035952 LLDP, length 82 [|LLDP] 12:33:27.035975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.035976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0257 4448 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.035978 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.035979 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.035980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.035981 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.035982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.035983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.036012 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.036014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.036015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.036026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.036028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.046957 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.046959 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.046960 LLDP, length 82 [|LLDP] 12:33:27.047000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.047001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025f aaae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.047002 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.047004 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.047005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.047006 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.047007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.047008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.047031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.047032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.047035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.047037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.055217 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.055219 LLDP, length 82 [|LLDP] 12:33:27.055244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.055244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0265 f77b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.055246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.055247 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.055248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.055249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.055263 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.055265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.055266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.055267 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.055268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.055292 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.055294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.066231 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.066232 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.066233 LLDP, length 82 [|LLDP] 12:33:27.066275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.066276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026e 5de1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.066277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.066278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.066279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.066280 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.066282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.066283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.066306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.066308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.066312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.066313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.077238 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.077240 LLDP, length 82 [|LLDP] 12:33:27.077265 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.077266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0276 c448 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.077267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.077268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.077282 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.077284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.077285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.077286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.077287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.077288 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.077289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.077317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.077319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.085495 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.085497 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.085498 LLDP, length 82 [|LLDP] 12:33:27.085538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.085539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027d 1115 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.085540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.085541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.085542 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.085543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.085544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.085559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.085561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.085562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.085574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.085575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.096506 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.096508 LLDP, length 82 [|LLDP] 12:33:27.096533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.096534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0285 777b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.096535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.096536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.096537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.096538 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.096539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.096540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.096570 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.096572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.096573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.096584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.096586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.107515 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.107517 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.107517 LLDP, length 82 [|LLDP] 12:33:27.107558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.107559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028d dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.107561 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.107562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.107563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.107576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.107578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.107579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.107580 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.107581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.107593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.107595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.115773 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.115775 LLDP, length 82 [|LLDP] 12:33:27.115800 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.115801 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0294 2aaf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.115802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.115803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.115804 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.115805 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.115805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.115806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.115836 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.115839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.115840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.115851 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.115853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.126784 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.126786 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.126787 LLDP, length 82 [|LLDP] 12:33:27.126828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.126829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029c 9115 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.126830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.126831 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.126832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.126833 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.126834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.126835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.126858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.126860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.126863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.126865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.137793 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.137794 LLDP, length 82 [|LLDP] 12:33:27.137820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.137821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a4 f77b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.137822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.137823 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.137824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.137825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.137839 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.137841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.137842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.137843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.137845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.137869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.137871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.146051 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.146052 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.146053 LLDP, length 82 [|LLDP] 12:33:27.146096 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.146097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ab 4448 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.146098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.146099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.146100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.146101 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.146102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.146104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.146127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.146129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.146132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.146134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.157064 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.157066 LLDP, length 82 [|LLDP] 12:33:27.157091 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.157091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b3 aaae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.157093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.157094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.157108 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.157109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.157110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.157111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.157112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.157113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.157114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.157141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.157143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.165320 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.165322 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.165323 LLDP, length 82 [|LLDP] 12:33:27.165363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.165364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b9 f77b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.165366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.165367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.165368 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.165369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.165370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.165384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.165386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.165387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.165399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.165401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.176330 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.176331 LLDP, length 82 [|LLDP] 12:33:27.176357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.176358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c2 5de1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.176359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.176360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.176361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.176362 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.176363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.176364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.176395 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.176397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.176399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.176410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.176412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.187347 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.187348 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.187349 LLDP, length 82 [|LLDP] 12:33:27.187390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.187391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ca c44a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.187393 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.187394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.187395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.187407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.187409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.187410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.187411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.187412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.187426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.187428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.195599 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.195600 LLDP, length 82 [|LLDP] 12:33:27.195626 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.195627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d1 1113 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.195628 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.195629 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.195630 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.195631 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.195633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.195634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.195665 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.195667 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.195668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.195679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.195682 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.206614 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.206616 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.206617 LLDP, length 82 [|LLDP] 12:33:27.206652 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.206653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d9 777a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.206655 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.206656 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.206657 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.206658 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.206658 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.206659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.206683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.206685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.206688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.206690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.217621 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.217623 LLDP, length 82 [|LLDP] 12:33:27.217642 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.217643 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e1 dde0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.217645 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.217646 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.217647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.217648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.217663 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.217664 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.217665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.217666 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.217668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.217693 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.217695 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.225876 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.225878 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.225879 LLDP, length 82 [|LLDP] 12:33:27.225921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.225922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e8 2aad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.225924 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.225925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.225926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.225927 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.225928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.225929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.225952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.225954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.225957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.225959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.236886 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.236888 LLDP, length 82 [|LLDP] 12:33:27.236913 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.236914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f0 9114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.236915 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.236916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.236929 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.236931 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.236932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.236932 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.236934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.236935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.236936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.236962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.236964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.245142 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.245144 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.245145 LLDP, length 82 [|LLDP] 12:33:27.245185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.245186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f6 dde0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.245187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.245188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.245190 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.245191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.245192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.245206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.245208 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.245209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.245220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.245223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.256154 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.256156 LLDP, length 82 [|LLDP] 12:33:27.256181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.256181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ff 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.256183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.256184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.256185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.256186 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.256187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.256188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.256218 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.256220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.256221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.256232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.256234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.267169 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.267171 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.267172 LLDP, length 82 [|LLDP] 12:33:27.267213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.267214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0307 aab4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.267215 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.267216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.267217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.267231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.267233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.267234 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.267235 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.267236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.267249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.267251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.275424 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.275426 LLDP, length 82 [|LLDP] 12:33:27.275450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.275451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030d f77a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.275452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.275453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.275454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.275455 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.275456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.275457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.275489 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.275491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.275492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.275503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.275506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.286437 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.286438 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.286439 LLDP, length 82 [|LLDP] 12:33:27.286487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.286487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0316 5de0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.286489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.286490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.286491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.286492 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.286493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.286494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.286520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.286522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.286525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.286527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.297445 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.297447 LLDP, length 82 [|LLDP] 12:33:27.297473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.297474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031e c447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.297475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.297476 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.297477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.297478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.297493 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.297494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.297496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.297497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.297498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.297524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.297527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.305701 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.305703 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.305704 LLDP, length 82 [|LLDP] 12:33:27.305746 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.305747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0325 1114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.305749 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.305750 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.305751 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.305752 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.305753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.305754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.305777 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.305779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.305782 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.305784 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.316711 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.316713 LLDP, length 82 [|LLDP] 12:33:27.316739 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.316752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032d 777a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.316754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.316755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.316769 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.316771 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.316773 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.316774 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.316775 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.316776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.316777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.316806 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.316808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.327748 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.327757 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.327758 LLDP, length 82 [|LLDP] 12:33:27.327809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.327810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0335 dde0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.327812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.327813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.327814 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.327814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.327816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.327838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.327840 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.327841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.327855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.327857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.335984 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.335986 LLDP, length 82 [|LLDP] 12:33:27.336013 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.336014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033c 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.336015 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.336016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.336017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.336018 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.336019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.336020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.336060 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.336061 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.336062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.336074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.336077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.346992 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.346994 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.346995 LLDP, length 82 [|LLDP] 12:33:27.347040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.347041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0344 9114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.347042 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.347043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.347044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.347057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.347059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.347060 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.347062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.347063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.347076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.347078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.355245 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.355246 LLDP, length 82 [|LLDP] 12:33:27.355268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.355268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034a dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.355270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.355271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.355272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.355273 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.355274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.355275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.355304 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.355306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.355307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.355318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.355320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.366254 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.366256 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.366257 LLDP, length 82 [|LLDP] 12:33:27.366294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.366295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0353 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.366297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.366298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.366299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.366300 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.366301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.366302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.366325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.366327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.366330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.366332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.377261 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.377262 LLDP, length 82 [|LLDP] 12:33:27.377284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.377285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035b aaae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.377287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.377288 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.377289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.377290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.377304 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.377306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.377307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.377308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.377309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.377333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.377335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.385517 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.385519 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.385520 LLDP, length 82 [|LLDP] 12:33:27.385556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.385556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0361 f781 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.385558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.385559 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.385560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.385561 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.385562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.385563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.385585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.385587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.385590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.385592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.396531 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.396532 LLDP, length 82 [|LLDP] 12:33:27.396553 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.396554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036a 5de1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.396555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.396556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.396567 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.396569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.396570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.396571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.396572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.396573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.396574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.396598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.396600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.407538 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.407540 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.407541 LLDP, length 82 [|LLDP] 12:33:27.407576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.407577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0372 c447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.407579 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.407580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.407581 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.407581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.407583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.407596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.407598 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.407599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.407611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.407613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.415797 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.415799 LLDP, length 82 [|LLDP] 12:33:27.415819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.415820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0379 1114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.415821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.415822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.415823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.415824 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.415825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.415827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.415853 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.415855 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.415856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.415867 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.415869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.426808 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.426810 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.426811 LLDP, length 82 [|LLDP] 12:33:27.426844 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.426845 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0381 777b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.426847 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.426848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.426849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.426861 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.426863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.426864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.426865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.426866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.426880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.426882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.437816 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.437818 LLDP, length 82 [|LLDP] 12:33:27.437838 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.437839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0389 dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.437840 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.437841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.437842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.437843 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.437844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.437845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.437872 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.437874 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.437875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.437886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.437888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.446078 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.446079 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.446080 LLDP, length 82 [|LLDP] 12:33:27.446114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.446115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0390 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.446116 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.446117 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.446118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.446119 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.446120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.446121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.446144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.446145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.446148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.446150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.457090 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.457092 LLDP, length 82 [|LLDP] 12:33:27.457112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.457113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0398 9114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.457114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.457115 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.457116 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.457117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.457147 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.457149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.457150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.457151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.457152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.457171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.457173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.465374 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.465383 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.465384 LLDP, length 82 [|LLDP] 12:33:27.465443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.465444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039e dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.465446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.465447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.465448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.465449 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.465450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.465451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.465479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.465481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.465485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.465487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.476361 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.476363 LLDP, length 82 [|LLDP] 12:33:27.476388 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.476389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a7 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.476391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.476392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.476407 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.476409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.476410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.476411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.476412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.476413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.476414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.476441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.476443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.487373 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.487375 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.487375 LLDP, length 82 [|LLDP] 12:33:27.487414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.487414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03af aaae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.487416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.487417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.487418 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.487419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.487420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.487434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.487436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.487437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.487448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.487450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.495644 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.495646 LLDP, length 82 [|LLDP] 12:33:27.495670 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.495670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b5 f77b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.495672 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.495673 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.495674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.495675 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.495676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.495677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.495721 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.495723 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.495724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.495736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.495738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.506650 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.506659 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.506660 LLDP, length 82 [|LLDP] 12:33:27.506707 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.506707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03be 5de1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.506709 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.506710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.506711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.506725 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.506727 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.506729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.506730 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.506731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.506745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.506747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.517651 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.517653 LLDP, length 82 [|LLDP] 12:33:27.517677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.517678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c6 c44f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.517679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.517680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.517681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.517682 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.517683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.517684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.517716 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.517717 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.517719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.517732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.517734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.525912 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.525915 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.525922 LLDP, length 82 [|LLDP] 12:33:27.525964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.525964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cd 1115 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.525966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.525967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.525968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.525969 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.525971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.525972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.525995 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.525997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.526001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.526003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.536929 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.536931 LLDP, length 82 [|LLDP] 12:33:27.536963 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.536964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d5 777c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.536965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.536966 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.536967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.536969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.536988 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.536990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.536991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.536992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.536993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.537025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.537027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.545174 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.545176 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.545177 LLDP, length 82 [|LLDP] 12:33:27.545221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.545222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03db c448 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.545223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.545224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.545225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.545226 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.545227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.545229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.545252 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.545254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.545257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.545259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.556178 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.556180 LLDP, length 82 [|LLDP] 12:33:27.556203 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.556204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e4 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.556206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.556207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.556218 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.556220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.556221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.556222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.556223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.556224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.556225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.556250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.556252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.567207 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.567210 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.567211 LLDP, length 82 [|LLDP] 12:33:27.567259 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.567260 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ec 9114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.567261 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.567262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.567264 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.567265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.567265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.567282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.567284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.567285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.567298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.567300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.575458 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.575461 LLDP, length 82 [|LLDP] 12:33:27.575489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.575490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f2 dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.575491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.575493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.575494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.575495 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.575496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.575497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.575533 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.575535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.575536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.575548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.575550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.586465 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.586466 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.586468 LLDP, length 82 [|LLDP] 12:33:27.586511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.586512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fb 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.586514 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.586515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.586516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.586530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.586532 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.586533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.586534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.586535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.586548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.586550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.597487 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.597489 LLDP, length 82 [|LLDP] 12:33:27.597520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.597521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0403 aaad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.597522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.597523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.597524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.597525 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.597526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.597528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.597571 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.597573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.597574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.597587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.597589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.605764 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.605767 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.605768 LLDP, length 82 [|LLDP] 12:33:27.605832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.605833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0409 f77a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.605835 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.605836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.605837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.605838 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.605839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.605840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.605870 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.605872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.605876 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.605878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.616745 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.616747 LLDP, length 82 [|LLDP] 12:33:27.616773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.616774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0412 5de1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.616775 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.616776 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.616777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.616779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.616795 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.616797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.616798 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.616799 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.616800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.616827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.616829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.627744 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.627746 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.627747 LLDP, length 82 [|LLDP] 12:33:27.627786 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.627787 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041a c446 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.627789 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.627790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.627790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.627792 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.627793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.627794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.627817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.627818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.627822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.627823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.636002 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.636003 LLDP, length 82 [|LLDP] 12:33:27.636025 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.636026 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0421 111a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.636027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.636028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.636040 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.636042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.636043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.636044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.636045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.636046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.636047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.636071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.636073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.647012 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.647014 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.647015 LLDP, length 82 [|LLDP] 12:33:27.647049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.647050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0429 777a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.647052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.647053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.647053 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.647054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.647055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.647069 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.647071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.647072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.647084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.647086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.655268 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.655270 LLDP, length 82 [|LLDP] 12:33:27.655291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.655291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042f c447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.655293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.655294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.655295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.655296 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.655297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.655298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.655324 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.655326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.655327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.655347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.655349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.666281 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.666283 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.666284 LLDP, length 82 [|LLDP] 12:33:27.666321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.666322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0438 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.666324 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.666325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.666326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.666338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.666340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.666342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.666343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.666344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.666357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.666359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.677288 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.677290 LLDP, length 82 [|LLDP] 12:33:27.677312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.677312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0440 9113 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.677314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.677315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.677316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.677317 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.677318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.677319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.677346 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.677348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.677349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.677360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.677362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.685548 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.685549 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.685550 LLDP, length 82 [|LLDP] 12:33:27.685584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.685585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0446 dde0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.685587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.685588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.685589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.685590 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.685591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.685592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.685615 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.685616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.685619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.685621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.696559 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.696560 LLDP, length 82 [|LLDP] 12:33:27.696584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.696584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044f 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.696586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.696587 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.696588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.696589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.696604 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.696606 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.696607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.696608 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.696609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.696634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.696637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.707569 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.707570 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.707571 LLDP, length 82 [|LLDP] 12:33:27.707608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.707609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0457 aaad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.707611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.707611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.707612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.707613 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.707614 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.707615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.707638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.707640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.707643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.707644 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.715825 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.715827 LLDP, length 82 [|LLDP] 12:33:27.715846 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.715847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045d f77a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.715848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.715849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.715861 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.715863 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.715864 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.715865 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.715866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.715867 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.715868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.715893 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.715895 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.726838 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.726839 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.726840 LLDP, length 82 [|LLDP] 12:33:27.726877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.726878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0466 5e02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.726880 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.726881 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.726882 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.726883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.726884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.726897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.726900 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.726901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.726913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.726915 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.737846 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.737848 LLDP, length 82 [|LLDP] 12:33:27.737869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.737870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046e c469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.737871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.737872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.737873 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.737874 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.737876 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.737877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.737904 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.737906 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.737907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.737918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.737920 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.746106 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.746108 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.746109 LLDP, length 82 [|LLDP] 12:33:27.746144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.746145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0475 1136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.746146 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.746147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.746148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.746161 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.746162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.746163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.746165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.746166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.746179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.746181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.757116 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.757117 LLDP, length 82 [|LLDP] 12:33:27.757138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.757138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047d 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.757140 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.757141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.757142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.757143 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.757144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.757145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.757173 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.757174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.757175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.757186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.757188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.765371 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.765373 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.765374 LLDP, length 82 [|LLDP] 12:33:27.765409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.765410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0483 c469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.765411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.765412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.765413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.765414 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.765416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.765417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.765438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.765440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.765443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.765445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.776382 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.776384 LLDP, length 82 [|LLDP] 12:33:27.776405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.776406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048c 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.776407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.776409 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.776410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.776410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.776425 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.776427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.776428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.776429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.776430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.776454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.776456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.787392 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.787393 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.787394 LLDP, length 82 [|LLDP] 12:33:27.787429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.787429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0494 9136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.787431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.787432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.787433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.787434 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.787435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.787436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.787458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.787460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.787463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.787465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.795649 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.795651 LLDP, length 82 [|LLDP] 12:33:27.795672 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.795673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049a de03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.795674 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.795675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.795688 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.795689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.795690 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.795692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.795693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.795693 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.795695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.795720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.795722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.806659 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.806660 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.806662 LLDP, length 82 [|LLDP] 12:33:27.806696 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.806697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a3 4470 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.806699 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.806700 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.806701 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.806702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.806703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.806716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.806718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.806719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.806730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.806733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.817668 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.817670 LLDP, length 82 [|LLDP] 12:33:27.817691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.817692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ab aad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.817693 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.817694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.817695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.817696 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.817697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.817699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.817725 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.817727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.817728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.817739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.817741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.825929 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.825931 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.825932 LLDP, length 82 [|LLDP] 12:33:27.825967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.825967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b1 f79d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.825969 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.825970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.825971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.825982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.825984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.825985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.825986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.825987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.826000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.826002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.836938 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.836939 LLDP, length 82 [|LLDP] 12:33:27.836960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.836961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ba 5e03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.836962 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.836963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.836964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.836965 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.836966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.836967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.836994 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.836996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.836997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.837010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.837012 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.845195 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.845197 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.845198 LLDP, length 82 [|LLDP] 12:33:27.845232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.845233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c0 aad4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.845234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.845235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.845236 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.845237 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.845238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.845239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.845261 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.845263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.845266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.845268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.856207 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.856208 LLDP, length 82 [|LLDP] 12:33:27.856232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.856233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c9 1136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.856235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.856236 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.856237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.856238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.856252 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.856254 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.856255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.856256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.856257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.856279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.856281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.867215 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.867216 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.867217 LLDP, length 82 [|LLDP] 12:33:27.867252 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.867253 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d1 779d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.867254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.867255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.867256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.867257 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.867258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.867259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.867281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.867283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.867286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.867288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.875472 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.875473 LLDP, length 82 [|LLDP] 12:33:27.875494 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.875494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d7 c46a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.875496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.875497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.875509 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.875511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.875512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.875514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.875515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.875515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.875517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.875542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.875544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.886484 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.886485 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.886486 LLDP, length 82 [|LLDP] 12:33:27.886521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.886521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e0 2ad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.886523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.886524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.886525 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.886526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.886527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.886540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.886542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.886543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.886555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.886557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.897495 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.897496 LLDP, length 82 [|LLDP] 12:33:27.897516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.897517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e8 9136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.897519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.897520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.897521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.897522 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.897523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.897524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.897552 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.897553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.897555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.897566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.897567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.905752 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.905754 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.905755 LLDP, length 82 [|LLDP] 12:33:27.905790 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.905791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ee de03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.905792 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.905793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.905794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.905806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.905808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.905809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.905810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.905811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.905823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.905826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.916762 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.916764 LLDP, length 82 [|LLDP] 12:33:27.916786 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.916787 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f7 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.916788 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.916789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.916790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.916791 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.916793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.916794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.916821 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.916823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.916824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.916835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.916837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.927774 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.927776 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.927777 LLDP, length 82 [|LLDP] 12:33:27.927812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.927813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ff aacf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.927814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.927815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.927816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.927817 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.927818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.927819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.927841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.927843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.927846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.927848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.936030 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.936031 LLDP, length 82 [|LLDP] 12:33:27.936052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.936052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0505 f79c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.936054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.936055 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.936056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.936057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.936070 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.936072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.936073 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.936074 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.936075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.936097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.936100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.947040 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.947042 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.947043 LLDP, length 82 [|LLDP] 12:33:27.947079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.947080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050e 5e02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.947081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.947082 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.947083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.947085 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.947086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.947086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.947108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.947110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.947113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.947116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.955297 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.955298 LLDP, length 82 [|LLDP] 12:33:27.955320 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.955321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0514 aacf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.955322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.955323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.955342 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.955344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.955345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.955346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.955347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.955348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.955349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.955375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.955377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.966313 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.966315 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.966316 LLDP, length 82 [|LLDP] 12:33:27.966353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.966354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051d 1135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.966355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.966356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.966357 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.966358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.966359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.966373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.966375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.966376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.966388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.966390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.977319 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.977321 LLDP, length 82 [|LLDP] 12:33:27.977343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.977344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0525 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.977345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.977346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.977347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.977348 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.977349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.977350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.977379 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.977381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.977382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.977394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.977396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.985577 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.985578 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.985579 LLDP, length 82 [|LLDP] 12:33:27.985615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.985617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052b c468 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.985618 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.985619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.985620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.985633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.985635 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.985636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.985637 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.985638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.985651 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.985653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.996588 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.996590 LLDP, length 82 [|LLDP] 12:33:27.996612 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.996613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0534 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.996615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.996615 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.996617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.996618 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.996619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.996620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.996648 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.996650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.996651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.996662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.996664 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.007597 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.007599 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.007600 LLDP, length 82 [|LLDP] 12:33:28.007639 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.007640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053c 9135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.007641 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.007642 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.007643 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.007644 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.007645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.007646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.007669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.007671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.007674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.007676 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.015855 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.015856 LLDP, length 82 [|LLDP] 12:33:28.015879 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.015880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0542 de02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.015882 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.015883 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.015884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.015885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.015898 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.015900 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.015901 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.015902 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.015903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.015927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.015929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.026865 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.026867 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.026867 LLDP, length 82 [|LLDP] 12:33:28.026904 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.026905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054b 4468 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.026906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.026907 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.026908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.026909 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.026911 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.026912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.026934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.026936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.026939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.026941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.035122 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.035123 LLDP, length 82 [|LLDP] 12:33:28.035145 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.035145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0551 9135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.035147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.035148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.035159 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.035161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.035162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.035164 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.035165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.035166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.035166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.035191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.035193 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.046133 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.046134 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.046136 LLDP, length 82 [|LLDP] 12:33:28.046170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.046171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0559 f79c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.046173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.046174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.046175 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.046176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.046177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.046190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.046192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.046193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.046205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.046207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.057142 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.057144 LLDP, length 82 [|LLDP] 12:33:28.057164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.057165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0562 5e0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.057166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.057168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.057169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.057170 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.057171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.057172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.057199 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.057201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.057202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.057213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.057215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.065414 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.065416 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.065417 LLDP, length 82 [|LLDP] 12:33:28.065453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.065454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0568 aacf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.065455 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.065456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.065457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.065470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.065471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.065472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.065474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.065475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.065488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.065490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.076411 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.076413 LLDP, length 82 [|LLDP] 12:33:28.076436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.076437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0571 1135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.076438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.076439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.076440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.076441 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.076442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.076443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.076470 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.076472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.076473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.076484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.076486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.087422 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.087424 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.087425 LLDP, length 82 [|LLDP] 12:33:28.087460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.087460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0579 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.087462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.087463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.087464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.087465 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.087466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.087467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.087489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.087491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.087494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.087496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.095678 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.095679 LLDP, length 82 [|LLDP] 12:33:28.095700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.095701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057f c46c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.095702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.095703 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.095704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.095705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.095718 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.095720 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.095721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.095722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.095723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.095745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.095747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.106687 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.106688 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.106689 LLDP, length 82 [|LLDP] 12:33:28.106724 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.106725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0588 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.106726 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.106728 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.106729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.106730 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.106731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.106732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.106754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.106756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.106759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.106761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.117700 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.117701 LLDP, length 82 [|LLDP] 12:33:28.117723 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.117724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0590 9135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.117725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.117726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.117738 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.117740 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.117741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.117742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.117743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.117744 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.117745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.117769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.117771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.125955 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.125957 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.125958 LLDP, length 82 [|LLDP] 12:33:28.125992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.125993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0596 de03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.125994 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.125995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.125996 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.125997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.125998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.126011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.126013 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.126014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.126025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.126027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.136966 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.136967 LLDP, length 82 [|LLDP] 12:33:28.136988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.136988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059f 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.136990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.136991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.136992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.136993 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.136994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.136995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.137021 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.137024 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.137025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.137035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.137037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.145223 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.145224 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.145225 LLDP, length 82 [|LLDP] 12:33:28.145259 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.145260 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a5 9136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.145262 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.145262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.145263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.145275 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.145277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.145278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.145278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.145280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.145293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.145295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.156235 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.156236 LLDP, length 82 [|LLDP] 12:33:28.156258 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.156259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ad f79c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.156260 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.156261 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.156262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.156263 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.156264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.156266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.156292 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.156293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.156294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.156306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.156308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.167244 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.167245 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.167246 LLDP, length 82 [|LLDP] 12:33:28.167280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.167281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b6 5e03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.167282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.167283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.167284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.167285 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.167286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.167287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.167309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.167311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.167314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.167316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.175502 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.175504 LLDP, length 82 [|LLDP] 12:33:28.175525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.175526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bc aad6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.175527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.175528 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.175540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.175542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.175556 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.175558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.175559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.175560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.175562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.175588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.175590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.186548 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.186550 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.186551 LLDP, length 82 [|LLDP] 12:33:28.186599 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.186600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c5 1136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.186602 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.186603 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.186604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.186605 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.186606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.186607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.186638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.186640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.186644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.186647 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.197535 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.197537 LLDP, length 82 [|LLDP] 12:33:28.197564 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.197565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05cd 779d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.197567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.197568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.197583 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.197585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.197586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.197587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.197588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.197589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.197591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.197621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.197623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.205784 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.205785 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.205786 LLDP, length 82 [|LLDP] 12:33:28.205823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.205824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d3 c46a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.205825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.205827 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.205828 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.205829 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.205830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.205843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.205845 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.205846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.205859 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.205860 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.216791 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.216792 LLDP, length 82 [|LLDP] 12:33:28.216814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.216814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05dc 2ad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.216816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.216817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.216818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.216819 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.216820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.216821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.216848 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.216850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.216851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.216863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.216865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.227800 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.227801 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.227802 LLDP, length 82 [|LLDP] 12:33:28.227836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.227837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e4 9136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.227839 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.227840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.227841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.227852 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.227854 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.227855 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.227856 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.227857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.227870 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.227872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.236059 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.236061 LLDP, length 82 [|LLDP] 12:33:28.236082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.236082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ea de03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.236084 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.236085 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.236086 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.236087 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.236088 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.236088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.236114 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.236116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.236117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.236128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.236130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.247070 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.247071 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.247073 LLDP, length 82 [|LLDP] 12:33:28.247107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.247108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f3 446a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.247110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.247111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.247112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.247113 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.247114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.247115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.247139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.247141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.247144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.247146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.255326 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.255328 LLDP, length 82 [|LLDP] 12:33:28.255358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.255359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f9 9136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.255360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.255361 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.255362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.255363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.255377 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.255379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.255380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.255381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.255382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.255405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.255407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.266339 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.266340 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.266341 LLDP, length 82 [|LLDP] 12:33:28.266376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.266377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0601 f79c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.266379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.266380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.266380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.266382 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.266382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.266384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.266406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.266408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.266412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.266413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.277347 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.277349 LLDP, length 82 [|LLDP] 12:33:28.277371 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.277371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060a 5e03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.277373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.277374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.277386 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.277388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.277389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.277390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.277391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.277392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.277393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.277418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.277420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.285606 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.285607 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.285608 LLDP, length 82 [|LLDP] 12:33:28.285644 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.285645 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0610 aad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.285646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.285647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.285648 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.285649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.285650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.285663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.285665 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.285666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.285678 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.285680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.296616 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.296618 LLDP, length 82 [|LLDP] 12:33:28.296640 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.296640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0619 1136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.296642 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.296643 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.296644 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.296645 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.296646 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.296647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.296674 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.296676 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.296677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.296689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.296692 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.307626 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.307628 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.307629 LLDP, length 82 [|LLDP] 12:33:28.307664 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.307665 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0621 77a3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.307666 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.307667 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.307668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.307680 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.307682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.307683 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.307684 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.307685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.307698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.307700 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.315886 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.315888 LLDP, length 82 [|LLDP] 12:33:28.315908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.315909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0627 c469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.315910 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.315912 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.315913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.315914 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.315915 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.315916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.315944 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.315946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.315947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.315958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.315960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.326893 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.326895 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.326896 LLDP, length 82 [|LLDP] 12:33:28.326930 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.326931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0630 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.326932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.326933 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.326934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.326935 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.326936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.326937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.326959 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.326960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.326963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.326965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.335151 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.335152 LLDP, length 82 [|LLDP] 12:33:28.335174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.335174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0636 779b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.335176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.335177 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.335178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.335179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.335193 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.335194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.335195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.335196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.335197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.335221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.335224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.346160 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.346162 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.346163 LLDP, length 82 [|LLDP] 12:33:28.346198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.346199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063e de04 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.346201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.346202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.346203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.346204 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.346205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.346206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.346228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.346230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.346233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.346235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.357172 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.357174 LLDP, length 82 [|LLDP] 12:33:28.357196 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.357197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0647 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.357199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.357200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.357211 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.357213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.357214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.357215 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.357216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.357217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.357218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.357243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.357245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.365432 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.365433 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.365434 LLDP, length 82 [|LLDP] 12:33:28.365469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.365470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064d 9135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.365471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.365472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.365473 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.365474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.365475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.365489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.365490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.365491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.365503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.365505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.376439 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.376441 LLDP, length 82 [|LLDP] 12:33:28.376461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.376462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0655 f79b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.376464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.376465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.376466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.376467 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.376468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.376469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.376495 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.376497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.376498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.376509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.376511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.387448 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.387450 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.387451 LLDP, length 82 [|LLDP] 12:33:28.387484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.387485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065e 5e02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.387487 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.387488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.387489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.387501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.387502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.387504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.387505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.387506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.387519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.387521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.395705 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.395706 LLDP, length 82 [|LLDP] 12:33:28.395726 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.395727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0664 aacf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.395728 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.395729 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.395730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.395731 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.395732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.395734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.395759 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.395761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.395762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.395773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.395775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.406716 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.406718 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.406719 LLDP, length 82 [|LLDP] 12:33:28.406752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.406753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066d 1135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.406755 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.406756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.406757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.406758 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.406759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.406760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.406782 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.406784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.406787 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.406789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.417726 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.417727 LLDP, length 82 [|LLDP] 12:33:28.417748 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.417749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0675 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.417751 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.417752 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.417753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.417754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.417768 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.417769 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.417771 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.417772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.417772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.417795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.417797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.425984 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.425986 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.425987 LLDP, length 82 [|LLDP] 12:33:28.426021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.426022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067b c470 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.426023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.426024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.426025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.426026 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.426027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.426029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.426051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.426053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.426056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.426057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.436995 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.436997 LLDP, length 82 [|LLDP] 12:33:28.437017 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.437018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0684 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.437020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.437021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.437033 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.437034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.437035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.437036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.437037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.437038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.437039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.437064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.437066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.445253 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.445254 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.445255 LLDP, length 82 [|LLDP] 12:33:28.445290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.445290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068a 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.445292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.445293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.445294 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.445295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.445296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.445309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.445310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.445311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.445323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.445325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.456265 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.456266 LLDP, length 82 [|LLDP] 12:33:28.456288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.456288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0692 de02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.456290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.456291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.456292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.456293 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.456294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.456295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.456334 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.456335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.456336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.456348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.456350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.467273 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.467274 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.467275 LLDP, length 82 [|LLDP] 12:33:28.467311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.467312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069b 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.467313 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.467314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.467315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.467327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.467329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.467330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.467331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.467333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.467356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.467358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.475531 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.475533 LLDP, length 82 [|LLDP] 12:33:28.475554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.475555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a1 9135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.475556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.475557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.475558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.475559 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.475560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.475561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.475588 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.475590 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.475591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.475602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.475604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.486543 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.486545 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.486546 LLDP, length 82 [|LLDP] 12:33:28.486580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.486581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a9 f79d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.486583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.486584 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.486585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.486586 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.486587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.486588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.486609 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.486611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.486614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.486616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.497551 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.497552 LLDP, length 82 [|LLDP] 12:33:28.497573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.497574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b2 5e03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.497575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.497576 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.497577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.497578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.497592 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.497594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.497595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.497596 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.497597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.497620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.497622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.505808 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.505810 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.505811 LLDP, length 82 [|LLDP] 12:33:28.505846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.505847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b8 aacf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.505848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.505849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.505850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.505851 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.505852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.505854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.505877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.505879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.505882 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.505884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.516817 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.516819 LLDP, length 82 [|LLDP] 12:33:28.516839 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.516840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c1 1136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.516841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.516842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.516853 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.516855 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.516856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.516857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.516858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.516858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.516860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.516885 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.516887 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.525078 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.525079 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.525080 LLDP, length 82 [|LLDP] 12:33:28.525114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.525115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c7 5e03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.525116 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.525117 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.525118 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.525119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.525120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.525134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.525136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.525137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.525149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.525151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.536103 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.536105 LLDP, length 82 [|LLDP] 12:33:28.536136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.536137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cf c469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.536138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.536139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.536140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.536141 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.536142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.536143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.536179 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.536181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.536182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.536194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.536196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.547103 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.547105 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.547106 LLDP, length 82 [|LLDP] 12:33:28.547149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.547150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d8 2ad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.547151 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.547152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.547153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.547166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.547168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.547169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.547170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.547171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.547184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.547186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.555365 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.555367 LLDP, length 82 [|LLDP] 12:33:28.555391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.555392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06de 779d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.555394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.555395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.555395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.555396 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.555397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.555398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.555428 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.555431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.555432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.555443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.555445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.566368 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.566370 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.566371 LLDP, length 82 [|LLDP] 12:33:28.566409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.566410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e6 de04 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.566412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.566413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.566414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.566415 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.566416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.566417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.566439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.566441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.566444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.566445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.577376 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.577378 LLDP, length 82 [|LLDP] 12:33:28.577399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.577399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ef 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.577401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.577402 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.577403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.577404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.577418 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.577419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.577420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.577421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.577422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.577445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.577447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.585633 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.585635 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.585636 LLDP, length 82 [|LLDP] 12:33:28.585672 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.585672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f5 9136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.585674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.585675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.585676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.585677 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.585678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.585679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.585701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.585703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.585706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.585707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.596645 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.596646 LLDP, length 82 [|LLDP] 12:33:28.596667 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.596669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fd f79d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.596670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.596671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.596683 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.596685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.596686 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.596687 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.596688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.596689 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.596690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.596713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.596715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.607666 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.607668 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.607675 LLDP, length 82 [|LLDP] 12:33:28.607714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.607715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0706 5e04 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.607717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.607718 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.607718 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.607719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.607720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.607735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.607737 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.607738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.607751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.607753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.615919 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.615921 LLDP, length 82 [|LLDP] 12:33:28.615944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.615945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070c aad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.615946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.615947 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.615948 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.615949 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.615951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.615952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.615983 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.615985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.615986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.615998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.616000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.626922 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.626923 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.626924 LLDP, length 82 [|LLDP] 12:33:28.626960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.626960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0715 1137 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.626962 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.626963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.626964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.626976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.626978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.626979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.626981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.626982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.626994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.626997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.635180 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.635182 LLDP, length 82 [|LLDP] 12:33:28.635202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.635203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071b 5e03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.635205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.635206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.635207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.635208 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.635209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.635210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.635237 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.635239 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.635240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.635251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.635254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.646206 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.646208 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.646208 LLDP, length 82 [|LLDP] 12:33:28.646248 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.646249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0723 c469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.646251 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.646252 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.646253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.646254 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.646255 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.646256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.646279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.646281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.646284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.646286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.657208 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.657210 LLDP, length 82 [|LLDP] 12:33:28.657238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.657239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072c 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.657241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.657242 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.657243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.657244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.657260 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.657262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.657263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.657264 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.657265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.657294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.657296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.665470 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.665472 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.665473 LLDP, length 82 [|LLDP] 12:33:28.665511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.665512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0732 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.665514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.665515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.665516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.665517 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.665518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.665519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.665543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.665545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.665548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.665550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.676481 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.676483 LLDP, length 82 [|LLDP] 12:33:28.676512 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.676513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073a de09 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.676514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.676515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.676532 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.676534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.676535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.676536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.676537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.676538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.676539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.676570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.676572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.687482 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.687483 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.687484 LLDP, length 82 [|LLDP] 12:33:28.687523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.687524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0743 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.687525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.687526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.687527 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.687528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.687529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.687544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.687545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.687547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.687558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.687560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.695736 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.695738 LLDP, length 82 [|LLDP] 12:33:28.695759 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.695760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0749 9135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.695762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.695763 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.695763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.695765 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.695766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.695766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.695793 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.695795 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.695796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.695807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.695809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.706746 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.706747 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.706748 LLDP, length 82 [|LLDP] 12:33:28.706782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.706783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0751 f79b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.706784 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.706785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.706786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.706798 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.706800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.706801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.706802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.706803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.706816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.706818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.717762 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.717764 LLDP, length 82 [|LLDP] 12:33:28.717790 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.717791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075a 5e02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.717792 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.717793 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.717794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.717795 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.717796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.717797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.717829 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.717831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.717832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.717844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.717845 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.726015 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.726017 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.726017 LLDP, length 82 [|LLDP] 12:33:28.726054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.726056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0760 aacf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.726057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.726058 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.726059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.726060 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.726061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.726062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.726084 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.726086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.726089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.726091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.737024 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.737026 LLDP, length 82 [|LLDP] 12:33:28.737047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.737048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0769 1135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.737049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.737050 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.737051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.737052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.737065 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.737067 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.737068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.737069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.737071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.737093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.737095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.745283 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.745284 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.745285 LLDP, length 82 [|LLDP] 12:33:28.745318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.745319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076f 5e02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.745321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.745322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.745323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.745324 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.745325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.745326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.745348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.745350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.745353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.745355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.756291 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.756293 LLDP, length 82 [|LLDP] 12:33:28.756314 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.756315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0777 c468 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.756316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.756317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.756328 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.756330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.756331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.756332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.756333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.756334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.756335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.756359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.756362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.767302 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.767303 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.767304 LLDP, length 82 [|LLDP] 12:33:28.767346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.767347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0780 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.767348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.767349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.767350 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.767351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.767352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.767366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.767368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.767369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.767383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.767385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.775578 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.775579 LLDP, length 82 [|LLDP] 12:33:28.775608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.775609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0786 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.775611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.775612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.775613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.775614 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.775615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.775616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.775653 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.775656 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.775657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.775669 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.775671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.786579 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.786580 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.786581 LLDP, length 82 [|LLDP] 12:33:28.786624 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.786625 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078e de03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.786627 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.786628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.786629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.786643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.786645 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.786646 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.786647 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.786648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.786662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.786664 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.797592 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.797594 LLDP, length 82 [|LLDP] 12:33:28.797621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.797622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0797 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.797623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.797624 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.797625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.797626 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.797628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.797629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.797662 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.797664 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.797665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.797677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.797680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.805849 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.805851 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.805852 LLDP, length 82 [|LLDP] 12:33:28.805895 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.805895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079d 9135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.805897 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.805898 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.805899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.805900 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.805901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.805902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.805926 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.805929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.805932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.805934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.816857 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.816858 LLDP, length 82 [|LLDP] 12:33:28.816886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.816887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a5 f79c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.816888 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.816889 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.816890 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.816891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.816906 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.816908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.816909 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.816910 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.816911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.816938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.816941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.825114 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.825116 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.825117 LLDP, length 82 [|LLDP] 12:33:28.825161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.825163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ac 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.825164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.825165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.825166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.825167 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.825168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.825169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.825194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.825196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.825199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.825201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.836124 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.836126 LLDP, length 82 [|LLDP] 12:33:28.836151 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.836152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b4 aad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.836153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.836155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.836170 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.836171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.836172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.836173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.836174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.836175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.836176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.836206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.836208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.847135 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.847136 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.847137 LLDP, length 82 [|LLDP] 12:33:28.847178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.847179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bd 1136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.847180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.847181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.847182 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.847183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.847184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.847200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.847202 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.847203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.847216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.847218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.855400 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.855402 LLDP, length 82 [|LLDP] 12:33:28.855427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.855428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c3 5e03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.855430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.855431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.855432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.855433 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.855434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.855435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.855469 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.855471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.855473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.855485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.855487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.866403 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.866404 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.866405 LLDP, length 82 [|LLDP] 12:33:28.866441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.866442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07cb c469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.866444 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.866444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.866446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.866459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.866461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.866462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.866464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.866465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.866479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.866481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.877414 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.877416 LLDP, length 82 [|LLDP] 12:33:28.877441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.877441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d4 2ad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.877443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.877444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.877445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.877446 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.877448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.877449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.877481 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.877483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.877485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.877497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.877499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.885672 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.885674 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.885675 LLDP, length 82 [|LLDP] 12:33:28.885718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.885719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07da 779d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.885721 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.885722 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.885723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.885724 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.885725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.885726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.885750 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.885752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.885755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.885757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.896681 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.896683 LLDP, length 82 [|LLDP] 12:33:28.896709 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.896710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e2 de03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.896712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.896713 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.896714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.896715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.896730 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.896732 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.896733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.896734 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.896735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.896762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.896764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.907697 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.907699 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.907700 LLDP, length 82 [|LLDP] 12:33:28.907743 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.907744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07eb 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.907745 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.907746 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.907747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.907748 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.907749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.907750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.907774 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.907776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.907779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.907781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.915948 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.915950 LLDP, length 82 [|LLDP] 12:33:28.915975 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.915976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f1 9136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.915978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.915979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.915993 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.915995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.915996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.915997 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.915998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.915999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.916001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.916029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.916031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.926957 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.926959 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.926960 LLDP, length 82 [|LLDP] 12:33:28.927003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.927004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f9 f7a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.927005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.927006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.927007 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.927008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.927009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.927025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.927027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.927028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.927041 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.927043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.935215 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.935217 LLDP, length 82 [|LLDP] 12:33:28.935243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.935243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0800 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.935245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.935246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.935247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.935248 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.935249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.935250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.935282 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.935284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.935285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.935297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.935299 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.946230 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.946232 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.946239 LLDP, length 82 [|LLDP] 12:33:28.946282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.946283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0808 aad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.946285 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.946286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.946287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.946302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.946304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.946305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.946306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.946307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.946321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.946323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.957241 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.957243 LLDP, length 82 [|LLDP] 12:33:28.957271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.957272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0811 1136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.957273 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.957274 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.957275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.957277 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.957278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.957279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.957313 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.957315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.957316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.957328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.957330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.965497 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.965498 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.965499 LLDP, length 82 [|LLDP] 12:33:28.965536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.965536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0817 5e09 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.965538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.965539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.965540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.965541 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.965543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.965544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.965568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.965570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.965573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.965575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.976508 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.976509 LLDP, length 82 [|LLDP] 12:33:28.976530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.976531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081f c46a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.976532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.976533 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.976534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.976535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.976552 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.976554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.976555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.976556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.976557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.976586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.976588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.987517 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.987519 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.987520 LLDP, length 82 [|LLDP] 12:33:28.987564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.987564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0828 2ad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.987566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.987567 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.987568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.987569 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.987570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.987571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.987597 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.987599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.987602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.987604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.995774 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.995775 LLDP, length 82 [|LLDP] 12:33:28.995801 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.995802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082e 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.995803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.995804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.995819 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.995821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.995822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.995823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.995824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.995825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.995826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.995854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.995857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.006783 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.006785 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.006786 LLDP, length 82 [|LLDP] 12:33:29.006828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.006829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0836 de03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.006830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.006831 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.006832 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.006833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.006835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.006850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.006852 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.006853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.006866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.006868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.017793 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.017794 LLDP, length 82 [|LLDP] 12:33:29.017819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.017820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083f 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.017822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.017823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.017824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.017825 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.017826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.017827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.017861 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.017863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.017864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.017877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.017879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.026051 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.026053 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.026054 LLDP, length 82 [|LLDP] 12:33:29.026098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.026100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0845 9136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.026101 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.026102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.026103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.026117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.026119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.026120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.026121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.026122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.026136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.026138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.037060 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.037062 LLDP, length 82 [|LLDP] 12:33:29.037088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.037089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084d f79c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.037090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.037091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.037092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.037093 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.037094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.037109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.037145 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.037147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.037148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.037160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.037162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.045347 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.045357 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.045358 LLDP, length 82 [|LLDP] 12:33:29.045406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.045407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0854 446f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.045409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.045410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.045411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.045412 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.045413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.045415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.045445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.045447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.045451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.045453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.056339 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.056340 LLDP, length 82 [|LLDP] 12:33:29.056362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.056363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085c aacf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.056364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.056365 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.056366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.056367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.056384 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.056386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.056387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.056389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.056390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.056420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.056422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.067349 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.067351 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.067352 LLDP, length 82 [|LLDP] 12:33:29.067397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.067398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0865 1135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.067399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.067400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.067401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.067402 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.067403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.067404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.067429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.067432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.067435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.067437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.075600 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.075602 LLDP, length 82 [|LLDP] 12:33:29.075620 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.075621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086b 5e02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.075622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.075623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.075638 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.075639 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.075640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.075641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.075642 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.075644 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.075645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.075674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.075677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.086609 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.086611 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.086612 LLDP, length 82 [|LLDP] 12:33:29.086654 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.086655 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0873 c468 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.086657 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.086658 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.086659 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.086660 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.086661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.086676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.086678 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.086679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.086692 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.086694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.097620 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.097622 LLDP, length 82 [|LLDP] 12:33:29.097650 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.097651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087c 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.097652 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.097653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.097654 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.097655 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.097656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.097657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.097691 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.097694 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.097695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.097707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.097709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.105886 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.105888 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.105889 LLDP, length 82 [|LLDP] 12:33:29.105928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.105929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0882 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.105931 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.105932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.105933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.105947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.105948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.105949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.105950 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.105951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.105966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.105968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.116883 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.116885 LLDP, length 82 [|LLDP] 12:33:29.116909 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.116910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088a de02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.116912 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.116913 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.116914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.116915 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.116916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.116917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.116949 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.116951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.116952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.116965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.116967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.125141 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.125143 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.125144 LLDP, length 82 [|LLDP] 12:33:29.125184 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.125185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0891 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.125186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.125187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.125188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.125190 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.125190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.125191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.125216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.125218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.125221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.125223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.136152 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.136154 LLDP, length 82 [|LLDP] 12:33:29.136178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.136178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0899 9135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.136180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.136181 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.136182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.136183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.136200 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.136201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.136203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.136204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.136205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.136231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.136233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.147161 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.147163 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.147164 LLDP, length 82 [|LLDP] 12:33:29.147205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.147206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a1 f79c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.147207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.147209 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.147209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.147210 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.147211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.147212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.147237 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.147239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.147242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.147244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.155421 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.155423 LLDP, length 82 [|LLDP] 12:33:29.155448 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.155448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a8 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.155450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.155451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.155465 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.155466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.155467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.155469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.155470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.155471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.155472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.155500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.155503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.166428 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.166430 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.166431 LLDP, length 82 [|LLDP] 12:33:29.166470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.166471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b0 aacf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.166472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.166473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.166475 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.166476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.166477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.166491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.166493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.166494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.166506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.166508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.177439 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.177440 LLDP, length 82 [|LLDP] 12:33:29.177463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.177464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b9 113d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.177465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.177466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.177467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.177468 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.177469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.177470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.177500 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.177502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.177503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.177515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.177517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.185695 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.185696 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.185697 LLDP, length 82 [|LLDP] 12:33:29.185736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.185737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bf 5e02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.185739 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.185740 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.185741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.185754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.185756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.185757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.185758 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.185759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.185773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.185775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.196706 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.196708 LLDP, length 82 [|LLDP] 12:33:29.196732 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.196733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c7 c469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.196734 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.196735 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.196736 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.196737 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.196738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.196739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.196773 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.196775 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.196776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.196787 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.196789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.207716 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.207717 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.207718 LLDP, length 82 [|LLDP] 12:33:29.207759 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.207760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d0 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.207762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.207763 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.207764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.207765 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.207766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.207767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.207792 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.207794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.207797 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.207799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.215975 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.215977 LLDP, length 82 [|LLDP] 12:33:29.216001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.216002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d6 77a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.216003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.216004 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.216005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.216006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.216021 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.216023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.216024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.216025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.216026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.216051 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.216053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.226985 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.226987 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.226988 LLDP, length 82 [|LLDP] 12:33:29.227029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.227030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08de de24 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.227031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.227032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.227033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.227034 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.227035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.227036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.227060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.227062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.227066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.227068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.235243 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.235245 LLDP, length 82 [|LLDP] 12:33:29.235269 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.235270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e5 2af1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.235272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.235273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.235287 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.235289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.235290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.235291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.235292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.235293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.235294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.235324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.235326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.246253 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.246255 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.246256 LLDP, length 82 [|LLDP] 12:33:29.246305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.246306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ed 9157 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.246307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.246308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.246309 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.246310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.246311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.246327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.246328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.246329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.246342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.246344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.257264 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.257266 LLDP, length 82 [|LLDP] 12:33:29.257291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.257292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f5 f7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.257293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.257294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.257295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.257296 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.257298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.257299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.257331 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.257333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.257335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.257346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.257348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.265523 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.265525 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.265526 LLDP, length 82 [|LLDP] 12:33:29.265567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.265568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fc 448b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.265569 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.265570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.265571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.265584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.265586 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.265587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.265588 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.265589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.265603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.265606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.276534 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.276536 LLDP, length 82 [|LLDP] 12:33:29.276561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.276561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0904 aaf1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.276563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.276564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.276565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.276566 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.276567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.276568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.276599 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.276601 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.276602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.276613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.276615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.287543 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.287544 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.287546 LLDP, length 82 [|LLDP] 12:33:29.287588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.287589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090d 1158 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.287590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.287591 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.287593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.287594 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.287595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.287596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.287619 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.287621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.287624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.287626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.295800 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.295802 LLDP, length 82 [|LLDP] 12:33:29.295826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.295827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0913 5e25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.295829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.295830 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.295831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.295832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.295847 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.295849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.295850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.295851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.295852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.295880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.295882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.306813 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.306815 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.306816 LLDP, length 82 [|LLDP] 12:33:29.306858 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.306859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091b c48c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.306860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.306861 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.306862 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.306863 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.306864 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.306865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.306889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.306890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.306894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.306896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.315068 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.315069 LLDP, length 82 [|LLDP] 12:33:29.315094 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.315095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0922 1158 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.315096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.315097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.315110 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.315112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.315113 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.315114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.315115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.315116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.315117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.315144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.315146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.326077 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.326078 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.326079 LLDP, length 82 [|LLDP] 12:33:29.326119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.326120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092a 77be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.326122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.326123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.326124 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.326125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.326126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.326141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.326143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.326144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.326157 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.326159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.337094 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.337096 LLDP, length 82 [|LLDP] 12:33:29.337120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.337121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0932 de25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.337123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.337124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.337125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.337126 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.337127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.337128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.337160 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.337162 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.337163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.337175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.337177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.345346 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.345347 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.345348 LLDP, length 82 [|LLDP] 12:33:29.345390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.345391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0939 2af2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.345392 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.345393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.345394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.345408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.345409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.345410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.345411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.345412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.345427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.345429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.356356 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.356358 LLDP, length 82 [|LLDP] 12:33:29.356382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.356382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0941 9158 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.356384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.356385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.356386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.356387 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.356388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.356389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.356419 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.356421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.356422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.356434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.356436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.367373 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.367375 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.367376 LLDP, length 82 [|LLDP] 12:33:29.367415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.367416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0949 f7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.367417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.367418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.367419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.367420 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.367421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.367422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.367446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.367448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.367451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.367453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.375624 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.375626 LLDP, length 82 [|LLDP] 12:33:29.375649 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.375650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0950 448a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.375651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.375652 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.375653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.375655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.375669 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.375671 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.375672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.375673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.375674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.375700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.375702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.386636 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.386638 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.386639 LLDP, length 82 [|LLDP] 12:33:29.386677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.386678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0958 aaf7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.386679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.386680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.386681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.386682 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.386683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.386685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.386708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.386710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.386713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.386715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.397642 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.397643 LLDP, length 82 [|LLDP] 12:33:29.397667 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.397668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0961 1157 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.397669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.397670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.397684 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.397685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.397687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.397688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.397689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.397690 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.397691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.397718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.397720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.405901 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.405903 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.405904 LLDP, length 82 [|LLDP] 12:33:29.405942 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.405943 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0967 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.405944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.405946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.405947 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.405948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.405948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.405962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.405964 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.405965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.405978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.405980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.416912 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.416913 LLDP, length 82 [|LLDP] 12:33:29.416937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.416937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096f c4ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.416939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.416940 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.416941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.416942 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.416943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.416944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.416974 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.416976 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.416977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.416989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.416991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.425168 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.425170 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.425171 LLDP, length 82 [|LLDP] 12:33:29.425209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.425210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0976 117f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.425212 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.425213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.425214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.425227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.425228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.425229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.425230 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.425231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.425245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.425247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.436178 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.436180 LLDP, length 82 [|LLDP] 12:33:29.436204 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.436205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097e 77de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.436206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.436207 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.436208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.436209 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.436210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.436211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.436240 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.436242 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.436243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.436255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.436256 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.447189 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.447190 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.447191 LLDP, length 82 [|LLDP] 12:33:29.447230 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.447230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0986 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.447232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.447233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.447234 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.447235 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.447236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.447237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.447260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.447262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.447265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.447267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.455450 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.455452 LLDP, length 82 [|LLDP] 12:33:29.455475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.455476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098d 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.455477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.455478 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.455480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.455481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.455513 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.455515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.455516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.455518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.455519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.455540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.455542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.466472 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.466474 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.466475 LLDP, length 82 [|LLDP] 12:33:29.466516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.466517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0995 9178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.466518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.466519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.466520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.466521 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.466522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.466523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.466549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.466551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.466554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.466556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.477472 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.477473 LLDP, length 82 [|LLDP] 12:33:29.477498 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.477498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099d f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.477500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.477501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.477515 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.477517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.477518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.477519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.477520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.477521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.477523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.477551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.477553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.485729 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.485730 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.485731 LLDP, length 82 [|LLDP] 12:33:29.485771 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.485772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a4 44ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.485773 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.485775 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.485776 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.485777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.485778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.485793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.485795 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.485796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.485808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.485810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.496746 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.496748 LLDP, length 82 [|LLDP] 12:33:29.496776 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.496777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ac ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.496779 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.496779 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.496781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.496782 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.496783 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.496784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.496821 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.496823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.496824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.496837 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.496839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.507751 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.507753 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.507754 LLDP, length 82 [|LLDP] 12:33:29.507799 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.507800 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b5 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.507802 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.507803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.507804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.507819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.507820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.507821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.507823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.507824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.507838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.507840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.516006 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.516008 LLDP, length 82 [|LLDP] 12:33:29.516032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.516033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09bb 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.516034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.516035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.516036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.516037 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.516038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.516039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.516071 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.516073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.516074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.516086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.516088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.527021 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.527023 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.527030 LLDP, length 82 [|LLDP] 12:33:29.527072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.527073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c3 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.527074 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.527075 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.527077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.527078 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.527079 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.527080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.527106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.527108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.527111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.527113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.535280 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.535282 LLDP, length 82 [|LLDP] 12:33:29.535312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.535312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ca 1178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.535314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.535315 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.535316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.535317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.535346 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.535347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.535349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.535350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.535351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.535382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.535385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.546290 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.546291 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.546300 LLDP, length 82 [|LLDP] 12:33:29.546339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.546340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d2 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.546342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.546343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.546344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.546346 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.546346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.546347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.546373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.546375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.546378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.546380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.557295 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.557297 LLDP, length 82 [|LLDP] 12:33:29.557321 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.557322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09da de4d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.557323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.557324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.557338 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.557340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.557341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.557342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.557343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.557344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.557345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.557374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.557376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.565554 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.565556 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.565557 LLDP, length 82 [|LLDP] 12:33:29.565597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.565598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e1 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.565600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.565601 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.565602 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.565603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.565604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.565619 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.565621 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.565622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.565635 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.565637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.576564 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.576565 LLDP, length 82 [|LLDP] 12:33:29.576590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.576591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e9 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.576593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.576594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.576595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.576596 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.576597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.576598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.576632 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.576634 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.576635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.576647 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.576649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.587574 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.587575 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.587576 LLDP, length 82 [|LLDP] 12:33:29.587616 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.587617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f1 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.587619 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.587620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.587621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.587634 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.587636 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.587637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.587638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.587639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.587653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.587656 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.595829 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.595830 LLDP, length 82 [|LLDP] 12:33:29.595855 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.595856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f8 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.595857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.595858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.595859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.595860 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.595861 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.595862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.595894 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.595897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.595898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.595911 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.595913 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.606850 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.606852 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.606859 LLDP, length 82 [|LLDP] 12:33:29.606902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.606903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a00 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.606904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.606905 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.606906 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.606907 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.606908 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.606909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.606935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.606937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.606940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.606942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.615103 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.615105 LLDP, length 82 [|LLDP] 12:33:29.615131 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.615132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a06 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.615134 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.615135 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.615136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.615137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.615154 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.615156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.615157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.615158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.615159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.615187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.615189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.626110 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.626112 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.626113 LLDP, length 82 [|LLDP] 12:33:29.626153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.626154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0f 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.626156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.626157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.626158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.626159 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.626160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.626161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.626186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.626188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.626191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.626193 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.637120 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.637122 LLDP, length 82 [|LLDP] 12:33:29.637147 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.637148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a17 c4ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.637149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.637150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.637164 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.637166 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.637167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.637168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.637169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.637170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.637171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.637199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.637201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.645375 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.645377 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.645378 LLDP, length 82 [|LLDP] 12:33:29.645419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.645419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1e 117a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.645421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.645422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.645423 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.645424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.645425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.645440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.645442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.645443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.645456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.645458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.656389 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.656390 LLDP, length 82 [|LLDP] 12:33:29.656409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.656409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a26 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.656411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.656412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.656413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.656414 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.656415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.656416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.656449 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.656451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.656452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.656464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.656466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.667419 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.667421 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.667422 LLDP, length 82 [|LLDP] 12:33:29.667465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.667466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2e de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.667467 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.667469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.667470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.667483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.667485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.667486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.667487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.667488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.667502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.667504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.675656 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.675658 LLDP, length 82 [|LLDP] 12:33:29.675683 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.675684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a35 2b1a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.675686 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.675687 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.675688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.675689 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.675690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.675691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.675726 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.675729 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.675730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.675742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.675744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.686666 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.686667 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.686668 LLDP, length 82 [|LLDP] 12:33:29.686711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.686712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3d 917a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.686713 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.686714 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.686716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.686716 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.686717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.686719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.686743 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.686745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.686748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.686750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.697676 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.697678 LLDP, length 82 [|LLDP] 12:33:29.697702 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.697703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a45 f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.697704 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.697705 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.697706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.697707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.697723 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.697725 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.697726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.697727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.697727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.697754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.697756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.705930 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.705932 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.705933 LLDP, length 82 [|LLDP] 12:33:29.705973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.705974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4c 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.705976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.705977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.705978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.705979 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.705980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.705981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.706005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.706007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.706011 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.706013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.716943 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.716945 LLDP, length 82 [|LLDP] 12:33:29.716969 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.716970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a54 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.716972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.716973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.716987 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.716988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.716990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.716991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.716992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.716993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.716994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.717023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.717025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.725199 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.725201 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.725202 LLDP, length 82 [|LLDP] 12:33:29.725241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.725241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5a f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.725243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.725245 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.725246 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.725247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.725248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.725263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.725265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.725266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.725279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.725281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.736210 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.736211 LLDP, length 82 [|LLDP] 12:33:29.736235 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.736236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a63 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.736237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.736238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.736239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.736240 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.736242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.736243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.736274 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.736276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.736277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.736289 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.736291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.747244 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.747252 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.747253 LLDP, length 82 [|LLDP] 12:33:29.747305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.747306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6b c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.747307 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.747308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.747310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.747327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.747328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.747329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.747330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.747331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.747365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.747367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.755492 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.755494 LLDP, length 82 [|LLDP] 12:33:29.755528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.755528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a72 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.755530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.755531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.755532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.755533 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.755534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.755535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.755581 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.755583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.755585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.755598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.755601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.766508 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.766516 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.766517 LLDP, length 82 [|LLDP] 12:33:29.766568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.766569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7a 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.766570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.766571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.766572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.766573 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.766574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.766576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.766604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.766607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.766610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.766612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.777502 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.777503 LLDP, length 82 [|LLDP] 12:33:29.777529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.777530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a82 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.777531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.777532 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.777533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.777534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.777552 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.777553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.777555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.777556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.777557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.777586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.777588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.785759 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.785761 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.785762 LLDP, length 82 [|LLDP] 12:33:29.785805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.785806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a89 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.785808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.785809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.785810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.785811 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.785812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.785813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.785837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.785839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.785842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.785844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.796821 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.796823 LLDP, length 82 [|LLDP] 12:33:29.796864 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.796865 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a91 9178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.796867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.796868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.796896 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.796899 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.796900 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.796902 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.796903 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.796904 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.796905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.796956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.796958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.805088 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.805092 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.805093 LLDP, length 82 [|LLDP] 12:33:29.805174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.805174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a97 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.805176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.805178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.805179 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.805180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.805181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.805206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.805209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.805210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.805225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.805227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.816083 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.816086 LLDP, length 82 [|LLDP] 12:33:29.816126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.816127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa0 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.816129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.816130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.816131 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.816132 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.816133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.816134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.816202 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.816205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.816206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.816221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.816223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.827098 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.827101 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.827102 LLDP, length 82 [|LLDP] 12:33:29.827182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.827183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa8 ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.827185 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.827186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.827187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.827210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.827213 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.827214 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.827215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.827216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.827233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.827236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.835381 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.835384 LLDP, length 82 [|LLDP] 12:33:29.835426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.835427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aae f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.835428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.835429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.835430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.835431 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.835432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.835434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.835501 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.835504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.835505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.835519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.835521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.846375 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.846378 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.846379 LLDP, length 82 [|LLDP] 12:33:29.846458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.846459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab7 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.846461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.846463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.846464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.846465 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.846465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.846467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.846502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.846504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.846509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.846511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.857380 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.857383 LLDP, length 82 [|LLDP] 12:33:29.857425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.857426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abf c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.857428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.857429 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.857431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.857432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.857465 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.857467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.857469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.857470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.857471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.857524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.857526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.865633 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.865636 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.865638 LLDP, length 82 [|LLDP] 12:33:29.865713 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.865714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac6 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.865716 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.865717 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.865718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.865719 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.865720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.865721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.865756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.865758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.865763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.865765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.876598 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.876600 LLDP, length 82 [|LLDP] 12:33:29.876628 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.876629 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ace 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.876630 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.876631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.876645 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.876647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.876648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.876649 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.876650 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.876651 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.876652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.876683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.876685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.887602 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.887604 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.887605 LLDP, length 82 [|LLDP] 12:33:29.887646 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.887647 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad6 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.887648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.887650 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.887651 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.887652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.887653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.887668 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.887669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.887671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.887684 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.887686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.895857 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.895859 LLDP, length 82 [|LLDP] 12:33:29.895877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.895877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0add 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.895879 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.895880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.895881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.895882 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.895883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.895884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.895916 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.895918 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.895932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.895947 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.895949 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.906896 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.906904 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.906905 LLDP, length 82 [|LLDP] 12:33:29.906954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.906955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae5 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.906957 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.906958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.906959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.906983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.906985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.906987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.906988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.906989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.907005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.907008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.915142 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.915151 LLDP, length 82 [|LLDP] 12:33:29.915175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.915176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aeb de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.915177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.915178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.915179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.915180 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.915181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.915182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.915222 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.915224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.915225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.915238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.915240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.926144 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.926146 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.926153 LLDP, length 82 [|LLDP] 12:33:29.926194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.926194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af4 44b3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.926196 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.926197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.926198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.926199 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.926200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.926201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.926227 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.926229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.926233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.926234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.937148 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.937150 LLDP, length 82 [|LLDP] 12:33:29.937177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.937178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afc ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.937180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.937181 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.937182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.937183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.937199 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.937201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.937202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.937203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.937204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.937233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.937235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.945406 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.945408 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.945409 LLDP, length 82 [|LLDP] 12:33:29.945452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.945453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b02 f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.945454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.945455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.945456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.945457 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.945458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.945459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.945485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.945487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.945490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.945492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.956420 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.956423 LLDP, length 82 [|LLDP] 12:33:29.956449 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.956450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0b 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.956452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.956453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.956467 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.956469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.956470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.956471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.956472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.956473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.956474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.956504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.956506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.967428 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.967430 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.967438 LLDP, length 82 [|LLDP] 12:33:29.967477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.967478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b13 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.967479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.967481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.967482 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.967483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.967484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.967499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.967501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.967502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.967515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.967517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.975687 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.975689 LLDP, length 82 [|LLDP] 12:33:29.975714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.975715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1a 117a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.975717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.975718 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.975719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.975720 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.975721 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.975722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.975756 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.975759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.975760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.975782 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.975784 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.986696 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.986697 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.986705 LLDP, length 82 [|LLDP] 12:33:29.986742 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.986743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b22 77e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.986744 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.986745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.986746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.986761 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.986763 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.986764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.986765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.986766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.986780 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.986782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.997705 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.997707 LLDP, length 82 [|LLDP] 12:33:29.997733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.997734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2a de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.997735 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.997736 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.997737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.997738 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.997739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.997740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.997774 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.997776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.997777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.997789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.997792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.005965 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.005967 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.005968 LLDP, length 82 [|LLDP] 12:33:30.006010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.006012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b31 2b14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.006013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.006014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.006015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.006016 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.006017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.006018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.006044 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.006046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.006050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.006052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.016974 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.016976 LLDP, length 82 [|LLDP] 12:33:30.017002 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.017003 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b39 917a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.017004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.017005 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.017006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.017007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.017023 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.017025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.017026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.017027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.017028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.017056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.017058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.025231 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.025233 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.025234 LLDP, length 82 [|LLDP] 12:33:30.025279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.025280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3f de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.025281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.025283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.025284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.025285 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.025286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.025287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.025312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.025314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.025317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.025319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.036242 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.036244 LLDP, length 82 [|LLDP] 12:33:30.036271 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.036271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b48 44ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.036273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.036274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.036289 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.036290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.036292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.036293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.036293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.036294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.036296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.036325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.036327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.047251 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.047253 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.047254 LLDP, length 82 [|LLDP] 12:33:30.047297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.047298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b50 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.047299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.047301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.047301 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.047303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.047304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.047319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.047321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.047322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.047346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.047349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.055509 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.055511 LLDP, length 82 [|LLDP] 12:33:30.055536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.055537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b56 f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.055539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.055540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.055541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.055542 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.055543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.055544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.055578 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.055581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.055582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.055594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.055596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.066521 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.066523 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.066524 LLDP, length 82 [|LLDP] 12:33:30.066566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.066567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5f 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.066568 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.066569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.066570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.066584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.066586 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.066587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.066588 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.066589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.066603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.066605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.077532 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.077534 LLDP, length 82 [|LLDP] 12:33:30.077559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.077559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b67 c4ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.077561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.077562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.077563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.077564 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.077565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.077566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.077597 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.077599 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.077601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.077613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.077615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.085788 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.085790 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.085791 LLDP, length 82 [|LLDP] 12:33:30.085833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.085834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6e 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.085835 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.085836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.085837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.085838 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.085840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.085841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.085866 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.085868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.085871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.085873 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.096797 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.096799 LLDP, length 82 [|LLDP] 12:33:30.096824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.096825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b76 77e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.096826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.096828 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.096829 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.096830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.096845 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.096846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.096848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.096849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.096850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.096877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.096879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.105050 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.105052 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.105053 LLDP, length 82 [|LLDP] 12:33:30.105094 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.105095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7c c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.105096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.105098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.105099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.105100 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.105101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.105102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.105125 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.105127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.105130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.105133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.116064 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.116066 LLDP, length 82 [|LLDP] 12:33:30.116090 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.116091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b85 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.116092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.116094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.116107 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.116109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.116110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.116111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.116112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.116113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.116114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.116142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.116144 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.127072 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.127075 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.127076 LLDP, length 82 [|LLDP] 12:33:30.127115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.127116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8d 9178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.127117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.127118 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.127119 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.127120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.127121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.127136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.127138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.127139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.127151 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.127153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.135332 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.135333 LLDP, length 82 [|LLDP] 12:33:30.135361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.135362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b93 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.135363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.135364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.135366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.135367 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.135368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.135369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.135401 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.135404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.135405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.135417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.135419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.146343 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.146345 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.146346 LLDP, length 82 [|LLDP] 12:33:30.146385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.146386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9c 44ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.146388 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.146389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.146390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.146404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.146406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.146407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.146408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.146409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.146423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.146425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.157351 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.157353 LLDP, length 82 [|LLDP] 12:33:30.157377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.157378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba4 ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.157379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.157380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.157381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.157382 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.157383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.157384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.157416 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.157418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.157419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.157431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.157433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.165610 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.165612 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.165613 LLDP, length 82 [|LLDP] 12:33:30.165652 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.165653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0baa f7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.165655 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.165656 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.165657 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.165658 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.165659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.165660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.165684 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.165686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.165690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.165691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.176621 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.176623 LLDP, length 82 [|LLDP] 12:33:30.176649 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.176650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb3 5e4c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.176651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.176652 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.176653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.176654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.176669 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.176671 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.176672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.176673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.176674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.176702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.176704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.187630 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.187632 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.187633 LLDP, length 82 [|LLDP] 12:33:30.187673 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.187674 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbb c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.187676 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.187677 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.187678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.187679 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.187680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.187681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.187706 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.187707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.187710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.187713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.195877 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.195879 LLDP, length 82 [|LLDP] 12:33:30.195896 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.195897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc2 1178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.195898 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.195900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.195913 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.195922 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.195923 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.195924 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.206898 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.206900 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.206901 LLDP, length 82 [|LLDP] 12:33:30.206941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.206942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bca 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.206943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.206944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.206945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.206946 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.206947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.206948 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.206949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.206975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.206976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.206979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.215155 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.215156 LLDP, length 82 [|LLDP] 12:33:30.215181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.215182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd0 c4ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.215183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.215184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.215185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.215186 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.215187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.215188 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.215189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.215223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.215225 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.215227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.215228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.226165 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.226167 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.226168 LLDP, length 82 [|LLDP] 12:33:30.226210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.226211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd9 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.226212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.226214 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.226215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.226216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.226216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.226232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.226233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.226235 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.226236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.226238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.237174 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.237176 LLDP, length 82 [|LLDP] 12:33:30.237200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.237201 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be1 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.237202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.237203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.237204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.237205 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.237206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.237207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.237208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.237241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.237243 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.237245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.237246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.245432 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.245434 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.245435 LLDP, length 82 [|LLDP] 12:33:30.245473 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.245474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be7 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.245475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.245477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.245478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.245492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.245493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.245496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.245497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.245498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.245499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.245500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.256443 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.256444 LLDP, length 82 [|LLDP] 12:33:30.256468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.256469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf0 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.256470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.256471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.256472 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.256473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.256474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.256475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.256492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.256494 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.256496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.256497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.256498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.267460 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.267461 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.267462 LLDP, length 82 [|LLDP] 12:33:30.267508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.267508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf8 ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.267510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.267511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.267512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.267513 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.267514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.267515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.267516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.267541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.267543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.267546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.275710 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.275713 LLDP, length 82 [|LLDP] 12:33:30.275738 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.275739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfe f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.275740 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.275741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.275742 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.275743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.275759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.275760 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.275762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.275764 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.275764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.275765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.275767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.286721 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.286723 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.286724 LLDP, length 82 [|LLDP] 12:33:30.286765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.286766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c07 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.286767 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.286768 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.286770 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.286771 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.286772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.286773 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.286774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.286799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.286801 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.286803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.297733 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.297734 LLDP, length 82 [|LLDP] 12:33:30.297758 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.297759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0f c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.297760 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.297761 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.297762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.297764 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.297765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.297765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.297767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.297800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.297802 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.297804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.297806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.305989 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.305991 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.305992 LLDP, length 82 [|LLDP] 12:33:30.306032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.306033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c16 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.306035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.306036 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.306037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.306038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.306039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.306054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.306055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.306058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.306059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.306060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.317000 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.317002 LLDP, length 82 [|LLDP] 12:33:30.317026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.317027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1e 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.317029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.317030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.317031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.317032 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.317032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.317034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.317035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.317068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.317070 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.317072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.317073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.325258 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.325260 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.325261 LLDP, length 82 [|LLDP] 12:33:30.325301 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.325301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c24 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.325303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.325304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.325306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.325320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.325321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.325324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.325325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.325326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.325327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.325328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.336267 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.336268 LLDP, length 82 [|LLDP] 12:33:30.336292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.336293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2d 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.336294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.336295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.336296 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.336297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.336298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.336299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.336316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.336317 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.336319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.336320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.336321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.347277 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.347278 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.347279 LLDP, length 82 [|LLDP] 12:33:30.347320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.347321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c35 917d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.347323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.347324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.347325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.347326 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.347327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.347328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.347329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.347367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.347368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.347371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.355535 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.355537 LLDP, length 82 [|LLDP] 12:33:30.355562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.355562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3b de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.355564 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.355565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.355566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.355567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.355583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.355584 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.355586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.355587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.355588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.355589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.355591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.366545 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.366546 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.366547 LLDP, length 82 [|LLDP] 12:33:30.366587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.366588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c44 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.366589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.366591 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.366592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.366593 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.366594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.366595 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.366595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.366621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.366623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.366625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.377557 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.377558 LLDP, length 82 [|LLDP] 12:33:30.377582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.377583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4c ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.377585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.377585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.377586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.377587 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.377589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.377590 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.377591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.377624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.377625 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.377627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.377629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.385816 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.385817 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.385818 LLDP, length 82 [|LLDP] 12:33:30.385857 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.385858 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c52 f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.385859 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.385861 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.385862 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.385863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.385864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.385879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.385880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.385882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.385883 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.385885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.396826 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.396828 LLDP, length 82 [|LLDP] 12:33:30.396846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.396847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5b 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.396848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.396849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.396850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.396851 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.396852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.396853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.396855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.396888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.396890 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.396892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.396893 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.405081 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.405083 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.405084 LLDP, length 82 [|LLDP] 12:33:30.405124 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.405125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c61 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.405126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.405127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.405129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.405142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.405143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.405146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.405147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.405148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.405149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.405150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.416092 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.416094 LLDP, length 82 [|LLDP] 12:33:30.416118 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.416119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6a 117a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.416120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.416121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.416123 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.416123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.416124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.416125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.416142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.416144 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.416146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.416146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.416148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.427105 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.427107 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.427108 LLDP, length 82 [|LLDP] 12:33:30.427146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.427147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c72 77e6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.427148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.427150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.427151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.427152 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.427153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.427154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.427155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.427179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.427181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.427184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.435371 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.435372 LLDP, length 82 [|LLDP] 12:33:30.435390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.435390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c78 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.435392 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.435393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.435394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.435395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.435411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.435412 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.435415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.435416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.435417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.435418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.435419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.446370 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.446371 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.446372 LLDP, length 82 [|LLDP] 12:33:30.446414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.446414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c81 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.446416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.446417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.446418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.446419 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.446420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.446421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.446422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.446447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.446448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.446451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.457378 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.457380 LLDP, length 82 [|LLDP] 12:33:30.457404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.457404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c89 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.457406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.457407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.457408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.457409 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.457410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.457411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.457412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.457459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.457461 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.457463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.457464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.465635 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.465637 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.465638 LLDP, length 82 [|LLDP] 12:33:30.465678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.465679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8f de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.465680 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.465681 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.465682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.465683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.465684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.465699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.465701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.465703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.465704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.465705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.476648 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.476650 LLDP, length 82 [|LLDP] 12:33:30.476674 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.476675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c98 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.476676 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.476677 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.476678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.476679 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.476680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.476681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.476682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.476715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.476716 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.476719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.476720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.487658 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.487659 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.487660 LLDP, length 82 [|LLDP] 12:33:30.487695 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.487696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca0 ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.487698 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.487699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.487701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.487714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.487715 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.487718 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.487719 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.487720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.487721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.487722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.495915 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.495917 LLDP, length 82 [|LLDP] 12:33:30.495940 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.495941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca6 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.495943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.495944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.495944 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.495946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.495947 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.495947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.495966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.495967 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.495969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.495970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.495972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.506931 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.506933 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.506934 LLDP, length 82 [|LLDP] 12:33:30.506975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.506976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0caf 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.506977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.506978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.506979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.506980 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.506981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.506983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.506984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.507009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.507010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.507013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.515185 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.515186 LLDP, length 82 [|LLDP] 12:33:30.515210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.515211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb5 ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.515213 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.515213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.515214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.515215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.515233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.515234 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.515236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.515237 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.515238 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.515239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.515241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.526195 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.526196 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.526197 LLDP, length 82 [|LLDP] 12:33:30.526238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.526239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbe 1178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.526241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.526242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.526243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.526244 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.526245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.526246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.526247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.526273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.526274 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.526277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.537217 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.537219 LLDP, length 82 [|LLDP] 12:33:30.537245 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.537245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc6 77de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.537247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.537248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.537249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.537250 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.537251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.537252 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.537252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.537292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.537294 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.537297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.537298 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.545467 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.545468 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.545469 LLDP, length 82 [|LLDP] 12:33:30.545514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.545515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccc c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.545517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.545518 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.545519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.545520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.545521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.545538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.545539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.545541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.545542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.545543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.556473 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.556475 LLDP, length 82 [|LLDP] 12:33:30.556500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.556501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd5 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.556502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.556503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.556504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.556505 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.556506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.556508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.556509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.556543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.556545 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.556547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.556548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.567481 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.567483 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.567484 LLDP, length 82 [|LLDP] 12:33:30.567525 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.567526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cdd 9178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.567527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.567528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.567529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.567544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.567545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.567547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.567548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.567549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.567550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.567552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.575741 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.575742 LLDP, length 82 [|LLDP] 12:33:30.575766 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.575766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce3 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.575768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.575769 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.575770 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.575771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.575772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.575773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.575790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.575791 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.575793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.575795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.575796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.586751 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.586753 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.586754 LLDP, length 82 [|LLDP] 12:33:30.586793 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.586794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cec 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.586796 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.586797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.586798 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.586799 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.586800 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.586801 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.586802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.586827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.586828 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.586831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.594996 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.594998 LLDP, length 82 [|LLDP] 12:33:30.595015 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.595016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf2 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.595017 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.595018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.595019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.595040 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.595042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.595043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.606035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.606037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.606059 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.606060 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.606061 LLDP, length 82 [|LLDP] 12:33:30.606097 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.606098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfa f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.606099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.606101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.606101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.606102 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.606103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.606105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.606124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.606127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.617036 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.617038 LLDP, length 82 [|LLDP] 12:33:30.617065 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.617065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d03 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.617067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.617068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.617083 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.617085 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.617086 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.617087 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.617088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.617089 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.617090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.617120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.617123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.625288 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.625289 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.625290 LLDP, length 82 [|LLDP] 12:33:30.625331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.625332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d09 ab16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.625333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.625334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.625335 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.625336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.625337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.625352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.625354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.625355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.625368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.625371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.636297 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.636298 LLDP, length 82 [|LLDP] 12:33:30.636323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.636324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d12 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.636325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.636326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.636327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.636328 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.636329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.636330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.636363 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.636364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.636366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.636377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.636380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.647306 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.647308 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.647309 LLDP, length 82 [|LLDP] 12:33:30.647359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.647359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1a 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.647361 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.647362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.647363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.647377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.647378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.647379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.647380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.647381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.647397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.647399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.655564 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.655566 LLDP, length 82 [|LLDP] 12:33:30.655590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.655591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d20 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.655593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.655594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.655595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.655596 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.655597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.655598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.655631 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.655633 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.655634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.655646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.655647 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.666577 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.666579 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.666580 LLDP, length 82 [|LLDP] 12:33:30.666622 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.666622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d29 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.666624 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.666625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.666626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.666627 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.666628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.666629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.666653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.666655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.666658 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.666660 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.677587 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.677588 LLDP, length 82 [|LLDP] 12:33:30.677612 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.677613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d31 9180 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.677614 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.677616 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.677617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.677618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.677634 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.677636 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.677637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.677638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.677639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.677667 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.677669 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.685844 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.685846 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.685847 LLDP, length 82 [|LLDP] 12:33:30.685886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.685887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d37 de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.685888 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.685889 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.685890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.685891 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.685892 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.685893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.685917 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.685919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.685922 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.685924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.696856 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.696859 LLDP, length 82 [|LLDP] 12:33:30.696886 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.696886 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d40 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.696888 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.696889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.696904 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.696906 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.696907 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.696908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.696909 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.696910 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.696911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.696944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.696946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.705110 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.705112 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.705113 LLDP, length 82 [|LLDP] 12:33:30.705155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.705155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d46 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.705157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.705159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.705160 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.705160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.705161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.705177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.705179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.705180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.705193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.705195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.716122 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.716123 LLDP, length 82 [|LLDP] 12:33:30.716148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.716149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4e f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.716150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.716151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.716152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.716153 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.716154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.716155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.716188 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.716190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.716191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.716203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.716205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.727131 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.727133 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.727134 LLDP, length 82 [|LLDP] 12:33:30.727174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.727174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d57 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.727176 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.727177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.727178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.727191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.727193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.727194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.727196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.727197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.727210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.727212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.735396 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.735397 LLDP, length 82 [|LLDP] 12:33:30.735421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.735422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5d ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.735423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.735424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.735425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.735426 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.735427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.735429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.735461 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.735463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.735464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.735476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.735478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.746399 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.746401 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.746402 LLDP, length 82 [|LLDP] 12:33:30.746441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.746442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d66 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.746444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.746445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.746446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.746447 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.746448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.746449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.746473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.746475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.746478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.746479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.757408 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.757410 LLDP, length 82 [|LLDP] 12:33:30.757434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.757435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6e 77e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.757436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.757437 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.757438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.757439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.757454 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.757456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.757457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.757458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.757459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.757486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.757488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.765666 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.765667 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.765668 LLDP, length 82 [|LLDP] 12:33:30.765711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.765712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d74 c4ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.765713 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.765714 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.765715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.765716 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.765717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.765718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.765754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.765757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.765761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.765763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.776705 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.776713 LLDP, length 82 [|LLDP] 12:33:30.776739 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.776740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7d 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.776741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.776742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.776764 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.776767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.776768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.776770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.776771 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.776772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.776773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.776808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.776810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.787699 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.787700 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.787708 LLDP, length 82 [|LLDP] 12:33:30.787758 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.787759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d85 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.787761 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.787762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.787763 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.787764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.787765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.787781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.787783 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.787784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.787798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.787800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.795946 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.795947 LLDP, length 82 [|LLDP] 12:33:30.795973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.795974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8b de4c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.795975 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.795976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.795977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.795978 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.795979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.795980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.796014 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.796016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.796017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.796029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.796031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.806956 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.806958 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.806959 LLDP, length 82 [|LLDP] 12:33:30.807000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.807001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d94 44ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.807002 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.807004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.807005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.807018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.807020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.807021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.807022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.807023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.807038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.807040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.815213 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.815215 LLDP, length 82 [|LLDP] 12:33:30.815240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.815241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9a 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.815242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.815243 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.815244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.815245 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.815247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.815248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.815283 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.815284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.815286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.815297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.815299 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.826223 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.826225 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.826225 LLDP, length 82 [|LLDP] 12:33:30.826268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.826269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da2 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.826270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.826271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.826272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.826273 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.826274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.826275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.826299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.826301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.826305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.826307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.837234 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.837236 LLDP, length 82 [|LLDP] 12:33:30.837260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.837261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dab 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.837262 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.837263 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.837264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.837266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.837281 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.837283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.837284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.837285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.837286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.837312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.837315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.845489 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.845490 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.845491 LLDP, length 82 [|LLDP] 12:33:30.845531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.845532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db1 ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.845534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.845535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.845536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.845537 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.845538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.845539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.845563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.845565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.845569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.845570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.856500 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.856502 LLDP, length 82 [|LLDP] 12:33:30.856526 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.856526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dba 1178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.856528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.856529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.856542 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.856544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.856545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.856546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.856547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.856548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.856549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.856577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.856579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.867558 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.867561 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.867562 LLDP, length 82 [|LLDP] 12:33:30.867641 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.867642 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc2 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.867644 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.867645 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.867646 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.867647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.867648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.867673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.867675 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.867676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.867691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.867694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.875824 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.875827 LLDP, length 82 [|LLDP] 12:33:30.875867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.875868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc8 c4af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.875869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.875871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.875872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.875873 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.875874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.875875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.875944 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.875946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.875947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.875962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.875964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.886826 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.886829 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.886830 LLDP, length 82 [|LLDP] 12:33:30.886901 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.886902 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd1 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.886904 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.886905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.886906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.886927 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.886930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.886931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.886932 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.886933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.886949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.886950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.895039 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.895041 LLDP, length 82 [|LLDP] 12:33:30.895066 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.895067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd7 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.895068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.895069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.895070 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.895071 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.895072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.895074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.895106 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.895108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.895109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.895121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.895123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.906048 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.906049 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.906050 LLDP, length 82 [|LLDP] 12:33:30.906092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.906093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddf de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.906094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.906095 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.906096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.906097 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.906098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.906100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.906124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.906126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.906129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.906131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.917057 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.917059 LLDP, length 82 [|LLDP] 12:33:30.917083 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.917084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de8 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.917085 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.917086 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.917087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.917088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.917104 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.917106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.917107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.917108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.917109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.917136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.917138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.925317 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.925318 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.925319 LLDP, length 82 [|LLDP] 12:33:30.925360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.925361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dee 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.925362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.925363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.925364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.925365 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.925366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.925367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.925392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.925394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.925397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.925399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.936326 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.936328 LLDP, length 82 [|LLDP] 12:33:30.936355 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.936355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df6 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.936357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.936358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.936371 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.936373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.936374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.936376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.936377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.936378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.936379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.936406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.936408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.947350 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.947351 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.947352 LLDP, length 82 [|LLDP] 12:33:30.947387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.947388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dff 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.947389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.947390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.947391 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.947392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.947393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.947407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.947409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.947410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.947423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.947425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.955592 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.955594 LLDP, length 82 [|LLDP] 12:33:30.955611 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.955612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e05 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.955613 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.955614 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.955615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.955616 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.955617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.955618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.955648 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.955650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.955651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.955663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.955665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.966602 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.966604 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.966605 LLDP, length 82 [|LLDP] 12:33:30.966646 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.966647 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0e 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.966649 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.966650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.966651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.966664 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.966666 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.966667 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.966668 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.966669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.966683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.966685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.977613 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.977614 LLDP, length 82 [|LLDP] 12:33:30.977638 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.977638 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e16 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.977640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.977641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.977642 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.977643 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.977644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.977645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.977676 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.977678 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.977679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.977691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.977693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.985874 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.985876 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.985877 LLDP, length 82 [|LLDP] 12:33:30.985912 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.985913 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1c c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.985915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.985916 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.985917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.985918 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.985919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.985920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.985943 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.985945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.985948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.985951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.996881 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.996882 LLDP, length 82 [|LLDP] 12:33:30.996906 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.996907 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e25 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.996908 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.996909 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.996910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.996911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.996927 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.996929 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.996930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.996931 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.996932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.996957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.996960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.005137 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.005139 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.005140 LLDP, length 82 [|LLDP] 12:33:31.005180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.005181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2b 77e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.005183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.005184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.005185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.005186 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.005187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.005188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.005211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.005212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.005216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.005217 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.016152 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.016153 LLDP, length 82 [|LLDP] 12:33:31.016178 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.016179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e33 de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.016180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.016182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.016203 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.016205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.016207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.016208 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.016209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.016210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.016211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.016239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.016242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.027162 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.027164 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.027165 LLDP, length 82 [|LLDP] 12:33:31.027198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.027199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3c 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.027201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.027201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.027202 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.027204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.027205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.027219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.027221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.027222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.027235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.027237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.035417 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.035418 LLDP, length 82 [|LLDP] 12:33:31.035443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.035443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e42 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.035445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.035446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.035447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.035448 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.035449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.035450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.035482 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.035484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.035485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.035496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.035498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.046426 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.046427 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.046428 LLDP, length 82 [|LLDP] 12:33:31.046469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.046469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4a f7e6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.046471 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.046472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.046473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.046486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.046488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.046489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.046490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.046491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.046505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.046507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.057436 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.057437 LLDP, length 82 [|LLDP] 12:33:31.057461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.057462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e53 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.057463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.057465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.057466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.057467 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.057468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.057469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.057499 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.057501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.057502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.057514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.057516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.065693 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.065694 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.065695 LLDP, length 82 [|LLDP] 12:33:31.065734 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.065735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e59 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.065737 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.065738 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.065739 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.065739 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.065740 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.065742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.065765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.065767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.065770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.065772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.076703 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.076705 LLDP, length 82 [|LLDP] 12:33:31.076730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.076731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e62 117a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.076732 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.076733 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.076734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.076735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.076750 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.076752 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.076753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.076753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.076755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.076781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.076783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.084962 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.084964 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.084965 LLDP, length 82 [|LLDP] 12:33:31.085003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.085004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e68 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.085006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.085007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.085007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.085008 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.085010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.085011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.085035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.085037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.085040 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.085042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.095973 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.095974 LLDP, length 82 [|LLDP] 12:33:31.095998 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.095998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e70 c4ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.096000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.096001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.096014 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.096015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.096016 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.096017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.096018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.096019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.096020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.096048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.096050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.106980 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.106982 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.106982 LLDP, length 82 [|LLDP] 12:33:31.107021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.107022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e79 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.107023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.107024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.107025 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.107026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.107027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.107041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.107043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.107044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.107056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.107058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.115240 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.115242 LLDP, length 82 [|LLDP] 12:33:31.115264 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.115265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7f 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.115266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.115267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.115268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.115269 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.115270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.115271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.115302 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.115303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.115305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.115316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.115319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.126263 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.126265 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.126272 LLDP, length 82 [|LLDP] 12:33:31.126313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.126314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e87 de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.126316 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.126317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.126318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.126333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.126335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.126336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.126337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.126338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.126352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.126354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.137266 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.137267 LLDP, length 82 [|LLDP] 12:33:31.137293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.137294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e90 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.137295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.137296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.137297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.137298 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.137299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.137300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.137333 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.137335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.137336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.137348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.137350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.145518 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.145520 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.145521 LLDP, length 82 [|LLDP] 12:33:31.145562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.145563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e96 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.145564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.145565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.145566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.145567 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.145568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.145569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.145594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.145596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.145599 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.145601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.156529 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.156531 LLDP, length 82 [|LLDP] 12:33:31.156555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.156556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9e f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.156558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.156559 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.156560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.156561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.156576 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.156577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.156578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.156579 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.156580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.156606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.156608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.167541 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.167543 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.167544 LLDP, length 82 [|LLDP] 12:33:31.167583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.167583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea7 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.167585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.167586 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.167587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.167588 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.167589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.167590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.167614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.167616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.167619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.167621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.175798 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.175800 LLDP, length 82 [|LLDP] 12:33:31.175825 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.175825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ead ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.175827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.175828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.175843 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.175845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.175846 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.175847 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.175848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.175849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.175850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.175878 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.175880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.186807 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.186809 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.186810 LLDP, length 82 [|LLDP] 12:33:31.186851 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.186852 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb6 1178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.186853 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.186854 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.186855 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.186856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.186857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.186872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.186873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.186874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.186887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.186889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.195064 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.195066 LLDP, length 82 [|LLDP] 12:33:31.195091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.195092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebc 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.195093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.195094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.195095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.195096 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.195097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.195098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.195130 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.195132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.195133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.195145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.195147 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.206076 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.206077 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.206078 LLDP, length 82 [|LLDP] 12:33:31.206117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.206118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec4 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.206120 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.206121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.206121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.206135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.206137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.206138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.206139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.206140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.206154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.206156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.217085 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.217086 LLDP, length 82 [|LLDP] 12:33:31.217110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.217111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecd 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.217112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.217113 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.217114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.217115 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.217116 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.217117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.217147 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.217150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.217151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.217163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.217165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.225342 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.225344 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.225345 LLDP, length 82 [|LLDP] 12:33:31.225386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.225387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed3 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.225389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.225390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.225391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.225392 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.225393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.225394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.225418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.225420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.225424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.225426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.236354 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.236355 LLDP, length 82 [|LLDP] 12:33:31.236380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.236381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0edb de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.236382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.236383 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.236384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.236385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.236400 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.236402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.236403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.236404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.236405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.236431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.236434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.247370 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.247371 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.247372 LLDP, length 82 [|LLDP] 12:33:31.247412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.247413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee4 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.247415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.247416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.247417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.247418 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.247419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.247420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.247444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.247446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.247449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.247451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.255621 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.255623 LLDP, length 82 [|LLDP] 12:33:31.255647 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.255647 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eea 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.255649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.255650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.255664 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.255666 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.255667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.255668 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.255669 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.255670 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.255671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.255699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.255701 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.266632 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.266634 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.266635 LLDP, length 82 [|LLDP] 12:33:31.266676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.266677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef2 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.266679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.266680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.266681 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.266682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.266683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.266697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.266699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.266700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.266712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.266714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.277646 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.277647 LLDP, length 82 [|LLDP] 12:33:31.277673 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.277674 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efb 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.277675 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.277676 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.277677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.277678 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.277679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.277680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.277712 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.277713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.277715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.277727 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.277729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.285901 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.285903 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.285903 LLDP, length 82 [|LLDP] 12:33:31.285945 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.285946 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f01 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.285947 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.285948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.285949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.285963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.285964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.285966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.285967 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.285968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.285982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.285984 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.296909 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.296911 LLDP, length 82 [|LLDP] 12:33:31.296934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.296935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0a 117f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.296936 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.296937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.296938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.296940 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.296941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.296942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.296974 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.296976 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.296977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.296989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.296991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.305170 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.305171 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.305172 LLDP, length 82 [|LLDP] 12:33:31.305213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.305214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f10 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.305215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.305216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.305217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.305219 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.305220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.305221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.305244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.305246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.305250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.305252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.316178 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.316179 LLDP, length 82 [|LLDP] 12:33:31.316203 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.316204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f18 c4ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.316206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.316207 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.316208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.316209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.316224 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.316226 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.316227 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.316228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.316229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.316255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.316257 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.327187 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.327189 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.327189 LLDP, length 82 [|LLDP] 12:33:31.327230 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.327231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f21 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.327232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.327233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.327234 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.327235 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.327236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.327237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.327260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.327263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.327266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.327268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.335447 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.335449 LLDP, length 82 [|LLDP] 12:33:31.335473 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.335473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f27 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.335475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.335476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.335491 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.335492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.335493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.335495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.335496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.335497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.335498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.335527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.335529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.346458 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.346460 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.346461 LLDP, length 82 [|LLDP] 12:33:31.346500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.346501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2f de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.346503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.346504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.346505 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.346506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.346507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.346522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.346524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.346525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.346537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.346539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.357465 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.357466 LLDP, length 82 [|LLDP] 12:33:31.357490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.357491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f38 44ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.357492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.357493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.357494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.357495 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.357496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.357497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.357529 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.357530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.357531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.357543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.357545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.365725 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.365727 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.365728 LLDP, length 82 [|LLDP] 12:33:31.365767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.365768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3e 917a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.365770 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.365771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.365772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.365785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.365787 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.365788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.365789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.365790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.365804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.365806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.376732 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.376734 LLDP, length 82 [|LLDP] 12:33:31.376758 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.376758 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f46 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.376760 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.376761 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.376762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.376763 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.376764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.376765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.376796 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.376798 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.376800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.376812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.376813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.384992 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.384994 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.384995 LLDP, length 82 [|LLDP] 12:33:31.385034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.385034 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4d 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.385036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.385037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.385038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.385039 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.385040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.385041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.385064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.385066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.385070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.385072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.396002 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.396004 LLDP, length 82 [|LLDP] 12:33:31.396028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.396029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f55 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.396030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.396031 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.396032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.396033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.396048 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.396050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.396051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.396052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.396053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.396078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.396081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.407013 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.407014 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.407015 LLDP, length 82 [|LLDP] 12:33:31.407055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.407056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5e 117a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.407057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.407058 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.407059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.407060 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.407061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.407062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.407086 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.407088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.407091 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.407093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.415267 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.415269 LLDP, length 82 [|LLDP] 12:33:31.415292 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.415293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f64 5e47 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.415295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.415296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.415309 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.415311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.415312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.415314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.415314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.415316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.415317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.415357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.415359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.426281 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.426282 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.426283 LLDP, length 82 [|LLDP] 12:33:31.426324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.426325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6c c4ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.426327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.426328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.426329 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.426330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.426331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.426346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.426348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.426349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.426362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.426364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.437289 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.437291 LLDP, length 82 [|LLDP] 12:33:31.437315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.437316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f75 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.437318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.437319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.437320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.437321 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.437322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.437323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.437355 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.437357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.437358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.437370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.437372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.445549 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.445550 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.445551 LLDP, length 82 [|LLDP] 12:33:31.445592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.445592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7b 77e1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.445594 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.445595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.445596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.445610 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.445612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.445613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.445614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.445615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.445629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.445631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.456558 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.456560 LLDP, length 82 [|LLDP] 12:33:31.456583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.456583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f83 de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.456585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.456586 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.456587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.456588 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.456589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.456590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.456634 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.456636 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.456637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.456649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.456651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.467570 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.467571 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.467572 LLDP, length 82 [|LLDP] 12:33:31.467604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.467605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8c 44ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.467607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.467608 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.467609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.467610 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.467611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.467612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.467635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.467637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.467640 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.467642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.475826 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.475827 LLDP, length 82 [|LLDP] 12:33:31.475852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.475853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f92 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.475854 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.475855 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.475856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.475857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.475872 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.475874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.475876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.475877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.475878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.475905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.475907 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.486834 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.486836 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.486837 LLDP, length 82 [|LLDP] 12:33:31.486878 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.486878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9a f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.486880 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.486881 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.486882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.486883 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.486884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.486885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.486909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.486911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.486914 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.486916 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.495104 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.495106 LLDP, length 82 [|LLDP] 12:33:31.495135 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.495135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa1 44b3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.495137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.495138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.495153 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.495155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.495157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.495158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.495159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.495160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.495161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.495192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.495195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.506109 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.506111 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.506112 LLDP, length 82 [|LLDP] 12:33:31.506157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.506157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa9 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.506159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.506160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.506161 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.506162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.506163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.506179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.506181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.506182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.506196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.506198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.517114 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.517115 LLDP, length 82 [|LLDP] 12:33:31.517138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.517139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb2 1178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.517141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.517142 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.517143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.517144 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.517145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.517146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.517178 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.517180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.517181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.517193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.517195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.525370 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.525372 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.525373 LLDP, length 82 [|LLDP] 12:33:31.525414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.525414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb8 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.525416 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.525417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.525418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.525431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.525433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.525434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.525435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.525437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.525451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.525453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.536390 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.536391 LLDP, length 82 [|LLDP] 12:33:31.536420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.536421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc0 c4ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.536423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.536423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.536424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.536425 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.536427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.536428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.536474 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.536476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.536477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.536491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.536493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.547408 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.547410 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.547411 LLDP, length 82 [|LLDP] 12:33:31.547459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.547460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc9 2b19 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.547461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.547462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.547463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.547464 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.547465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.547466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.547493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.547495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.547498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.547500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.555650 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.555652 LLDP, length 82 [|LLDP] 12:33:31.555676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.555677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fcf 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.555678 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.555679 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.555680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.555681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.555696 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.555698 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.555699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.555700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.555701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.555727 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.555729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.566660 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.566661 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.566662 LLDP, length 82 [|LLDP] 12:33:31.566703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.566704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd7 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.566705 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.566707 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.566708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.566709 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.566710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.566711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.566735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.566737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.566740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.566742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.577672 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.577674 LLDP, length 82 [|LLDP] 12:33:31.577697 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.577698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe0 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.577699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.577700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.577713 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.577715 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.577716 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.577717 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.577718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.577719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.577720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.577747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.577749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.585928 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.585930 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.585931 LLDP, length 82 [|LLDP] 12:33:31.585973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.585974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe6 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.585976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.585977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.585978 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.585979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.585980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.585993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.585995 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.585996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.586009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.586011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.596939 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.596940 LLDP, length 82 [|LLDP] 12:33:31.596965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.596965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fee f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.596967 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.596968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.596969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.596970 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.596971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.596972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.597002 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.597004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.597005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.597018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.597020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.605226 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.605235 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.605236 LLDP, length 82 [|LLDP] 12:33:31.605291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.605292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff5 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.605294 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.605295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.605296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.605313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.605315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.605316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.605318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.605319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.605334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.605336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.616214 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.616217 LLDP, length 82 [|LLDP] 12:33:31.616245 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.616245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffd ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.616247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.616248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.616249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.616250 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.616251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.616252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.616287 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.616289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.616290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.616302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.616304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.627216 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.627217 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.627219 LLDP, length 82 [|LLDP] 12:33:31.627259 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.627259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1006 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.627261 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.627262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.627263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.627264 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.627266 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.627267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.627290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.627291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.627295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.627309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.635504 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.635514 LLDP, length 82 [|LLDP] 12:33:31.635543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.635543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100c 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.635545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.635546 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.635547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.635548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.635573 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.635575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.635576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.635577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.635578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.635615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.635617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.646508 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.646516 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.646518 LLDP, length 82 [|LLDP] 12:33:31.646568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.646569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1014 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.646571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.646572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.646572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.646573 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.646574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.646575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.646603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.646606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.646610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.646612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.657499 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.657501 LLDP, length 82 [|LLDP] 12:33:31.657527 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.657528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101d 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.657530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.657531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.657545 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.657546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.657547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.657549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.657550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.657551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.657552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.657581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.657584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.665753 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.665754 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.665755 LLDP, length 82 [|LLDP] 12:33:31.665796 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.665797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1023 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.665799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.665800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.665801 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.665802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.665803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.665817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.665819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.665820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.665834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.665837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.676775 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.676777 LLDP, length 82 [|LLDP] 12:33:31.676810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.676811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102b de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.676812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.676813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.676814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.676815 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.676816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.676817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.676859 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.676861 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.676863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.676875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.676877 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.685020 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.685022 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.685023 LLDP, length 82 [|LLDP] 12:33:31.685064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.685065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1032 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.685067 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.685068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.685069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.685083 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.685084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.685085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.685087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.685088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.685102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.685104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.696033 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.696034 LLDP, length 82 [|LLDP] 12:33:31.696062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.696063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103a 917a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.696064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.696065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.696066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.696067 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.696068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.696069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.696107 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.696110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.696111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.696123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.696125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.707063 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.707071 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.707073 LLDP, length 82 [|LLDP] 12:33:31.707131 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.707132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1042 f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.707134 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.707135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.707136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.707138 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.707139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.707139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.707167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.707170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.707173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.707175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.715305 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.715307 LLDP, length 82 [|LLDP] 12:33:31.715343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.715344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1049 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.715346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.715346 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.715347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.715348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.715367 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.715369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.715370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.715371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.715372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.715403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.715406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.726317 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.726318 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.726326 LLDP, length 82 [|LLDP] 12:33:31.726365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.726366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1051 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.726368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.726369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.726370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.726371 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.726372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.726373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.726398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.726400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.726404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.726405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.737320 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.737322 LLDP, length 82 [|LLDP] 12:33:31.737347 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.737347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105a 117a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.737349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.737350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.737364 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.737365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.737366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.737367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.737369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.737370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.737371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.737399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.737401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.745611 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.745614 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.745615 LLDP, length 82 [|LLDP] 12:33:31.745684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.745685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1060 5e4d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.745687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.745688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.745689 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.745690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.745691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.745712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.745715 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.745716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.745730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.745733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.756598 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.756600 LLDP, length 82 [|LLDP] 12:33:31.756630 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.756631 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1068 c4ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.756632 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.756633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.756634 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.756635 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.756637 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.756638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.756677 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.756679 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.756680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.756693 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.756696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.767600 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.767601 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.767603 LLDP, length 82 [|LLDP] 12:33:31.767645 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.767646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1071 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.767648 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.767648 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.767649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.767663 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.767664 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.767665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.767667 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.767667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.767682 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.767684 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.775854 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.775856 LLDP, length 82 [|LLDP] 12:33:31.775880 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.775881 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1077 77e1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.775883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.775883 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.775884 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.775885 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.775887 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.775888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.775921 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.775923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.775924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.775936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.775938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.786863 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.786865 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.786866 LLDP, length 82 [|LLDP] 12:33:31.786907 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.786908 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107f de47 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.786910 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.786911 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.786912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.786913 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.786914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.786915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.786940 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.786942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.786945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.786947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.795123 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.795125 LLDP, length 82 [|LLDP] 12:33:31.795148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.795149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1086 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.795150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.795152 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.795153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.795154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.795170 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.795171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.795172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.795173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.795174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.795202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.795204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.806136 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.806138 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.806139 LLDP, length 82 [|LLDP] 12:33:31.806178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.806179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108e 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.806181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.806182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.806183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.806184 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.806185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.806186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.806211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.806213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.806217 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.806218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.817145 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.817147 LLDP, length 82 [|LLDP] 12:33:31.817170 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.817172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1096 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.817173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.817174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.817188 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.817190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.817190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.817192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.817193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.817194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.817195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.817224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.817227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.825400 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.825402 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.825403 LLDP, length 82 [|LLDP] 12:33:31.825442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.825443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109d 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.825444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.825445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.825446 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.825448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.825449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.825464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.825466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.825467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.825479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.825481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.836412 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.836413 LLDP, length 82 [|LLDP] 12:33:31.836437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.836438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a5 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.836439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.836440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.836441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.836442 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.836443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.836444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.836476 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.836478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.836479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.836491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.836493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.847422 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.847423 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.847425 LLDP, length 82 [|LLDP] 12:33:31.847466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.847467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ae 1178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.847468 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.847469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.847471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.847484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.847486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.847487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.847488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.847489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.847504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.847506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.855676 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.855678 LLDP, length 82 [|LLDP] 12:33:31.855702 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.855703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b4 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.855704 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.855705 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.855706 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.855707 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.855708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.855709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.855741 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.855743 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.855744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.855757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.855759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.866690 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.866691 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.866692 LLDP, length 82 [|LLDP] 12:33:31.866735 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.866736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bc c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.866737 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.866739 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.866740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.866741 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.866742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.866743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.866766 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.866768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.866772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.866774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.874945 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.874946 LLDP, length 82 [|LLDP] 12:33:31.874970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.874971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c3 1178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.874972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.874974 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.874974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.874975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.874991 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.874992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.874994 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.874995 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.874996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.875025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.875027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.885955 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.885957 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.885958 LLDP, length 82 [|LLDP] 12:33:31.885998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.885999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10cb 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.886000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.886002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.886003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.886004 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.886005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.886006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.886030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.886032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.886035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.886037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.896967 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.896968 LLDP, length 82 [|LLDP] 12:33:31.896993 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.896994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d3 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.896995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.896996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.897009 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.897011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.897013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.897014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.897015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.897016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.897017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.897046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.897048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.905224 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.905225 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.905226 LLDP, length 82 [|LLDP] 12:33:31.905266 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.905266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10da 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.905268 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.905269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.905270 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.905271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.905272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.905286 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.905288 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.905289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.905302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.905305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.916235 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.916236 LLDP, length 82 [|LLDP] 12:33:31.916260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.916261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e2 917f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.916263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.916264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.916265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.916266 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.916267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.916268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.916300 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.916302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.916303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.916315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.916317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.927244 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.927245 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.927246 LLDP, length 82 [|LLDP] 12:33:31.927286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.927287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ea f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.927289 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.927290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.927291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.927304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.927306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.927307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.927308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.927309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.927323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.927325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.935505 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.935506 LLDP, length 82 [|LLDP] 12:33:31.935532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.935532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f1 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.935534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.935535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.935536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.935537 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.935538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.935539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.935573 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.935575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.935576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.935588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.935590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.946513 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.946515 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.946516 LLDP, length 82 [|LLDP] 12:33:31.946556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.946557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f9 ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.946559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.946560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.946561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.946562 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.946563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.946564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.946587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.946589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.946592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.946594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.957524 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.957525 LLDP, length 82 [|LLDP] 12:33:31.957550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.957551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1102 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.957552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.957553 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.957554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.957555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.957571 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.957573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.957574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.957575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.957576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.957604 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.957607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.965779 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.965781 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.965782 LLDP, length 82 [|LLDP] 12:33:31.965821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.965822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1108 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.965824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.965825 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.965826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.965827 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.965828 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.965829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.965853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.965855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.965859 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.965860 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.976795 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.976796 LLDP, length 82 [|LLDP] 12:33:31.976823 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.976824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1110 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.976825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.976826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.976840 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.976841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.976843 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.976843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.976845 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.976846 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.976847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.976876 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.976878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.985048 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.985050 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.985051 LLDP, length 82 [|LLDP] 12:33:31.985091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.985092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1117 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.985093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.985094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.985095 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.985096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.985098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.985113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.985114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.985115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.985128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.985131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.996061 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.996063 LLDP, length 82 [|LLDP] 12:33:31.996087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.996087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111f 77e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.996089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.996090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.996091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.996092 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.996093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.996094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.996125 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.996127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.996128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.996140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.996142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.007076 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.007077 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.007078 LLDP, length 82 [|LLDP] 12:33:32.007117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.007118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1127 de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.007120 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.007121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.007122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.007135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.007137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.007138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.007139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.007140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.007154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.007157 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.015325 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.015326 LLDP, length 82 [|LLDP] 12:33:32.015356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.015357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112e 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.015358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.015359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.015360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.015361 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.015362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.015363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.015395 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.015397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.015398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.015410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.015412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.026338 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.026340 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.026341 LLDP, length 82 [|LLDP] 12:33:32.026382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.026383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1136 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.026385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.026386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.026387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.026388 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.026389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.026390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.026414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.026416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.026419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.026421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.037347 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.037349 LLDP, length 82 [|LLDP] 12:33:32.037372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.037373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113e f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.037375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.037376 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.037377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.037378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.037393 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.037395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.037396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.037397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.037398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.037425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.037427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.045603 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.045604 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.045605 LLDP, length 82 [|LLDP] 12:33:32.045645 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.045646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1145 44ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.045648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.045649 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.045650 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.045651 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.045652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.045653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.045677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.045679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.045682 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.045684 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.056615 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.056617 LLDP, length 82 [|LLDP] 12:33:32.056640 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.056641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114d ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.056643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.056644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.056657 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.056659 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.056660 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.056661 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.056662 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.056663 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.056664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.056692 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.056694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.067627 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.067629 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.067630 LLDP, length 82 [|LLDP] 12:33:32.067671 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.067672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1156 117a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.067673 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.067674 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.067675 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.067676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.067677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.067692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.067694 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.067695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.067707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.067709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.075883 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.075885 LLDP, length 82 [|LLDP] 12:33:32.075909 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.075910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115c 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.075912 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.075912 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.075914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.075915 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.075915 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.075917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.075948 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.075950 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.075951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.075963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.075965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.086891 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.086893 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.086894 LLDP, length 82 [|LLDP] 12:33:32.086936 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.086937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1164 c4ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.086938 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.086939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.086940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.086954 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.086956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.086957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.086958 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.086959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.086974 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.086976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.095150 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.095151 LLDP, length 82 [|LLDP] 12:33:32.095175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.095176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116b 117a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.095177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.095178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.095179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.095180 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.095181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.095182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.095214 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.095215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.095217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.095229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.095231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.106162 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.106163 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.106164 LLDP, length 82 [|LLDP] 12:33:32.106205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.106206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1173 77e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.106208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.106209 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.106210 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.106211 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.106212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.106213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.106237 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.106240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.106243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.106245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.117172 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.117174 LLDP, length 82 [|LLDP] 12:33:32.117198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.117199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117b de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.117200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.117201 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.117202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.117203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.117218 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.117220 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.117221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.117223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.117224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.117251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.117253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.125430 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.125432 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.125433 LLDP, length 82 [|LLDP] 12:33:32.125473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.125474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1182 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.125476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.125477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.125478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.125479 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.125480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.125481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.125506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.125508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.125511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.125513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.136439 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.136440 LLDP, length 82 [|LLDP] 12:33:32.136465 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.136465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118a 917a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.136467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.136468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.136481 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.136483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.136484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.136485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.136486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.136487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.136488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.136517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.136520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.147448 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.147450 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.147451 LLDP, length 82 [|LLDP] 12:33:32.147490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.147491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1192 f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.147493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.147494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.147495 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.147496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.147497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.147512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.147514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.147514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.147527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.147529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.155707 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.155708 LLDP, length 82 [|LLDP] 12:33:32.155732 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.155733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1199 44ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.155734 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.155735 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.155736 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.155737 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.155739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.155740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.155772 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.155783 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.155784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.155799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.155801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.166718 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.166720 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.166721 LLDP, length 82 [|LLDP] 12:33:32.166762 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.166763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a1 ab19 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.166764 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.166766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.166767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.166780 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.166782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.166783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.166784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.166785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.166799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.166801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.174974 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.174976 LLDP, length 82 [|LLDP] 12:33:32.174999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.175000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a7 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.175001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.175002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.175003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.175004 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.175005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.175006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.175037 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.175039 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.175040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.175052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.175054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.185986 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.185987 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.185989 LLDP, length 82 [|LLDP] 12:33:32.186029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.186030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b0 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.186032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.186033 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.186034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.186035 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.186036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.186037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.186061 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.186063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.186067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.186068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.196994 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.196996 LLDP, length 82 [|LLDP] 12:33:32.197020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.197020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b8 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.197022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.197023 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.197024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.197025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.197040 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.197042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.197043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.197044 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.197045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.197073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.197075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.205252 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.205254 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.205255 LLDP, length 82 [|LLDP] 12:33:32.205295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.205296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bf 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.205297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.205298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.205300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.205301 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.205302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.205303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.205327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.205329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.205332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.205334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.216263 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.216265 LLDP, length 82 [|LLDP] 12:33:32.216288 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.216289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c7 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.216290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.216291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.216305 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.216307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.216308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.216310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.216311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.216312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.216313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.216341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.216343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.227273 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.227274 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.227275 LLDP, length 82 [|LLDP] 12:33:32.227314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.227315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cf de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.227316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.227317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.227318 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.227320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.227321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.227345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.227347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.227348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.227363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.227364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.235531 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.235533 LLDP, length 82 [|LLDP] 12:33:32.235557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.235558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d6 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.235559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.235560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.235561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.235562 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.235563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.235564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.235597 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.235598 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.235599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.235612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.235614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.246542 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.246543 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.246544 LLDP, length 82 [|LLDP] 12:33:32.246583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.246584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11de 917d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.246585 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.246586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.246587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.246601 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.246603 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.246604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.246604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.246606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.246620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.246622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.257550 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.257552 LLDP, length 82 [|LLDP] 12:33:32.257575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.257575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e6 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.257577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.257578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.257579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.257579 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.257580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.257581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.257614 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.257616 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.257617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.257629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.257631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.265812 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.265813 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.265814 LLDP, length 82 [|LLDP] 12:33:32.265856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.265857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ed 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.265859 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.265860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.265861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.265862 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.265863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.265864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.265889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.265891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.265895 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.265896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.276820 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.276822 LLDP, length 82 [|LLDP] 12:33:32.276845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.276846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f5 ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.276847 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.276848 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.276849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.276850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.276866 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.276868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.276869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.276870 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.276871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.276898 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.276901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.285083 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.285085 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.285092 LLDP, length 82 [|LLDP] 12:33:32.285134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.285135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fb f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.285137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.285138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.285139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.285140 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.285141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.285142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.285168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.285170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.285174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.285176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.296092 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.296093 LLDP, length 82 [|LLDP] 12:33:32.296117 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.296118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1204 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.296119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.296120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.296134 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.296136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.296137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.296138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.296140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.296141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.296142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.296171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.296173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.307104 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.307105 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.307106 LLDP, length 82 [|LLDP] 12:33:32.307145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.307146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120c c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.307148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.307149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.307150 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.307151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.307153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.307168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.307170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.307171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.307184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.307186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.315363 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.315364 LLDP, length 82 [|LLDP] 12:33:32.315390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.315390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1213 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.315392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.315393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.315394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.315395 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.315396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.315397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.315431 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.315433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.315434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.315447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.315449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.326366 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.326368 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.326369 LLDP, length 82 [|LLDP] 12:33:32.326408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.326409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121b 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.326411 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.326412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.326413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.326427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.326428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.326429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.326430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.326431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.326445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.326447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.337390 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.337392 LLDP, length 82 [|LLDP] 12:33:32.337422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.337423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1223 de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.337424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.337425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.337427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.337427 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.337428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.337430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.337471 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.337473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.337474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.337487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.337489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.345639 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.345641 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.345648 LLDP, length 82 [|LLDP] 12:33:32.345688 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.345689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122a 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.345691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.345692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.345693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.345694 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.345695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.345696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.345721 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.345724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.345727 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.345729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.356644 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.356646 LLDP, length 82 [|LLDP] 12:33:32.356672 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.356672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1232 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.356674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.356675 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.356676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.356676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.356692 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.356694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.356695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.356696 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.356698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.356725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.356727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.364904 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.364906 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.364907 LLDP, length 82 [|LLDP] 12:33:32.364949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.364949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1238 de4d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.364951 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.364952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.364953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.364954 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.364955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.364956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.364981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.364983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.364987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.364989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.375915 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.375916 LLDP, length 82 [|LLDP] 12:33:32.375941 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.375942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1241 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.375943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.375944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.375958 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.375960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.375961 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.375962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.375963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.375964 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.375965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.375993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.375995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.386924 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.386925 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.386926 LLDP, length 82 [|LLDP] 12:33:32.386967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.386968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1249 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.386970 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.386971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.386972 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.386973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.386974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.386989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.386991 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.386992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.387005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.387007 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.395178 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.395179 LLDP, length 82 [|LLDP] 12:33:32.395203 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.395204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124f f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.395205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.395206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.395207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.395208 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.395209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.395210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.395243 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.395245 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.395246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.395259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.395261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.406196 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.406197 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.406198 LLDP, length 82 [|LLDP] 12:33:32.406232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.406233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1258 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.406235 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.406236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.406237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.406250 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.406252 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.406253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.406254 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.406255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.406269 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.406271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.417208 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.417210 LLDP, length 82 [|LLDP] 12:33:32.417228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.417229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1260 c4b3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.417230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.417231 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.417232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.417233 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.417234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.417235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.417267 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.417269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.417270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.417281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.417283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.425458 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.425460 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.425461 LLDP, length 82 [|LLDP] 12:33:32.425501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.425501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1267 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.425503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.425504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.425505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.425506 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.425507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.425508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.425533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.425535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.425538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.425540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.436469 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.436471 LLDP, length 82 [|LLDP] 12:33:32.436496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.436497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126f 77e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.436498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.436499 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.436500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.436501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.436517 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.436518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.436519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.436521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.436522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.436548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.436550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.447478 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.447479 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.447480 LLDP, length 82 [|LLDP] 12:33:32.447519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.447520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1277 de47 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.447522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.447523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.447524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.447525 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.447526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.447527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.447551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.447553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.447556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.447558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.455735 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.455737 LLDP, length 82 [|LLDP] 12:33:32.455760 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.455761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127e 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.455762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.455763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.455796 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.455798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.455799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.455800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.455801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.455802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.455803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.455825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.455828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.466746 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.466748 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.466749 LLDP, length 82 [|LLDP] 12:33:32.466789 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.466790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1286 917a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.466791 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.466793 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.466794 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.466795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.466796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.466810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.466812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.466813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.466826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.466828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.475005 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.475006 LLDP, length 82 [|LLDP] 12:33:32.475031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.475031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 128c de47 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.475033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.475034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.475035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.475036 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.475037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.475038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.475071 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.475073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.475074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.475086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.475088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.486016 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.486018 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.486019 LLDP, length 82 [|LLDP] 12:33:32.486059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.486060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1295 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.486062 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.486063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.486064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.486078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.486079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.486080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.486081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.486082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.486097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.486099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.497026 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.497047 LLDP, length 82 [|LLDP] 12:33:32.497066 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.497067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 129d ab14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.497068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.497069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.497070 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.497072 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.497073 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.497074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.497107 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.497109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.497110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.497122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.497124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.505312 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.505321 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.505322 LLDP, length 82 [|LLDP] 12:33:32.505372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.505373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12a3 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.505375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.505376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.505377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.505378 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.505379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.505380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.505410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.505412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.505416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.505419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.880013 LLDP, length 230: dentlab-infra1 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 9081 packets captured 9081 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra1 with rc 0 and out 12:33:26.457969 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.457971 LLDP, length 82 [|LLDP] 12:33:26.458014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.458015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009e 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.458017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.458018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.458019 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.458020 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.458021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.458022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.458096 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.458099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.458100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.458115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.458117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.466185 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.466186 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.466187 LLDP, length 82 [|LLDP] 12:33:26.466233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.466234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a4 9113 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.466235 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.466236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.466238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.466264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.466266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.466267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.466268 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.466269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.466283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.466285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.477189 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.477191 LLDP, length 82 [|LLDP] 12:33:26.477219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.477220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ac f77a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.477221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.477222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.477223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.477224 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.477225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.477226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.477269 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.477271 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.477272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.477284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.477286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.485440 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.485442 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.485443 LLDP, length 82 [|LLDP] 12:33:26.485484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.485485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b3 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.485486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.485487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.485488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.485490 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.485491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.485492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.485524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.485525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.485529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.485531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.496448 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.496450 LLDP, length 82 [|LLDP] 12:33:26.496473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.496474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00bb aaad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.496475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.496477 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.496477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.496478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.496507 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.496509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.496510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.496511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.496512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.496532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.496534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.507466 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.507467 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.507468 LLDP, length 82 [|LLDP] 12:33:26.507510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.507511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c4 1114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.507512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.507513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.507514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.507515 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.507516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.507517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.507550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.507552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.507556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.507558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.515715 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.515717 LLDP, length 82 [|LLDP] 12:33:26.515741 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.515742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ca 5de7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.515744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.515745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.515758 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.515760 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.515761 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.515762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.515763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.515764 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.515765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.515803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.515805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.526741 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.526749 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.526750 LLDP, length 82 [|LLDP] 12:33:26.526798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.526799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d2 c447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.526800 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.526801 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.526802 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.526803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.526804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.526820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.526822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.526823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.526835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.526838 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.537749 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.537751 LLDP, length 82 [|LLDP] 12:33:26.537774 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.537775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00db 2aad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.537776 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.537777 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.537778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.537779 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.537780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.537781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.537818 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.537820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.537821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.537833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.537835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.545997 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.545999 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.546000 LLDP, length 82 [|LLDP] 12:33:26.546046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.546047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e1 777a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.546048 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.546050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.546051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.546065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.546067 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.546068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.546069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.546070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.546083 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.546085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.557008 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.557009 LLDP, length 82 [|LLDP] 12:33:26.557030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.557031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e9 dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.557032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.557033 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.557034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.557035 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.557036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.557037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.557069 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.557071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.557072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.557084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.557087 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.565270 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.565272 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.565273 LLDP, length 82 [|LLDP] 12:33:26.565316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.565317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f0 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.565318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.565319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.565320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.565321 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.565323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.565324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.565349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.565351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.565354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.565356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.576274 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.576276 LLDP, length 82 [|LLDP] 12:33:26.576296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.576296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f8 9114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.576298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.576299 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.576301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.576302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.576316 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.576318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.576319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.576320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.576321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.576346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.576348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.587284 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.587286 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.587286 LLDP, length 82 [|LLDP] 12:33:26.587327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.587328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0100 f77a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.587330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.587331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.587332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.587333 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.587343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.587344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.587368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.587370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.587373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.587375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.595540 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.595541 LLDP, length 82 [|LLDP] 12:33:26.595568 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.595569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0107 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.595571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.595572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.595584 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.595587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.595587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.595588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.595589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.595590 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.595591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.595618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.595620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.606550 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.606552 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.606553 LLDP, length 82 [|LLDP] 12:33:26.606593 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.606594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010f aaae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.606595 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.606596 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.606598 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.606599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.606600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.606614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.606616 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.606617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.606628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.606630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.617561 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.617563 LLDP, length 82 [|LLDP] 12:33:26.617588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.617588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0118 1114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.617590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.617591 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.617592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.617593 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.617594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.617595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.617626 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.617628 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.617629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.617640 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.617642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.625825 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.625826 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.625827 LLDP, length 82 [|LLDP] 12:33:26.625868 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.625869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011e 5de1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.625870 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.625871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.625872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.625885 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.625887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.625888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.625889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.625890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.625903 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.625905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.636828 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.636829 LLDP, length 82 [|LLDP] 12:33:26.636854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.636855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0126 c447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.636856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.636857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.636858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.636859 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.636860 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.636861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.636891 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.636893 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.636895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.636906 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.636908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.647837 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.647839 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.647840 LLDP, length 82 [|LLDP] 12:33:26.647881 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.647882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012f 2ab5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.647883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.647884 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.647886 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.647887 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.647888 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.647889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.647912 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.647913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.647917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.647919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.656097 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.656099 LLDP, length 82 [|LLDP] 12:33:26.656119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.656120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0135 777b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.656122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.656123 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.656124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.656125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.656139 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.656141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.656142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.656143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.656144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.656168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.656170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.667105 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.667107 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.667108 LLDP, length 82 [|LLDP] 12:33:26.667154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.667155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013d dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.667156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.667157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.667158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.667159 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.667160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.667161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.667184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.667186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.667189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.667191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.675373 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.675374 LLDP, length 82 [|LLDP] 12:33:26.675402 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.675403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0144 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.675404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.675405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.675419 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.675420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.675421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.675422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.675423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.675425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.675426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.675456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.675459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.686384 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.686386 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.686387 LLDP, length 82 [|LLDP] 12:33:26.686427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.686428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014c 9119 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.686430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.686431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.686432 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.686433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.686434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.686449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.686450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.686451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.686463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.686466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.697389 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.697392 LLDP, length 82 [|LLDP] 12:33:26.697421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.697422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0154 f77b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.697424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.697425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.697426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.697427 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.697428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.697429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.697465 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.697467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.697468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.697480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.697482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.705646 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.705648 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.705649 LLDP, length 82 [|LLDP] 12:33:26.705695 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.705696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015b 4448 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.705698 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.705699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.705700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.705714 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.705715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.705716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.705717 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.705718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.705731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.705733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.716654 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.716655 LLDP, length 82 [|LLDP] 12:33:26.716681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.716682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0163 aaae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.716684 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.716685 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.716686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.716687 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.716688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.716689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.716719 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.716721 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.716722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.716733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.716735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.727663 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.727665 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.727666 LLDP, length 82 [|LLDP] 12:33:26.727707 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.727708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016c 1115 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.727709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.727710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.727711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.727712 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.727713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.727714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.727737 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.727739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.727742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.727744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.735928 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.735929 LLDP, length 82 [|LLDP] 12:33:26.735947 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.735948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0172 5de2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.735950 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.735951 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.735952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.735953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.735968 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.735969 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.735970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.735971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.735972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.735997 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.736000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.746936 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.746938 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.746938 LLDP, length 82 [|LLDP] 12:33:26.746980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.746981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017a c448 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.746983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.746984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.746985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.746986 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.746987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.746988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.747011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.747013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.747017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.747019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.755188 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.755189 LLDP, length 82 [|LLDP] 12:33:26.755214 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.755215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0181 1115 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.755216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.755217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.755230 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.755232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.755233 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.755234 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.755235 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.755236 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.755237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.755263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.755265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.766198 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.766199 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.766200 LLDP, length 82 [|LLDP] 12:33:26.766240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.766241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0189 7781 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.766243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.766244 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.766245 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.766246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.766247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.766261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.766262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.766263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.766275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.766277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.777208 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.777210 LLDP, length 82 [|LLDP] 12:33:26.777235 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.777235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0191 dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.777237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.777238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.777239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.777240 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.777241 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.777242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.777271 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.777273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.777274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.777286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.777288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.785464 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.785466 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.785467 LLDP, length 82 [|LLDP] 12:33:26.785507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.785508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0198 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.785510 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.785511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.785512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.785524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.785526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.785527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.785528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.785529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.785542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.785543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.796476 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.796477 LLDP, length 82 [|LLDP] 12:33:26.796502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.796503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a0 9114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.796504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.796505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.796507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.796508 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.796508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.796509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.796539 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.796541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.796542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.796553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.796555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.807486 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.807488 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.807489 LLDP, length 82 [|LLDP] 12:33:26.807529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.807530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a8 f779 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.807532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.807533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.807534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.807535 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.807536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.807537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.807559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.807561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.807564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.807566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.815743 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.815745 LLDP, length 82 [|LLDP] 12:33:26.815769 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.815770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01af 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.815771 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.815772 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.815773 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.815774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.815788 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.815790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.815791 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.815792 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.815793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.815817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.815819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.826757 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.826759 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.826759 LLDP, length 82 [|LLDP] 12:33:26.826799 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.826800 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b7 aaad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.826801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.826802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.826803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.826804 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.826805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.826806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.826828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.826830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.826833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.826835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.837766 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.837768 LLDP, length 82 [|LLDP] 12:33:26.837792 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.837793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c0 1113 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.837794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.837795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.837808 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.837810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.837811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.837812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.837813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.837814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.837815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.837841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.837843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.846023 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.846025 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.846026 LLDP, length 82 [|LLDP] 12:33:26.846065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.846066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c6 5de0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.846067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.846068 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.846069 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.846070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.846071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.846085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.846087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.846088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.846100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.846102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.857033 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.857035 LLDP, length 82 [|LLDP] 12:33:26.857058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.857059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ce c447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.857060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.857061 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.857062 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.857063 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.857064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.857065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.857094 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.857096 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.857097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.857108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.857111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.865290 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.865291 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.865292 LLDP, length 82 [|LLDP] 12:33:26.865332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.865333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d5 1113 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.865334 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.865335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.865336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.865348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.865350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.865351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.865352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.865353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.865366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.865368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.876300 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.876301 LLDP, length 82 [|LLDP] 12:33:26.876326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.876326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01dd 777a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.876328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.876329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.876330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.876331 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.876332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.876333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.876362 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.876364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.876365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.876376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.876379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.887310 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.887311 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.887312 LLDP, length 82 [|LLDP] 12:33:26.887362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.887363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e5 dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.887365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.887366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.887367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.887368 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.887369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.887370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.887394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.887396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.887399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.887402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.895567 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.895569 LLDP, length 82 [|LLDP] 12:33:26.895594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.895595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ec 2aad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.895596 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.895597 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.895598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.895599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.895614 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.895616 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.895617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.895618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.895619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.895644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.895646 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.906579 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.906581 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.906582 LLDP, length 82 [|LLDP] 12:33:26.906623 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.906623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f4 9114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.906625 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.906626 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.906627 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.906628 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.906629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.906630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.906652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.906654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.906657 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.906659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.917587 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.917589 LLDP, length 82 [|LLDP] 12:33:26.917614 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.917615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fc f77a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.917616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.917617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.917630 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.917632 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.917633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.917634 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.917635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.917636 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.917637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.917663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.917665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.925847 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.925849 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.925850 LLDP, length 82 [|LLDP] 12:33:26.925888 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.925889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0203 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.925891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.925892 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.925893 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.925894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.925895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.925909 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.925910 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.925911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.925923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.925925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.936856 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.936858 LLDP, length 82 [|LLDP] 12:33:26.936883 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.936884 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020b aab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.936885 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.936886 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.936887 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.936888 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.936889 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.936890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.936921 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.936923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.936924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.936935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.936937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.947867 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.947869 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.947870 LLDP, length 82 [|LLDP] 12:33:26.947910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.947911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0214 1114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.947913 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.947914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.947915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.947928 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.947930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.947931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.947932 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.947933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.947946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.947948 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.956125 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.956128 LLDP, length 82 [|LLDP] 12:33:26.956152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.956152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021a 5de1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.956154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.956155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.956156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.956156 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.956158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.956159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.956188 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.956190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.956191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.956202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.956204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.967150 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.967152 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.967153 LLDP, length 82 [|LLDP] 12:33:26.967194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.967195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0222 c447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.967197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.967197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.967198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.967199 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.967200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.967201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.967224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.967226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.967229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.967231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.975400 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.975401 LLDP, length 82 [|LLDP] 12:33:26.975427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.975428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0229 1115 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.975429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.975430 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.975431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.975432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.975447 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.975449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.975450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.975451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.975452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.975477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.975479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.986403 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.986404 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.986406 LLDP, length 82 [|LLDP] 12:33:26.986447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.986448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0231 777b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.986450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.986451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.986452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.986453 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.986454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.986455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.986478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.986479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.986482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.986484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:26.997412 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:26.997413 LLDP, length 82 [|LLDP] 12:33:26.997437 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.997438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0239 dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:26.997440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:26.997440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.997453 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:26.997455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:26.997456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:26.997457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:26.997458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:26.997459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:26.997460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:26.997486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:26.997488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.005670 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.005672 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.005673 LLDP, length 82 [|LLDP] 12:33:27.005712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.005713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0240 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.005714 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.005715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.005716 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.005717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.005719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.005733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.005735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.005736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.005748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.005750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.016680 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.016681 LLDP, length 82 [|LLDP] 12:33:27.016707 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.016707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0248 911b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.016709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.016710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.016711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.016712 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.016713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.016714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.016743 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.016745 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.016746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.016757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.016759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.027692 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.027694 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.027695 LLDP, length 82 [|LLDP] 12:33:27.027734 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.027734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0250 f77b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.027736 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.027737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.027738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.027750 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.027752 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.027753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.027754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.027755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.027768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.027770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.035950 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.035952 LLDP, length 82 [|LLDP] 12:33:27.035975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.035976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0257 4448 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.035978 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.035979 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.035980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.035981 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.035982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.035983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.036012 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.036014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.036015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.036026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.036028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.046957 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.046959 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.046960 LLDP, length 82 [|LLDP] 12:33:27.047000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.047001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025f aaae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.047002 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.047004 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.047005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.047006 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.047007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.047008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.047031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.047032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.047035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.047037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.055217 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.055219 LLDP, length 82 [|LLDP] 12:33:27.055244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.055244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0265 f77b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.055246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.055247 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.055248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.055249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.055263 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.055265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.055266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.055267 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.055268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.055292 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.055294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.066231 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.066232 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.066233 LLDP, length 82 [|LLDP] 12:33:27.066275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.066276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026e 5de1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.066277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.066278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.066279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.066280 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.066282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.066283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.066306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.066308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.066312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.066313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.077238 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.077240 LLDP, length 82 [|LLDP] 12:33:27.077265 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.077266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0276 c448 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.077267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.077268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.077282 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.077284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.077285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.077286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.077287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.077288 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.077289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.077317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.077319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.085495 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.085497 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.085498 LLDP, length 82 [|LLDP] 12:33:27.085538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.085539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027d 1115 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.085540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.085541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.085542 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.085543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.085544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.085559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.085561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.085562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.085574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.085575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.096506 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.096508 LLDP, length 82 [|LLDP] 12:33:27.096533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.096534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0285 777b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.096535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.096536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.096537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.096538 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.096539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.096540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.096570 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.096572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.096573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.096584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.096586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.107515 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.107517 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.107517 LLDP, length 82 [|LLDP] 12:33:27.107558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.107559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028d dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.107561 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.107562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.107563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.107576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.107578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.107579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.107580 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.107581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.107593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.107595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.115773 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.115775 LLDP, length 82 [|LLDP] 12:33:27.115800 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.115801 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0294 2aaf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.115802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.115803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.115804 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.115805 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.115805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.115806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.115836 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.115839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.115840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.115851 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.115853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.126784 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.126786 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.126787 LLDP, length 82 [|LLDP] 12:33:27.126828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.126829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029c 9115 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.126830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.126831 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.126832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.126833 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.126834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.126835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.126858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.126860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.126863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.126865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.137793 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.137794 LLDP, length 82 [|LLDP] 12:33:27.137820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.137821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a4 f77b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.137822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.137823 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.137824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.137825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.137839 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.137841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.137842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.137843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.137845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.137869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.137871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.146051 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.146052 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.146053 LLDP, length 82 [|LLDP] 12:33:27.146096 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.146097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ab 4448 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.146098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.146099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.146100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.146101 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.146102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.146104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.146127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.146129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.146132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.146134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.157064 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.157066 LLDP, length 82 [|LLDP] 12:33:27.157091 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.157091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b3 aaae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.157093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.157094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.157108 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.157109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.157110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.157111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.157112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.157113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.157114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.157141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.157143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.165320 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.165322 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.165323 LLDP, length 82 [|LLDP] 12:33:27.165363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.165364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b9 f77b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.165366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.165367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.165368 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.165369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.165370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.165384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.165386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.165387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.165399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.165401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.176330 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.176331 LLDP, length 82 [|LLDP] 12:33:27.176357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.176358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c2 5de1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.176359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.176360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.176361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.176362 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.176363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.176364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.176395 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.176397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.176399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.176410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.176412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.187347 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.187348 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.187349 LLDP, length 82 [|LLDP] 12:33:27.187390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.187391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ca c44a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.187393 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.187394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.187395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.187407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.187409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.187410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.187411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.187412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.187426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.187428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.195599 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.195600 LLDP, length 82 [|LLDP] 12:33:27.195626 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.195627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d1 1113 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.195628 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.195629 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.195630 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.195631 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.195633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.195634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.195665 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.195667 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.195668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.195679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.195682 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.206614 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.206616 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.206617 LLDP, length 82 [|LLDP] 12:33:27.206652 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.206653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d9 777a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.206655 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.206656 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.206657 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.206658 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.206658 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.206659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.206683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.206685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.206688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.206690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.217621 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.217623 LLDP, length 82 [|LLDP] 12:33:27.217642 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.217643 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e1 dde0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.217645 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.217646 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.217647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.217648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.217663 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.217664 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.217665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.217666 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.217668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.217693 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.217695 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.225876 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.225878 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.225879 LLDP, length 82 [|LLDP] 12:33:27.225921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.225922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e8 2aad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.225924 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.225925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.225926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.225927 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.225928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.225929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.225952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.225954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.225957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.225959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.236886 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.236888 LLDP, length 82 [|LLDP] 12:33:27.236913 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.236914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f0 9114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.236915 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.236916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.236929 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.236931 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.236932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.236932 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.236934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.236935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.236936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.236962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.236964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.245142 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.245144 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.245145 LLDP, length 82 [|LLDP] 12:33:27.245185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.245186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f6 dde0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.245187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.245188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.245190 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.245191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.245192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.245206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.245208 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.245209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.245220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.245223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.256154 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.256156 LLDP, length 82 [|LLDP] 12:33:27.256181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.256181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ff 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.256183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.256184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.256185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.256186 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.256187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.256188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.256218 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.256220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.256221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.256232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.256234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.267169 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.267171 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.267172 LLDP, length 82 [|LLDP] 12:33:27.267213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.267214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0307 aab4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.267215 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.267216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.267217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.267231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.267233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.267234 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.267235 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.267236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.267249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.267251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.275424 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.275426 LLDP, length 82 [|LLDP] 12:33:27.275450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.275451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030d f77a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.275452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.275453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.275454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.275455 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.275456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.275457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.275489 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.275491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.275492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.275503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.275506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.286437 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.286438 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.286439 LLDP, length 82 [|LLDP] 12:33:27.286487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.286487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0316 5de0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.286489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.286490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.286491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.286492 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.286493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.286494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.286520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.286522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.286525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.286527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.297445 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.297447 LLDP, length 82 [|LLDP] 12:33:27.297473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.297474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031e c447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.297475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.297476 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.297477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.297478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.297493 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.297494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.297496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.297497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.297498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.297524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.297527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.305701 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.305703 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.305704 LLDP, length 82 [|LLDP] 12:33:27.305746 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.305747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0325 1114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.305749 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.305750 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.305751 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.305752 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.305753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.305754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.305777 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.305779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.305782 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.305784 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.316711 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.316713 LLDP, length 82 [|LLDP] 12:33:27.316739 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.316752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032d 777a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.316754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.316755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.316769 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.316771 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.316773 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.316774 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.316775 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.316776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.316777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.316806 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.316808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.327748 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.327757 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.327758 LLDP, length 82 [|LLDP] 12:33:27.327809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.327810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0335 dde0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.327812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.327813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.327814 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.327814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.327816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.327838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.327840 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.327841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.327855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.327857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.335984 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.335986 LLDP, length 82 [|LLDP] 12:33:27.336013 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.336014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033c 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.336015 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.336016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.336017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.336018 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.336019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.336020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.336060 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.336061 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.336062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.336074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.336077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.346992 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.346994 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.346995 LLDP, length 82 [|LLDP] 12:33:27.347040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.347041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0344 9114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.347042 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.347043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.347044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.347057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.347059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.347060 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.347062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.347063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.347076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.347078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.355245 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.355246 LLDP, length 82 [|LLDP] 12:33:27.355268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.355268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034a dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.355270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.355271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.355272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.355273 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.355274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.355275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.355304 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.355306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.355307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.355318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.355320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.366254 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.366256 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.366257 LLDP, length 82 [|LLDP] 12:33:27.366294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.366295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0353 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.366297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.366298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.366299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.366300 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.366301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.366302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.366325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.366327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.366330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.366332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.377261 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.377262 LLDP, length 82 [|LLDP] 12:33:27.377284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.377285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035b aaae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.377287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.377288 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.377289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.377290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.377304 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.377306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.377307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.377308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.377309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.377333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.377335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.385517 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.385519 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.385520 LLDP, length 82 [|LLDP] 12:33:27.385556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.385556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0361 f781 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.385558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.385559 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.385560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.385561 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.385562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.385563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.385585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.385587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.385590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.385592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.396531 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.396532 LLDP, length 82 [|LLDP] 12:33:27.396553 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.396554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036a 5de1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.396555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.396556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.396567 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.396569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.396570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.396571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.396572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.396573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.396574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.396598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.396600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.407538 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.407540 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.407541 LLDP, length 82 [|LLDP] 12:33:27.407576 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.407577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0372 c447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.407579 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.407580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.407581 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.407581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.407583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.407596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.407598 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.407599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.407611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.407613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.415797 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.415799 LLDP, length 82 [|LLDP] 12:33:27.415819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.415820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0379 1114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.415821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.415822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.415823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.415824 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.415825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.415827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.415853 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.415855 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.415856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.415867 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.415869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.426808 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.426810 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.426811 LLDP, length 82 [|LLDP] 12:33:27.426844 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.426845 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0381 777b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.426847 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.426848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.426849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.426861 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.426863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.426864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.426865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.426866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.426880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.426882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.437816 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.437818 LLDP, length 82 [|LLDP] 12:33:27.437838 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.437839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0389 dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.437840 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.437841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.437842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.437843 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.437844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.437845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.437872 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.437874 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.437875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.437886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.437888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.446078 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.446079 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.446080 LLDP, length 82 [|LLDP] 12:33:27.446114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.446115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0390 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.446116 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.446117 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.446118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.446119 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.446120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.446121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.446144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.446145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.446148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.446150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.457090 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.457092 LLDP, length 82 [|LLDP] 12:33:27.457112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.457113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0398 9114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.457114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.457115 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.457116 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.457117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.457147 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.457149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.457150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.457151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.457152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.457171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.457173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.465374 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.465383 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.465384 LLDP, length 82 [|LLDP] 12:33:27.465443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.465444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039e dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.465446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.465447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.465448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.465449 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.465450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.465451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.465479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.465481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.465485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.465487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.476361 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.476363 LLDP, length 82 [|LLDP] 12:33:27.476388 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.476389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a7 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.476391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.476392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.476407 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.476409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.476410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.476411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.476412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.476413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.476414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.476441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.476443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.487373 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.487375 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.487375 LLDP, length 82 [|LLDP] 12:33:27.487414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.487414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03af aaae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.487416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.487417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.487418 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.487419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.487420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.487434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.487436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.487437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.487448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.487450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.495644 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.495646 LLDP, length 82 [|LLDP] 12:33:27.495670 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.495670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b5 f77b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.495672 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.495673 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.495674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.495675 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.495676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.495677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.495721 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.495723 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.495724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.495736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.495738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.506650 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.506659 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.506660 LLDP, length 82 [|LLDP] 12:33:27.506707 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.506707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03be 5de1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.506709 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.506710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.506711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.506725 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.506727 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.506729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.506730 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.506731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.506745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.506747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.517651 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.517653 LLDP, length 82 [|LLDP] 12:33:27.517677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.517678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c6 c44f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.517679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.517680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.517681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.517682 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.517683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.517684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.517716 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.517717 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.517719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.517732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.517734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.525912 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.525915 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.525922 LLDP, length 82 [|LLDP] 12:33:27.525964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.525964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cd 1115 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.525966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.525967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.525968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.525969 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.525971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.525972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.525995 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.525997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.526001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.526003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.536929 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.536931 LLDP, length 82 [|LLDP] 12:33:27.536963 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.536964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d5 777c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.536965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.536966 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.536967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.536969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.536988 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.536990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.536991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.536992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.536993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.537025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.537027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.545174 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.545176 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.545177 LLDP, length 82 [|LLDP] 12:33:27.545221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.545222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03db c448 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.545223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.545224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.545225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.545226 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.545227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.545229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.545252 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.545254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.545257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.545259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.556178 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.556180 LLDP, length 82 [|LLDP] 12:33:27.556203 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.556204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e4 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.556206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.556207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.556218 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.556220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.556221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.556222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.556223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.556224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.556225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.556250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.556252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.567207 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.567210 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.567211 LLDP, length 82 [|LLDP] 12:33:27.567259 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.567260 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ec 9114 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.567261 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.567262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.567264 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.567265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.567265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.567282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.567284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.567285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.567298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.567300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.575458 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.575461 LLDP, length 82 [|LLDP] 12:33:27.575489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.575490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f2 dde1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.575491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.575493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.575494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.575495 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.575496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.575497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.575533 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.575535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.575536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.575548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.575550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.586465 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.586466 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.586468 LLDP, length 82 [|LLDP] 12:33:27.586511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.586512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fb 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.586514 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.586515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.586516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.586530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.586532 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.586533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.586534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.586535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.586548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.586550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.597487 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.597489 LLDP, length 82 [|LLDP] 12:33:27.597520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.597521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0403 aaad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.597522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.597523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.597524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.597525 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.597526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.597528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.597571 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.597573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.597574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.597587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.597589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.605764 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.605767 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.605768 LLDP, length 82 [|LLDP] 12:33:27.605832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.605833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0409 f77a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.605835 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.605836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.605837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.605838 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.605839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.605840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.605870 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.605872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.605876 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.605878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.616745 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.616747 LLDP, length 82 [|LLDP] 12:33:27.616773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.616774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0412 5de1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.616775 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.616776 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.616777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.616779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.616795 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.616797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.616798 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.616799 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.616800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.616827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.616829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.627744 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.627746 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.627747 LLDP, length 82 [|LLDP] 12:33:27.627786 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.627787 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041a c446 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.627789 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.627790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.627790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.627792 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.627793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.627794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.627817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.627818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.627822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.627823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.636002 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.636003 LLDP, length 82 [|LLDP] 12:33:27.636025 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.636026 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0421 111a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.636027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.636028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.636040 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.636042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.636043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.636044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.636045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.636046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.636047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.636071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.636073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.647012 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.647014 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.647015 LLDP, length 82 [|LLDP] 12:33:27.647049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.647050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0429 777a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.647052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.647053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.647053 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.647054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.647055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.647069 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.647071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.647072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.647084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.647086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.655268 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.655270 LLDP, length 82 [|LLDP] 12:33:27.655291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.655291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042f c447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.655293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.655294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.655295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.655296 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.655297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.655298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.655324 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.655326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.655327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.655347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.655349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.666281 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.666283 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.666284 LLDP, length 82 [|LLDP] 12:33:27.666321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.666322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0438 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.666324 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.666325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.666326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.666338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.666340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.666342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.666343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.666344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.666357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.666359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.677288 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.677290 LLDP, length 82 [|LLDP] 12:33:27.677312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.677312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0440 9113 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.677314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.677315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.677316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.677317 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.677318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.677319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.677346 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.677348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.677349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.677360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.677362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.685548 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.685549 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.685550 LLDP, length 82 [|LLDP] 12:33:27.685584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.685585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0446 dde0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.685587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.685588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.685589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.685590 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.685591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.685592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.685615 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.685616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.685619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.685621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.696559 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.696560 LLDP, length 82 [|LLDP] 12:33:27.696584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.696584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044f 4447 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.696586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.696587 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.696588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.696589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.696604 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.696606 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.696607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.696608 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.696609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.696634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.696637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.707569 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.707570 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.707571 LLDP, length 82 [|LLDP] 12:33:27.707608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.707609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0457 aaad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.707611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.707611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.707612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.707613 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.707614 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.707615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.707638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.707640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.707643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.707644 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.715825 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.715827 LLDP, length 82 [|LLDP] 12:33:27.715846 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.715847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045d f77a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.715848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.715849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.715861 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.715863 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.715864 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.715865 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.715866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.715867 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.715868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.715893 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.715895 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.726838 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.726839 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.726840 LLDP, length 82 [|LLDP] 12:33:27.726877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.726878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0466 5e02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.726880 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.726881 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.726882 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.726883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.726884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.726897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.726900 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.726901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.726913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.726915 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.737846 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.737848 LLDP, length 82 [|LLDP] 12:33:27.737869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.737870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046e c469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.737871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.737872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.737873 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.737874 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.737876 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.737877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.737904 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.737906 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.737907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.737918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.737920 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.746106 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.746108 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.746109 LLDP, length 82 [|LLDP] 12:33:27.746144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.746145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0475 1136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.746146 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.746147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.746148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.746161 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.746162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.746163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.746165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.746166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.746179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.746181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.757116 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.757117 LLDP, length 82 [|LLDP] 12:33:27.757138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.757138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047d 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.757140 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.757141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.757142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.757143 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.757144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.757145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.757173 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.757174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.757175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.757186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.757188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.765371 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.765373 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.765374 LLDP, length 82 [|LLDP] 12:33:27.765409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.765410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0483 c469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.765411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.765412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.765413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.765414 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.765416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.765417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.765438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.765440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.765443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.765445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.776382 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.776384 LLDP, length 82 [|LLDP] 12:33:27.776405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.776406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048c 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.776407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.776409 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.776410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.776410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.776425 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.776427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.776428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.776429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.776430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.776454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.776456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.787392 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.787393 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.787394 LLDP, length 82 [|LLDP] 12:33:27.787429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.787429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0494 9136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.787431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.787432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.787433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.787434 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.787435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.787436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.787458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.787460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.787463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.787465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.795649 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.795651 LLDP, length 82 [|LLDP] 12:33:27.795672 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.795673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049a de03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.795674 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.795675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.795688 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.795689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.795690 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.795692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.795693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.795693 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.795695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.795720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.795722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.806659 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.806660 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.806662 LLDP, length 82 [|LLDP] 12:33:27.806696 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.806697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a3 4470 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.806699 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.806700 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.806701 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.806702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.806703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.806716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.806718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.806719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.806730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.806733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.817668 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.817670 LLDP, length 82 [|LLDP] 12:33:27.817691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.817692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ab aad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.817693 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.817694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.817695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.817696 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.817697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.817699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.817725 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.817727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.817728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.817739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.817741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.825929 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.825931 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.825932 LLDP, length 82 [|LLDP] 12:33:27.825967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.825967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b1 f79d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.825969 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.825970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.825971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.825982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.825984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.825985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.825986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.825987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.826000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.826002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.836938 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.836939 LLDP, length 82 [|LLDP] 12:33:27.836960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.836961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ba 5e03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.836962 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.836963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.836964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.836965 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.836966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.836967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.836994 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.836996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.836997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.837010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.837012 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.845195 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.845197 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.845198 LLDP, length 82 [|LLDP] 12:33:27.845232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.845233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c0 aad4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.845234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.845235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.845236 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.845237 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.845238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.845239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.845261 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.845263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.845266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.845268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.856207 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.856208 LLDP, length 82 [|LLDP] 12:33:27.856232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.856233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c9 1136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.856235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.856236 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.856237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.856238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.856252 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.856254 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.856255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.856256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.856257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.856279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.856281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.867215 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.867216 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.867217 LLDP, length 82 [|LLDP] 12:33:27.867252 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.867253 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d1 779d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.867254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.867255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.867256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.867257 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.867258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.867259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.867281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.867283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.867286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.867288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.875472 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.875473 LLDP, length 82 [|LLDP] 12:33:27.875494 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.875494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d7 c46a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.875496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.875497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.875509 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.875511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.875512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.875514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.875515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.875515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.875517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.875542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.875544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.886484 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.886485 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.886486 LLDP, length 82 [|LLDP] 12:33:27.886521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.886521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e0 2ad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.886523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.886524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.886525 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.886526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.886527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.886540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.886542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.886543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.886555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.886557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.897495 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.897496 LLDP, length 82 [|LLDP] 12:33:27.897516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.897517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e8 9136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.897519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.897520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.897521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.897522 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.897523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.897524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.897552 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.897553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.897555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.897566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.897567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.905752 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.905754 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.905755 LLDP, length 82 [|LLDP] 12:33:27.905790 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.905791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ee de03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.905792 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.905793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.905794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.905806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.905808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.905809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.905810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.905811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.905823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.905826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.916762 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.916764 LLDP, length 82 [|LLDP] 12:33:27.916786 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.916787 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f7 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.916788 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.916789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.916790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.916791 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.916793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.916794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.916821 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.916823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.916824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.916835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.916837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.927774 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.927776 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.927777 LLDP, length 82 [|LLDP] 12:33:27.927812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.927813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ff aacf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.927814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.927815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.927816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.927817 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.927818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.927819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.927841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.927843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.927846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.927848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.936030 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.936031 LLDP, length 82 [|LLDP] 12:33:27.936052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.936052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0505 f79c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.936054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.936055 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.936056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.936057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.936070 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.936072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.936073 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.936074 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.936075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.936097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.936100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.947040 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.947042 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.947043 LLDP, length 82 [|LLDP] 12:33:27.947079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.947080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050e 5e02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.947081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.947082 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.947083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.947085 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.947086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.947086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.947108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.947110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.947113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.947116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.955297 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.955298 LLDP, length 82 [|LLDP] 12:33:27.955320 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.955321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0514 aacf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.955322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.955323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.955342 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.955344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.955345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.955346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.955347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.955348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.955349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.955375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.955377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.966313 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.966315 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.966316 LLDP, length 82 [|LLDP] 12:33:27.966353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.966354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051d 1135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.966355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.966356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.966357 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.966358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.966359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.966373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.966375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.966376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.966388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.966390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.977319 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.977321 LLDP, length 82 [|LLDP] 12:33:27.977343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.977344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0525 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.977345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.977346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.977347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.977348 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.977349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.977350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.977379 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.977381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.977382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.977394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.977396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.985577 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.985578 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.985579 LLDP, length 82 [|LLDP] 12:33:27.985615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.985617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052b c468 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.985618 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.985619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.985620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.985633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.985635 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.985636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.985637 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.985638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.985651 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.985653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:27.996588 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:27.996590 LLDP, length 82 [|LLDP] 12:33:27.996612 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:27.996613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0534 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:27.996615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:27.996615 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:27.996617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:27.996618 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.996619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:27.996620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.996648 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:27.996650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:27.996651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:27.996662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:27.996664 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.007597 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.007599 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.007600 LLDP, length 82 [|LLDP] 12:33:28.007639 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.007640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053c 9135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.007641 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.007642 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.007643 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.007644 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.007645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.007646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.007669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.007671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.007674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.007676 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.015855 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.015856 LLDP, length 82 [|LLDP] 12:33:28.015879 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.015880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0542 de02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.015882 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.015883 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.015884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.015885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.015898 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.015900 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.015901 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.015902 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.015903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.015927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.015929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.026865 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.026867 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.026867 LLDP, length 82 [|LLDP] 12:33:28.026904 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.026905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054b 4468 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.026906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.026907 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.026908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.026909 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.026911 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.026912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.026934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.026936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.026939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.026941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.035122 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.035123 LLDP, length 82 [|LLDP] 12:33:28.035145 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.035145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0551 9135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.035147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.035148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.035159 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.035161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.035162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.035164 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.035165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.035166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.035166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.035191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.035193 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.046133 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.046134 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.046136 LLDP, length 82 [|LLDP] 12:33:28.046170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.046171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0559 f79c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.046173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.046174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.046175 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.046176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.046177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.046190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.046192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.046193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.046205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.046207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.057142 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.057144 LLDP, length 82 [|LLDP] 12:33:28.057164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.057165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0562 5e0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.057166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.057168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.057169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.057170 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.057171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.057172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.057199 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.057201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.057202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.057213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.057215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.065414 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.065416 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.065417 LLDP, length 82 [|LLDP] 12:33:28.065453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.065454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0568 aacf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.065455 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.065456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.065457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.065470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.065471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.065472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.065474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.065475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.065488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.065490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.076411 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.076413 LLDP, length 82 [|LLDP] 12:33:28.076436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.076437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0571 1135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.076438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.076439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.076440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.076441 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.076442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.076443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.076470 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.076472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.076473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.076484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.076486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.087422 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.087424 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.087425 LLDP, length 82 [|LLDP] 12:33:28.087460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.087460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0579 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.087462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.087463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.087464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.087465 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.087466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.087467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.087489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.087491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.087494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.087496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.095678 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.095679 LLDP, length 82 [|LLDP] 12:33:28.095700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.095701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057f c46c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.095702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.095703 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.095704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.095705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.095718 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.095720 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.095721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.095722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.095723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.095745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.095747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.106687 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.106688 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.106689 LLDP, length 82 [|LLDP] 12:33:28.106724 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.106725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0588 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.106726 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.106728 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.106729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.106730 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.106731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.106732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.106754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.106756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.106759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.106761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.117700 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.117701 LLDP, length 82 [|LLDP] 12:33:28.117723 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.117724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0590 9135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.117725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.117726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.117738 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.117740 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.117741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.117742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.117743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.117744 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.117745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.117769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.117771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.125955 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.125957 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.125958 LLDP, length 82 [|LLDP] 12:33:28.125992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.125993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0596 de03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.125994 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.125995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.125996 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.125997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.125998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.126011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.126013 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.126014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.126025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.126027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.136966 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.136967 LLDP, length 82 [|LLDP] 12:33:28.136988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.136988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059f 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.136990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.136991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.136992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.136993 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.136994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.136995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.137021 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.137024 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.137025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.137035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.137037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.145223 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.145224 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.145225 LLDP, length 82 [|LLDP] 12:33:28.145259 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.145260 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a5 9136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.145262 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.145262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.145263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.145275 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.145277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.145278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.145278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.145280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.145293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.145295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.156235 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.156236 LLDP, length 82 [|LLDP] 12:33:28.156258 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.156259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ad f79c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.156260 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.156261 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.156262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.156263 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.156264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.156266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.156292 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.156293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.156294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.156306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.156308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.167244 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.167245 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.167246 LLDP, length 82 [|LLDP] 12:33:28.167280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.167281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b6 5e03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.167282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.167283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.167284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.167285 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.167286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.167287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.167309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.167311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.167314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.167316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.175502 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.175504 LLDP, length 82 [|LLDP] 12:33:28.175525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.175526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bc aad6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.175527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.175528 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.175540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.175542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.175556 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.175558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.175559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.175560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.175562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.175588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.175590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.186548 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.186550 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.186551 LLDP, length 82 [|LLDP] 12:33:28.186599 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.186600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c5 1136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.186602 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.186603 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.186604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.186605 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.186606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.186607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.186638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.186640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.186644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.186647 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.197535 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.197537 LLDP, length 82 [|LLDP] 12:33:28.197564 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.197565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05cd 779d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.197567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.197568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.197583 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.197585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.197586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.197587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.197588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.197589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.197591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.197621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.197623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.205784 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.205785 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.205786 LLDP, length 82 [|LLDP] 12:33:28.205823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.205824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d3 c46a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.205825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.205827 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.205828 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.205829 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.205830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.205843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.205845 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.205846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.205859 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.205860 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.216791 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.216792 LLDP, length 82 [|LLDP] 12:33:28.216814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.216814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05dc 2ad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.216816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.216817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.216818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.216819 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.216820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.216821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.216848 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.216850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.216851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.216863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.216865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.227800 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.227801 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.227802 LLDP, length 82 [|LLDP] 12:33:28.227836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.227837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e4 9136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.227839 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.227840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.227841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.227852 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.227854 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.227855 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.227856 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.227857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.227870 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.227872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.236059 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.236061 LLDP, length 82 [|LLDP] 12:33:28.236082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.236082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ea de03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.236084 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.236085 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.236086 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.236087 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.236088 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.236088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.236114 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.236116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.236117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.236128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.236130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.247070 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.247071 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.247073 LLDP, length 82 [|LLDP] 12:33:28.247107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.247108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f3 446a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.247110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.247111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.247112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.247113 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.247114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.247115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.247139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.247141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.247144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.247146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.255326 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.255328 LLDP, length 82 [|LLDP] 12:33:28.255358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.255359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f9 9136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.255360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.255361 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.255362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.255363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.255377 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.255379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.255380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.255381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.255382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.255405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.255407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.266339 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.266340 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.266341 LLDP, length 82 [|LLDP] 12:33:28.266376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.266377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0601 f79c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.266379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.266380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.266380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.266382 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.266382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.266384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.266406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.266408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.266412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.266413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.277347 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.277349 LLDP, length 82 [|LLDP] 12:33:28.277371 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.277371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060a 5e03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.277373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.277374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.277386 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.277388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.277389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.277390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.277391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.277392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.277393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.277418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.277420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.285606 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.285607 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.285608 LLDP, length 82 [|LLDP] 12:33:28.285644 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.285645 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0610 aad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.285646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.285647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.285648 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.285649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.285650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.285663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.285665 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.285666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.285678 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.285680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.296616 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.296618 LLDP, length 82 [|LLDP] 12:33:28.296640 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.296640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0619 1136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.296642 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.296643 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.296644 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.296645 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.296646 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.296647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.296674 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.296676 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.296677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.296689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.296692 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.307626 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.307628 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.307629 LLDP, length 82 [|LLDP] 12:33:28.307664 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.307665 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0621 77a3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.307666 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.307667 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.307668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.307680 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.307682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.307683 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.307684 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.307685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.307698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.307700 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.315886 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.315888 LLDP, length 82 [|LLDP] 12:33:28.315908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.315909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0627 c469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.315910 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.315912 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.315913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.315914 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.315915 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.315916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.315944 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.315946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.315947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.315958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.315960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.326893 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.326895 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.326896 LLDP, length 82 [|LLDP] 12:33:28.326930 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.326931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0630 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.326932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.326933 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.326934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.326935 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.326936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.326937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.326959 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.326960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.326963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.326965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.335151 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.335152 LLDP, length 82 [|LLDP] 12:33:28.335174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.335174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0636 779b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.335176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.335177 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.335178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.335179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.335193 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.335194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.335195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.335196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.335197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.335221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.335224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.346160 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.346162 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.346163 LLDP, length 82 [|LLDP] 12:33:28.346198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.346199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063e de04 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.346201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.346202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.346203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.346204 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.346205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.346206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.346228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.346230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.346233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.346235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.357172 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.357174 LLDP, length 82 [|LLDP] 12:33:28.357196 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.357197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0647 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.357199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.357200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.357211 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.357213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.357214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.357215 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.357216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.357217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.357218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.357243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.357245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.365432 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.365433 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.365434 LLDP, length 82 [|LLDP] 12:33:28.365469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.365470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064d 9135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.365471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.365472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.365473 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.365474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.365475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.365489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.365490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.365491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.365503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.365505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.376439 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.376441 LLDP, length 82 [|LLDP] 12:33:28.376461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.376462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0655 f79b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.376464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.376465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.376466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.376467 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.376468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.376469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.376495 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.376497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.376498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.376509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.376511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.387448 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.387450 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.387451 LLDP, length 82 [|LLDP] 12:33:28.387484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.387485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065e 5e02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.387487 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.387488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.387489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.387501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.387502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.387504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.387505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.387506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.387519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.387521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.395705 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.395706 LLDP, length 82 [|LLDP] 12:33:28.395726 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.395727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0664 aacf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.395728 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.395729 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.395730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.395731 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.395732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.395734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.395759 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.395761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.395762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.395773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.395775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.406716 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.406718 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.406719 LLDP, length 82 [|LLDP] 12:33:28.406752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.406753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066d 1135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.406755 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.406756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.406757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.406758 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.406759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.406760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.406782 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.406784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.406787 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.406789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.417726 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.417727 LLDP, length 82 [|LLDP] 12:33:28.417748 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.417749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0675 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.417751 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.417752 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.417753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.417754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.417768 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.417769 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.417771 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.417772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.417772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.417795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.417797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.425984 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.425986 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.425987 LLDP, length 82 [|LLDP] 12:33:28.426021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.426022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067b c470 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.426023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.426024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.426025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.426026 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.426027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.426029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.426051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.426053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.426056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.426057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.436995 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.436997 LLDP, length 82 [|LLDP] 12:33:28.437017 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.437018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0684 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.437020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.437021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.437033 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.437034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.437035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.437036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.437037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.437038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.437039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.437064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.437066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.445253 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.445254 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.445255 LLDP, length 82 [|LLDP] 12:33:28.445290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.445290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068a 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.445292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.445293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.445294 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.445295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.445296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.445309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.445310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.445311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.445323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.445325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.456265 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.456266 LLDP, length 82 [|LLDP] 12:33:28.456288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.456288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0692 de02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.456290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.456291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.456292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.456293 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.456294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.456295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.456334 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.456335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.456336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.456348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.456350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.467273 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.467274 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.467275 LLDP, length 82 [|LLDP] 12:33:28.467311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.467312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069b 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.467313 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.467314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.467315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.467327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.467329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.467330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.467331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.467333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.467356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.467358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.475531 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.475533 LLDP, length 82 [|LLDP] 12:33:28.475554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.475555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a1 9135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.475556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.475557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.475558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.475559 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.475560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.475561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.475588 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.475590 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.475591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.475602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.475604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.486543 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.486545 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.486546 LLDP, length 82 [|LLDP] 12:33:28.486580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.486581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a9 f79d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.486583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.486584 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.486585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.486586 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.486587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.486588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.486609 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.486611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.486614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.486616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.497551 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.497552 LLDP, length 82 [|LLDP] 12:33:28.497573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.497574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b2 5e03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.497575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.497576 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.497577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.497578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.497592 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.497594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.497595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.497596 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.497597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.497620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.497622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.505808 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.505810 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.505811 LLDP, length 82 [|LLDP] 12:33:28.505846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.505847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b8 aacf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.505848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.505849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.505850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.505851 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.505852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.505854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.505877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.505879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.505882 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.505884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.516817 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.516819 LLDP, length 82 [|LLDP] 12:33:28.516839 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.516840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c1 1136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.516841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.516842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.516853 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.516855 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.516856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.516857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.516858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.516858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.516860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.516885 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.516887 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.525078 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.525079 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.525080 LLDP, length 82 [|LLDP] 12:33:28.525114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.525115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c7 5e03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.525116 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.525117 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.525118 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.525119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.525120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.525134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.525136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.525137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.525149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.525151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.536103 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.536105 LLDP, length 82 [|LLDP] 12:33:28.536136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.536137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cf c469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.536138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.536139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.536140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.536141 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.536142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.536143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.536179 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.536181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.536182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.536194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.536196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.547103 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.547105 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.547106 LLDP, length 82 [|LLDP] 12:33:28.547149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.547150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d8 2ad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.547151 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.547152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.547153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.547166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.547168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.547169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.547170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.547171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.547184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.547186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.555365 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.555367 LLDP, length 82 [|LLDP] 12:33:28.555391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.555392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06de 779d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.555394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.555395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.555395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.555396 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.555397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.555398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.555428 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.555431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.555432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.555443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.555445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.566368 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.566370 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.566371 LLDP, length 82 [|LLDP] 12:33:28.566409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.566410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e6 de04 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.566412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.566413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.566414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.566415 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.566416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.566417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.566439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.566441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.566444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.566445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.577376 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.577378 LLDP, length 82 [|LLDP] 12:33:28.577399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.577399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ef 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.577401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.577402 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.577403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.577404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.577418 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.577419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.577420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.577421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.577422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.577445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.577447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.585633 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.585635 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.585636 LLDP, length 82 [|LLDP] 12:33:28.585672 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.585672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f5 9136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.585674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.585675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.585676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.585677 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.585678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.585679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.585701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.585703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.585706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.585707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.596645 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.596646 LLDP, length 82 [|LLDP] 12:33:28.596667 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.596669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fd f79d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.596670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.596671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.596683 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.596685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.596686 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.596687 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.596688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.596689 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.596690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.596713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.596715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.607666 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.607668 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.607675 LLDP, length 82 [|LLDP] 12:33:28.607714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.607715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0706 5e04 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.607717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.607718 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.607718 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.607719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.607720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.607735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.607737 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.607738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.607751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.607753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.615919 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.615921 LLDP, length 82 [|LLDP] 12:33:28.615944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.615945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070c aad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.615946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.615947 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.615948 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.615949 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.615951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.615952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.615983 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.615985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.615986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.615998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.616000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.626922 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.626923 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.626924 LLDP, length 82 [|LLDP] 12:33:28.626960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.626960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0715 1137 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.626962 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.626963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.626964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.626976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.626978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.626979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.626981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.626982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.626994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.626997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.635180 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.635182 LLDP, length 82 [|LLDP] 12:33:28.635202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.635203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071b 5e03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.635205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.635206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.635207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.635208 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.635209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.635210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.635237 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.635239 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.635240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.635251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.635254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.646206 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.646208 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.646208 LLDP, length 82 [|LLDP] 12:33:28.646248 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.646249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0723 c469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.646251 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.646252 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.646253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.646254 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.646255 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.646256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.646279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.646281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.646284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.646286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.657208 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.657210 LLDP, length 82 [|LLDP] 12:33:28.657238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.657239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072c 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.657241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.657242 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.657243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.657244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.657260 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.657262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.657263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.657264 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.657265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.657294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.657296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.665470 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.665472 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.665473 LLDP, length 82 [|LLDP] 12:33:28.665511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.665512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0732 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.665514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.665515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.665516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.665517 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.665518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.665519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.665543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.665545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.665548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.665550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.676481 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.676483 LLDP, length 82 [|LLDP] 12:33:28.676512 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.676513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073a de09 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.676514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.676515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.676532 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.676534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.676535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.676536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.676537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.676538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.676539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.676570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.676572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.687482 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.687483 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.687484 LLDP, length 82 [|LLDP] 12:33:28.687523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.687524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0743 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.687525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.687526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.687527 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.687528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.687529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.687544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.687545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.687547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.687558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.687560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.695736 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.695738 LLDP, length 82 [|LLDP] 12:33:28.695759 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.695760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0749 9135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.695762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.695763 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.695763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.695765 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.695766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.695766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.695793 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.695795 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.695796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.695807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.695809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.706746 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.706747 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.706748 LLDP, length 82 [|LLDP] 12:33:28.706782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.706783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0751 f79b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.706784 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.706785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.706786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.706798 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.706800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.706801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.706802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.706803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.706816 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.706818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.717762 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.717764 LLDP, length 82 [|LLDP] 12:33:28.717790 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.717791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075a 5e02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.717792 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.717793 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.717794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.717795 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.717796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.717797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.717829 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.717831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.717832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.717844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.717845 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.726015 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.726017 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.726017 LLDP, length 82 [|LLDP] 12:33:28.726054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.726056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0760 aacf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.726057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.726058 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.726059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.726060 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.726061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.726062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.726084 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.726086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.726089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.726091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.737024 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.737026 LLDP, length 82 [|LLDP] 12:33:28.737047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.737048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0769 1135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.737049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.737050 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.737051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.737052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.737065 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.737067 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.737068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.737069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.737071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.737093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.737095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.745283 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.745284 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.745285 LLDP, length 82 [|LLDP] 12:33:28.745318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.745319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076f 5e02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.745321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.745322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.745323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.745324 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.745325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.745326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.745348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.745350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.745353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.745355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.756291 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.756293 LLDP, length 82 [|LLDP] 12:33:28.756314 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.756315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0777 c468 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.756316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.756317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.756328 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.756330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.756331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.756332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.756333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.756334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.756335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.756359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.756362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.767302 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.767303 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.767304 LLDP, length 82 [|LLDP] 12:33:28.767346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.767347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0780 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.767348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.767349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.767350 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.767351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.767352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.767366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.767368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.767369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.767383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.767385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.775578 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.775579 LLDP, length 82 [|LLDP] 12:33:28.775608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.775609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0786 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.775611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.775612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.775613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.775614 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.775615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.775616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.775653 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.775656 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.775657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.775669 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.775671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.786579 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.786580 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.786581 LLDP, length 82 [|LLDP] 12:33:28.786624 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.786625 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078e de03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.786627 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.786628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.786629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.786643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.786645 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.786646 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.786647 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.786648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.786662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.786664 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.797592 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.797594 LLDP, length 82 [|LLDP] 12:33:28.797621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.797622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0797 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.797623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.797624 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.797625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.797626 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.797628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.797629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.797662 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.797664 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.797665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.797677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.797680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.805849 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.805851 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.805852 LLDP, length 82 [|LLDP] 12:33:28.805895 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.805895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079d 9135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.805897 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.805898 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.805899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.805900 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.805901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.805902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.805926 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.805929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.805932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.805934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.816857 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.816858 LLDP, length 82 [|LLDP] 12:33:28.816886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.816887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a5 f79c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.816888 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.816889 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.816890 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.816891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.816906 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.816908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.816909 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.816910 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.816911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.816938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.816941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.825114 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.825116 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.825117 LLDP, length 82 [|LLDP] 12:33:28.825161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.825163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ac 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.825164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.825165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.825166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.825167 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.825168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.825169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.825194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.825196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.825199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.825201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.836124 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.836126 LLDP, length 82 [|LLDP] 12:33:28.836151 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.836152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b4 aad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.836153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.836155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.836170 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.836171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.836172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.836173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.836174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.836175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.836176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.836206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.836208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.847135 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.847136 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.847137 LLDP, length 82 [|LLDP] 12:33:28.847178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.847179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bd 1136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.847180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.847181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.847182 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.847183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.847184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.847200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.847202 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.847203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.847216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.847218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.855400 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.855402 LLDP, length 82 [|LLDP] 12:33:28.855427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.855428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c3 5e03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.855430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.855431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.855432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.855433 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.855434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.855435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.855469 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.855471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.855473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.855485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.855487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.866403 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.866404 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.866405 LLDP, length 82 [|LLDP] 12:33:28.866441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.866442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07cb c469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.866444 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.866444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.866446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.866459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.866461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.866462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.866464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.866465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.866479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.866481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.877414 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.877416 LLDP, length 82 [|LLDP] 12:33:28.877441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.877441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d4 2ad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.877443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.877444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.877445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.877446 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.877448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.877449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.877481 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.877483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.877485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.877497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.877499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.885672 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.885674 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.885675 LLDP, length 82 [|LLDP] 12:33:28.885718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.885719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07da 779d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.885721 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.885722 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.885723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.885724 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.885725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.885726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.885750 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.885752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.885755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.885757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.896681 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.896683 LLDP, length 82 [|LLDP] 12:33:28.896709 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.896710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e2 de03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.896712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.896713 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.896714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.896715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.896730 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.896732 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.896733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.896734 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.896735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.896762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.896764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.907697 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.907699 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.907700 LLDP, length 82 [|LLDP] 12:33:28.907743 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.907744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07eb 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.907745 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.907746 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.907747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.907748 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.907749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.907750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.907774 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.907776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.907779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.907781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.915948 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.915950 LLDP, length 82 [|LLDP] 12:33:28.915975 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.915976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f1 9136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.915978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.915979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.915993 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.915995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.915996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.915997 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.915998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.915999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.916001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.916029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.916031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.926957 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.926959 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.926960 LLDP, length 82 [|LLDP] 12:33:28.927003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.927004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f9 f7a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.927005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.927006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.927007 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.927008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.927009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.927025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.927027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.927028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.927041 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.927043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.935215 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.935217 LLDP, length 82 [|LLDP] 12:33:28.935243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.935243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0800 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.935245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.935246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.935247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.935248 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.935249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.935250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.935282 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.935284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.935285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.935297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.935299 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.946230 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.946232 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.946239 LLDP, length 82 [|LLDP] 12:33:28.946282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.946283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0808 aad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.946285 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.946286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.946287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.946302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.946304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.946305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.946306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.946307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.946321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.946323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.957241 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.957243 LLDP, length 82 [|LLDP] 12:33:28.957271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.957272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0811 1136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.957273 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.957274 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.957275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.957277 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.957278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.957279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.957313 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.957315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.957316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.957328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.957330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.965497 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.965498 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.965499 LLDP, length 82 [|LLDP] 12:33:28.965536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.965536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0817 5e09 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.965538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.965539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.965540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.965541 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.965543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.965544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.965568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.965570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.965573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.965575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.976508 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.976509 LLDP, length 82 [|LLDP] 12:33:28.976530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.976531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081f c46a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.976532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.976533 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.976534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.976535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.976552 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.976554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.976555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.976556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.976557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.976586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.976588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.987517 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.987519 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.987520 LLDP, length 82 [|LLDP] 12:33:28.987564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.987564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0828 2ad0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.987566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.987567 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.987568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.987569 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.987570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.987571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.987597 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.987599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.987602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.987604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:28.995774 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:28.995775 LLDP, length 82 [|LLDP] 12:33:28.995801 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.995802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082e 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:28.995803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:28.995804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.995819 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:28.995821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:28.995822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:28.995823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:28.995824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:28.995825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:28.995826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:28.995854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:28.995857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.006783 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.006785 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.006786 LLDP, length 82 [|LLDP] 12:33:29.006828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.006829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0836 de03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.006830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.006831 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.006832 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.006833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.006835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.006850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.006852 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.006853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.006866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.006868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.017793 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.017794 LLDP, length 82 [|LLDP] 12:33:29.017819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.017820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083f 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.017822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.017823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.017824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.017825 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.017826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.017827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.017861 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.017863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.017864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.017877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.017879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.026051 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.026053 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.026054 LLDP, length 82 [|LLDP] 12:33:29.026098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.026100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0845 9136 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.026101 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.026102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.026103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.026117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.026119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.026120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.026121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.026122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.026136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.026138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.037060 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.037062 LLDP, length 82 [|LLDP] 12:33:29.037088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.037089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084d f79c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.037090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.037091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.037092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.037093 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.037094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.037109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.037145 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.037147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.037148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.037160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.037162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.045347 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.045357 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.045358 LLDP, length 82 [|LLDP] 12:33:29.045406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.045407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0854 446f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.045409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.045410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.045411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.045412 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.045413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.045415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.045445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.045447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.045451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.045453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.056339 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.056340 LLDP, length 82 [|LLDP] 12:33:29.056362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.056363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085c aacf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.056364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.056365 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.056366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.056367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.056384 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.056386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.056387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.056389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.056390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.056420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.056422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.067349 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.067351 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.067352 LLDP, length 82 [|LLDP] 12:33:29.067397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.067398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0865 1135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.067399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.067400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.067401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.067402 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.067403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.067404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.067429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.067432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.067435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.067437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.075600 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.075602 LLDP, length 82 [|LLDP] 12:33:29.075620 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.075621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086b 5e02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.075622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.075623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.075638 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.075639 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.075640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.075641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.075642 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.075644 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.075645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.075674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.075677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.086609 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.086611 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.086612 LLDP, length 82 [|LLDP] 12:33:29.086654 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.086655 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0873 c468 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.086657 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.086658 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.086659 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.086660 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.086661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.086676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.086678 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.086679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.086692 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.086694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.097620 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.097622 LLDP, length 82 [|LLDP] 12:33:29.097650 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.097651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087c 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.097652 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.097653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.097654 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.097655 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.097656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.097657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.097691 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.097694 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.097695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.097707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.097709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.105886 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.105888 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.105889 LLDP, length 82 [|LLDP] 12:33:29.105928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.105929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0882 779c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.105931 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.105932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.105933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.105947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.105948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.105949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.105950 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.105951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.105966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.105968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.116883 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.116885 LLDP, length 82 [|LLDP] 12:33:29.116909 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.116910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088a de02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.116912 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.116913 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.116914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.116915 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.116916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.116917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.116949 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.116951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.116952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.116965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.116967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.125141 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.125143 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.125144 LLDP, length 82 [|LLDP] 12:33:29.125184 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.125185 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0891 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.125186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.125187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.125188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.125190 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.125190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.125191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.125216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.125218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.125221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.125223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.136152 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.136154 LLDP, length 82 [|LLDP] 12:33:29.136178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.136178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0899 9135 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.136180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.136181 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.136182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.136183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.136200 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.136201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.136203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.136204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.136205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.136231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.136233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.147161 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.147163 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.147164 LLDP, length 82 [|LLDP] 12:33:29.147205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.147206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a1 f79c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.147207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.147209 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.147209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.147210 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.147211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.147212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.147237 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.147239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.147242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.147244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.155421 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.155423 LLDP, length 82 [|LLDP] 12:33:29.155448 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.155448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a8 4469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.155450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.155451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.155465 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.155466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.155467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.155469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.155470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.155471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.155472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.155500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.155503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.166428 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.166430 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.166431 LLDP, length 82 [|LLDP] 12:33:29.166470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.166471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b0 aacf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.166472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.166473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.166475 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.166476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.166477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.166491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.166493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.166494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.166506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.166508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.177439 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.177440 LLDP, length 82 [|LLDP] 12:33:29.177463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.177464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b9 113d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.177465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.177466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.177467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.177468 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.177469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.177470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.177500 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.177502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.177503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.177515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.177517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.185695 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.185696 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.185697 LLDP, length 82 [|LLDP] 12:33:29.185736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.185737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bf 5e02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.185739 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.185740 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.185741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.185754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.185756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.185757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.185758 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.185759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.185773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.185775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.196706 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.196708 LLDP, length 82 [|LLDP] 12:33:29.196732 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.196733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c7 c469 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.196734 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.196735 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.196736 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.196737 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.196738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.196739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.196773 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.196775 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.196776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.196787 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.196789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.207716 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.207717 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.207718 LLDP, length 82 [|LLDP] 12:33:29.207759 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.207760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d0 2acf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.207762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.207763 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.207764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.207765 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.207766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.207767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.207792 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.207794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.207797 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.207799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.215975 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.215977 LLDP, length 82 [|LLDP] 12:33:29.216001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.216002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d6 77a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.216003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.216004 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.216005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.216006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.216021 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.216023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.216024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.216025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.216026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.216051 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.216053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.226985 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.226987 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.226988 LLDP, length 82 [|LLDP] 12:33:29.227029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.227030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08de de24 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.227031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.227032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.227033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.227034 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.227035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.227036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.227060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.227062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.227066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.227068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.235243 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.235245 LLDP, length 82 [|LLDP] 12:33:29.235269 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.235270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e5 2af1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.235272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.235273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.235287 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.235289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.235290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.235291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.235292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.235293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.235294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.235324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.235326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.246253 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.246255 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.246256 LLDP, length 82 [|LLDP] 12:33:29.246305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.246306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ed 9157 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.246307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.246308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.246309 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.246310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.246311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.246327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.246328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.246329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.246342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.246344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.257264 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.257266 LLDP, length 82 [|LLDP] 12:33:29.257291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.257292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f5 f7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.257293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.257294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.257295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.257296 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.257298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.257299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.257331 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.257333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.257335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.257346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.257348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.265523 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.265525 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.265526 LLDP, length 82 [|LLDP] 12:33:29.265567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.265568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fc 448b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.265569 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.265570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.265571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.265584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.265586 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.265587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.265588 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.265589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.265603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.265606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.276534 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.276536 LLDP, length 82 [|LLDP] 12:33:29.276561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.276561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0904 aaf1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.276563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.276564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.276565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.276566 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.276567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.276568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.276599 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.276601 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.276602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.276613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.276615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.287543 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.287544 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.287546 LLDP, length 82 [|LLDP] 12:33:29.287588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.287589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090d 1158 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.287590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.287591 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.287593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.287594 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.287595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.287596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.287619 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.287621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.287624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.287626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.295800 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.295802 LLDP, length 82 [|LLDP] 12:33:29.295826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.295827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0913 5e25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.295829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.295830 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.295831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.295832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.295847 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.295849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.295850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.295851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.295852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.295880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.295882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.306813 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.306815 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.306816 LLDP, length 82 [|LLDP] 12:33:29.306858 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.306859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091b c48c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.306860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.306861 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.306862 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.306863 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.306864 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.306865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.306889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.306890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.306894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.306896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.315068 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.315069 LLDP, length 82 [|LLDP] 12:33:29.315094 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.315095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0922 1158 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.315096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.315097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.315110 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.315112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.315113 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.315114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.315115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.315116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.315117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.315144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.315146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.326077 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.326078 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.326079 LLDP, length 82 [|LLDP] 12:33:29.326119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.326120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092a 77be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.326122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.326123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.326124 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.326125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.326126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.326141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.326143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.326144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.326157 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.326159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.337094 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.337096 LLDP, length 82 [|LLDP] 12:33:29.337120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.337121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0932 de25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.337123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.337124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.337125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.337126 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.337127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.337128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.337160 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.337162 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.337163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.337175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.337177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.345346 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.345347 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.345348 LLDP, length 82 [|LLDP] 12:33:29.345390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.345391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0939 2af2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.345392 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.345393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.345394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.345408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.345409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.345410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.345411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.345412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.345427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.345429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.356356 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.356358 LLDP, length 82 [|LLDP] 12:33:29.356382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.356382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0941 9158 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.356384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.356385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.356386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.356387 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.356388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.356389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.356419 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.356421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.356422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.356434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.356436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.367373 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.367375 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.367376 LLDP, length 82 [|LLDP] 12:33:29.367415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.367416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0949 f7be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.367417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.367418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.367419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.367420 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.367421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.367422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.367446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.367448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.367451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.367453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.375624 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.375626 LLDP, length 82 [|LLDP] 12:33:29.375649 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.375650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0950 448a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.375651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.375652 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.375653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.375655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.375669 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.375671 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.375672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.375673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.375674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.375700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.375702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.386636 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.386638 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.386639 LLDP, length 82 [|LLDP] 12:33:29.386677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.386678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0958 aaf7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.386679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.386680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.386681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.386682 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.386683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.386685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.386708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.386710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.386713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.386715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.397642 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.397643 LLDP, length 82 [|LLDP] 12:33:29.397667 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.397668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0961 1157 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.397669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.397670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.397684 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.397685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.397687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.397688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.397689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.397690 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.397691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.397718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.397720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.405901 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.405903 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.405904 LLDP, length 82 [|LLDP] 12:33:29.405942 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.405943 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0967 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.405944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.405946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.405947 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.405948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.405948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.405962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.405964 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.405965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.405978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.405980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.416912 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.416913 LLDP, length 82 [|LLDP] 12:33:29.416937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.416937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096f c4ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.416939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.416940 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.416941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.416942 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.416943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.416944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.416974 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.416976 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.416977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.416989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.416991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.425168 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.425170 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.425171 LLDP, length 82 [|LLDP] 12:33:29.425209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.425210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0976 117f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.425212 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.425213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.425214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.425227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.425228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.425229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.425230 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.425231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.425245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.425247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.436178 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.436180 LLDP, length 82 [|LLDP] 12:33:29.436204 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.436205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097e 77de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.436206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.436207 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.436208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.436209 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.436210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.436211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.436240 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.436242 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.436243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.436255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.436256 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.447189 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.447190 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.447191 LLDP, length 82 [|LLDP] 12:33:29.447230 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.447230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0986 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.447232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.447233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.447234 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.447235 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.447236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.447237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.447260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.447262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.447265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.447267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.455450 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.455452 LLDP, length 82 [|LLDP] 12:33:29.455475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.455476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098d 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.455477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.455478 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.455480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.455481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.455513 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.455515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.455516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.455518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.455519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.455540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.455542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.466472 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.466474 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.466475 LLDP, length 82 [|LLDP] 12:33:29.466516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.466517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0995 9178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.466518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.466519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.466520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.466521 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.466522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.466523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.466549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.466551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.466554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.466556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.477472 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.477473 LLDP, length 82 [|LLDP] 12:33:29.477498 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.477498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099d f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.477500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.477501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.477515 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.477517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.477518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.477519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.477520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.477521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.477523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.477551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.477553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.485729 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.485730 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.485731 LLDP, length 82 [|LLDP] 12:33:29.485771 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.485772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a4 44ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.485773 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.485775 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.485776 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.485777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.485778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.485793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.485795 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.485796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.485808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.485810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.496746 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.496748 LLDP, length 82 [|LLDP] 12:33:29.496776 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.496777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ac ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.496779 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.496779 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.496781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.496782 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.496783 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.496784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.496821 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.496823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.496824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.496837 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.496839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.507751 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.507753 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.507754 LLDP, length 82 [|LLDP] 12:33:29.507799 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.507800 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b5 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.507802 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.507803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.507804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.507819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.507820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.507821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.507823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.507824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.507838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.507840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.516006 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.516008 LLDP, length 82 [|LLDP] 12:33:29.516032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.516033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09bb 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.516034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.516035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.516036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.516037 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.516038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.516039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.516071 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.516073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.516074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.516086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.516088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.527021 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.527023 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.527030 LLDP, length 82 [|LLDP] 12:33:29.527072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.527073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c3 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.527074 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.527075 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.527077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.527078 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.527079 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.527080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.527106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.527108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.527111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.527113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.535280 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.535282 LLDP, length 82 [|LLDP] 12:33:29.535312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.535312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ca 1178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.535314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.535315 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.535316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.535317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.535346 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.535347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.535349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.535350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.535351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.535382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.535385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.546290 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.546291 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.546300 LLDP, length 82 [|LLDP] 12:33:29.546339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.546340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d2 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.546342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.546343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.546344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.546346 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.546346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.546347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.546373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.546375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.546378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.546380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.557295 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.557297 LLDP, length 82 [|LLDP] 12:33:29.557321 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.557322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09da de4d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.557323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.557324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.557338 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.557340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.557341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.557342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.557343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.557344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.557345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.557374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.557376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.565554 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.565556 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.565557 LLDP, length 82 [|LLDP] 12:33:29.565597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.565598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e1 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.565600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.565601 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.565602 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.565603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.565604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.565619 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.565621 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.565622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.565635 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.565637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.576564 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.576565 LLDP, length 82 [|LLDP] 12:33:29.576590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.576591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e9 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.576593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.576594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.576595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.576596 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.576597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.576598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.576632 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.576634 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.576635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.576647 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.576649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.587574 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.587575 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.587576 LLDP, length 82 [|LLDP] 12:33:29.587616 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.587617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f1 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.587619 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.587620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.587621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.587634 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.587636 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.587637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.587638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.587639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.587653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.587656 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.595829 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.595830 LLDP, length 82 [|LLDP] 12:33:29.595855 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.595856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f8 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.595857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.595858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.595859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.595860 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.595861 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.595862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.595894 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.595897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.595898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.595911 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.595913 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.606850 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.606852 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.606859 LLDP, length 82 [|LLDP] 12:33:29.606902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.606903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a00 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.606904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.606905 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.606906 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.606907 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.606908 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.606909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.606935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.606937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.606940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.606942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.615103 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.615105 LLDP, length 82 [|LLDP] 12:33:29.615131 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.615132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a06 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.615134 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.615135 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.615136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.615137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.615154 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.615156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.615157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.615158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.615159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.615187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.615189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.626110 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.626112 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.626113 LLDP, length 82 [|LLDP] 12:33:29.626153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.626154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0f 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.626156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.626157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.626158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.626159 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.626160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.626161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.626186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.626188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.626191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.626193 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.637120 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.637122 LLDP, length 82 [|LLDP] 12:33:29.637147 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.637148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a17 c4ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.637149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.637150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.637164 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.637166 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.637167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.637168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.637169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.637170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.637171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.637199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.637201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.645375 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.645377 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.645378 LLDP, length 82 [|LLDP] 12:33:29.645419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.645419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1e 117a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.645421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.645422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.645423 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.645424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.645425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.645440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.645442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.645443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.645456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.645458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.656389 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.656390 LLDP, length 82 [|LLDP] 12:33:29.656409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.656409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a26 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.656411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.656412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.656413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.656414 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.656415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.656416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.656449 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.656451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.656452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.656464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.656466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.667419 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.667421 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.667422 LLDP, length 82 [|LLDP] 12:33:29.667465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.667466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2e de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.667467 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.667469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.667470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.667483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.667485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.667486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.667487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.667488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.667502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.667504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.675656 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.675658 LLDP, length 82 [|LLDP] 12:33:29.675683 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.675684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a35 2b1a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.675686 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.675687 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.675688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.675689 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.675690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.675691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.675726 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.675729 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.675730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.675742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.675744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.686666 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.686667 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.686668 LLDP, length 82 [|LLDP] 12:33:29.686711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.686712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3d 917a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.686713 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.686714 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.686716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.686716 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.686717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.686719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.686743 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.686745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.686748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.686750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.697676 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.697678 LLDP, length 82 [|LLDP] 12:33:29.697702 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.697703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a45 f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.697704 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.697705 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.697706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.697707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.697723 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.697725 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.697726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.697727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.697727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.697754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.697756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.705930 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.705932 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.705933 LLDP, length 82 [|LLDP] 12:33:29.705973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.705974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4c 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.705976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.705977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.705978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.705979 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.705980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.705981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.706005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.706007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.706011 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.706013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.716943 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.716945 LLDP, length 82 [|LLDP] 12:33:29.716969 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.716970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a54 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.716972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.716973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.716987 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.716988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.716990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.716991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.716992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.716993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.716994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.717023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.717025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.725199 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.725201 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.725202 LLDP, length 82 [|LLDP] 12:33:29.725241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.725241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5a f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.725243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.725245 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.725246 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.725247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.725248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.725263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.725265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.725266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.725279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.725281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.736210 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.736211 LLDP, length 82 [|LLDP] 12:33:29.736235 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.736236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a63 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.736237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.736238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.736239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.736240 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.736242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.736243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.736274 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.736276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.736277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.736289 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.736291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.747244 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.747252 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.747253 LLDP, length 82 [|LLDP] 12:33:29.747305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.747306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6b c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.747307 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.747308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.747310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.747327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.747328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.747329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.747330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.747331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.747365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.747367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.755492 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.755494 LLDP, length 82 [|LLDP] 12:33:29.755528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.755528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a72 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.755530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.755531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.755532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.755533 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.755534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.755535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.755581 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.755583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.755585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.755598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.755601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.766508 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.766516 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.766517 LLDP, length 82 [|LLDP] 12:33:29.766568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.766569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7a 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.766570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.766571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.766572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.766573 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.766574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.766576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.766604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.766607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.766610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.766612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.777502 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.777503 LLDP, length 82 [|LLDP] 12:33:29.777529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.777530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a82 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.777531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.777532 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.777533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.777534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.777552 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.777553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.777555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.777556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.777557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.777586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.777588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.785759 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.785761 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.785762 LLDP, length 82 [|LLDP] 12:33:29.785805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.785806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a89 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.785808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.785809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.785810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.785811 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.785812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.785813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.785837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.785839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.785842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.785844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.796821 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.796823 LLDP, length 82 [|LLDP] 12:33:29.796864 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.796865 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a91 9178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.796867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.796868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.796896 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.796899 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.796900 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.796902 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.796903 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.796904 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.796905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.796956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.796958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.805088 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.805092 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.805093 LLDP, length 82 [|LLDP] 12:33:29.805174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.805174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a97 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.805176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.805178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.805179 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.805180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.805181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.805206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.805209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.805210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.805225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.805227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.816083 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.816086 LLDP, length 82 [|LLDP] 12:33:29.816126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.816127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa0 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.816129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.816130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.816131 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.816132 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.816133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.816134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.816202 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.816205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.816206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.816221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.816223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.827098 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.827101 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.827102 LLDP, length 82 [|LLDP] 12:33:29.827182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.827183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa8 ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.827185 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.827186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.827187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.827210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.827213 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.827214 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.827215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.827216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.827233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.827236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.835381 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.835384 LLDP, length 82 [|LLDP] 12:33:29.835426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.835427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aae f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.835428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.835429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.835430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.835431 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.835432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.835434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.835501 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.835504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.835505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.835519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.835521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.846375 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.846378 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.846379 LLDP, length 82 [|LLDP] 12:33:29.846458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.846459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab7 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.846461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.846463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.846464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.846465 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.846465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.846467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.846502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.846504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.846509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.846511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.857380 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.857383 LLDP, length 82 [|LLDP] 12:33:29.857425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.857426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abf c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.857428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.857429 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.857431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.857432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.857465 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.857467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.857469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.857470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.857471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.857524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.857526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.865633 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.865636 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.865638 LLDP, length 82 [|LLDP] 12:33:29.865713 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.865714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac6 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.865716 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.865717 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.865718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.865719 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.865720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.865721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.865756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.865758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.865763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.865765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.876598 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.876600 LLDP, length 82 [|LLDP] 12:33:29.876628 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.876629 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ace 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.876630 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.876631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.876645 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.876647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.876648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.876649 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.876650 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.876651 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.876652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.876683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.876685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.887602 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.887604 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.887605 LLDP, length 82 [|LLDP] 12:33:29.887646 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.887647 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad6 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.887648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.887650 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.887651 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.887652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.887653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.887668 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.887669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.887671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.887684 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.887686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.895857 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.895859 LLDP, length 82 [|LLDP] 12:33:29.895877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.895877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0add 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.895879 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.895880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.895881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.895882 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.895883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.895884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.895916 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.895918 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.895932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.895947 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.895949 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.906896 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.906904 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.906905 LLDP, length 82 [|LLDP] 12:33:29.906954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.906955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae5 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.906957 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.906958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.906959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.906983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.906985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.906987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.906988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.906989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.907005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.907008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.915142 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.915151 LLDP, length 82 [|LLDP] 12:33:29.915175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.915176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aeb de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.915177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.915178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.915179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.915180 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.915181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.915182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.915222 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.915224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.915225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.915238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.915240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.926144 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.926146 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.926153 LLDP, length 82 [|LLDP] 12:33:29.926194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.926194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af4 44b3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.926196 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.926197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.926198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.926199 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.926200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.926201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.926227 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.926229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.926233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.926234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.937148 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.937150 LLDP, length 82 [|LLDP] 12:33:29.937177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.937178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afc ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.937180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.937181 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.937182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.937183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.937199 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.937201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.937202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.937203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.937204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.937233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.937235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.945406 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.945408 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.945409 LLDP, length 82 [|LLDP] 12:33:29.945452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.945453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b02 f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.945454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.945455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.945456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.945457 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.945458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.945459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.945485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.945487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.945490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.945492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.956420 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.956423 LLDP, length 82 [|LLDP] 12:33:29.956449 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.956450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0b 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.956452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.956453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.956467 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.956469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.956470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.956471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.956472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.956473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.956474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.956504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.956506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.967428 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.967430 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.967438 LLDP, length 82 [|LLDP] 12:33:29.967477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.967478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b13 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.967479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.967481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.967482 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.967483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.967484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.967499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.967501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.967502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.967515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.967517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.975687 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.975689 LLDP, length 82 [|LLDP] 12:33:29.975714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.975715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1a 117a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.975717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.975718 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.975719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.975720 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.975721 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.975722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.975756 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.975759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.975760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.975782 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.975784 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.986696 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.986697 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.986705 LLDP, length 82 [|LLDP] 12:33:29.986742 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.986743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b22 77e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.986744 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.986745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.986746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.986761 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.986763 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.986764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.986765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.986766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.986780 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.986782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:29.997705 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:29.997707 LLDP, length 82 [|LLDP] 12:33:29.997733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:29.997734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2a de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:29.997735 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:29.997736 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:29.997737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:29.997738 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.997739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:29.997740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.997774 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:29.997776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:29.997777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:29.997789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:29.997792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.005965 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.005967 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.005968 LLDP, length 82 [|LLDP] 12:33:30.006010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.006012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b31 2b14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.006013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.006014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.006015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.006016 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.006017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.006018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.006044 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.006046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.006050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.006052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.016974 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.016976 LLDP, length 82 [|LLDP] 12:33:30.017002 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.017003 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b39 917a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.017004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.017005 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.017006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.017007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.017023 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.017025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.017026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.017027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.017028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.017056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.017058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.025231 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.025233 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.025234 LLDP, length 82 [|LLDP] 12:33:30.025279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.025280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3f de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.025281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.025283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.025284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.025285 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.025286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.025287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.025312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.025314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.025317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.025319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.036242 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.036244 LLDP, length 82 [|LLDP] 12:33:30.036271 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.036271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b48 44ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.036273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.036274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.036289 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.036290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.036292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.036293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.036293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.036294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.036296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.036325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.036327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.047251 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.047253 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.047254 LLDP, length 82 [|LLDP] 12:33:30.047297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.047298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b50 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.047299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.047301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.047301 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.047303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.047304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.047319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.047321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.047322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.047346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.047349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.055509 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.055511 LLDP, length 82 [|LLDP] 12:33:30.055536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.055537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b56 f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.055539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.055540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.055541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.055542 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.055543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.055544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.055578 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.055581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.055582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.055594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.055596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.066521 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.066523 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.066524 LLDP, length 82 [|LLDP] 12:33:30.066566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.066567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5f 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.066568 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.066569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.066570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.066584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.066586 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.066587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.066588 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.066589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.066603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.066605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.077532 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.077534 LLDP, length 82 [|LLDP] 12:33:30.077559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.077559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b67 c4ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.077561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.077562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.077563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.077564 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.077565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.077566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.077597 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.077599 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.077601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.077613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.077615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.085788 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.085790 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.085791 LLDP, length 82 [|LLDP] 12:33:30.085833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.085834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6e 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.085835 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.085836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.085837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.085838 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.085840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.085841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.085866 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.085868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.085871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.085873 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.096797 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.096799 LLDP, length 82 [|LLDP] 12:33:30.096824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.096825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b76 77e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.096826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.096828 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.096829 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.096830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.096845 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.096846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.096848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.096849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.096850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.096877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.096879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.105050 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.105052 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.105053 LLDP, length 82 [|LLDP] 12:33:30.105094 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.105095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7c c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.105096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.105098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.105099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.105100 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.105101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.105102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.105125 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.105127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.105130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.105133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.116064 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.116066 LLDP, length 82 [|LLDP] 12:33:30.116090 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.116091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b85 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.116092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.116094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.116107 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.116109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.116110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.116111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.116112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.116113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.116114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.116142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.116144 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.127072 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.127075 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.127076 LLDP, length 82 [|LLDP] 12:33:30.127115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.127116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8d 9178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.127117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.127118 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.127119 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.127120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.127121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.127136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.127138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.127139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.127151 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.127153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.135332 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.135333 LLDP, length 82 [|LLDP] 12:33:30.135361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.135362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b93 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.135363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.135364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.135366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.135367 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.135368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.135369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.135401 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.135404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.135405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.135417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.135419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.146343 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.146345 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.146346 LLDP, length 82 [|LLDP] 12:33:30.146385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.146386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9c 44ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.146388 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.146389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.146390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.146404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.146406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.146407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.146408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.146409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.146423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.146425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.157351 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.157353 LLDP, length 82 [|LLDP] 12:33:30.157377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.157378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba4 ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.157379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.157380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.157381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.157382 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.157383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.157384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.157416 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.157418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.157419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.157431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.157433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.165610 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.165612 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.165613 LLDP, length 82 [|LLDP] 12:33:30.165652 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.165653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0baa f7de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.165655 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.165656 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.165657 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.165658 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.165659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.165660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.165684 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.165686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.165690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.165691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.176621 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.176623 LLDP, length 82 [|LLDP] 12:33:30.176649 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.176650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb3 5e4c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.176651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.176652 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.176653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.176654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.176669 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.176671 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.176672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.176673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.176674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.176702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.176704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.187630 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.187632 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.187633 LLDP, length 82 [|LLDP] 12:33:30.187673 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.187674 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbb c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.187676 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.187677 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.187678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.187679 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.187680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.187681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.187706 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.187707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.187710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.187713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.195877 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.195879 LLDP, length 82 [|LLDP] 12:33:30.195896 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.195897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc2 1178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.195898 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.195900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.195913 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.195922 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.195923 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.195924 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.206898 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.206900 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.206901 LLDP, length 82 [|LLDP] 12:33:30.206941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.206942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bca 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.206943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.206944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.206945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.206946 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.206947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.206948 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.206949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.206975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.206976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.206979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.215155 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.215156 LLDP, length 82 [|LLDP] 12:33:30.215181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.215182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd0 c4ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.215183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.215184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.215185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.215186 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.215187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.215188 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.215189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.215223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.215225 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.215227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.215228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.226165 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.226167 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.226168 LLDP, length 82 [|LLDP] 12:33:30.226210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.226211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd9 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.226212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.226214 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.226215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.226216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.226216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.226232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.226233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.226235 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.226236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.226238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.237174 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.237176 LLDP, length 82 [|LLDP] 12:33:30.237200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.237201 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be1 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.237202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.237203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.237204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.237205 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.237206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.237207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.237208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.237241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.237243 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.237245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.237246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.245432 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.245434 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.245435 LLDP, length 82 [|LLDP] 12:33:30.245473 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.245474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be7 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.245475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.245477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.245478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.245492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.245493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.245496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.245497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.245498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.245499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.245500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.256443 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.256444 LLDP, length 82 [|LLDP] 12:33:30.256468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.256469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf0 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.256470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.256471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.256472 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.256473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.256474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.256475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.256492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.256494 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.256496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.256497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.256498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.267460 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.267461 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.267462 LLDP, length 82 [|LLDP] 12:33:30.267508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.267508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf8 ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.267510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.267511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.267512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.267513 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.267514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.267515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.267516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.267541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.267543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.267546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.275710 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.275713 LLDP, length 82 [|LLDP] 12:33:30.275738 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.275739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfe f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.275740 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.275741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.275742 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.275743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.275759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.275760 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.275762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.275764 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.275764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.275765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.275767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.286721 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.286723 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.286724 LLDP, length 82 [|LLDP] 12:33:30.286765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.286766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c07 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.286767 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.286768 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.286770 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.286771 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.286772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.286773 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.286774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.286799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.286801 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.286803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.297733 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.297734 LLDP, length 82 [|LLDP] 12:33:30.297758 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.297759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0f c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.297760 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.297761 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.297762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.297764 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.297765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.297765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.297767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.297800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.297802 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.297804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.297806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.305989 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.305991 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.305992 LLDP, length 82 [|LLDP] 12:33:30.306032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.306033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c16 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.306035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.306036 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.306037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.306038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.306039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.306054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.306055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.306058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.306059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.306060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.317000 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.317002 LLDP, length 82 [|LLDP] 12:33:30.317026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.317027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1e 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.317029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.317030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.317031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.317032 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.317032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.317034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.317035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.317068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.317070 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.317072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.317073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.325258 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.325260 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.325261 LLDP, length 82 [|LLDP] 12:33:30.325301 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.325301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c24 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.325303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.325304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.325306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.325320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.325321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.325324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.325325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.325326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.325327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.325328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.336267 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.336268 LLDP, length 82 [|LLDP] 12:33:30.336292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.336293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2d 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.336294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.336295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.336296 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.336297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.336298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.336299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.336316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.336317 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.336319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.336320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.336321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.347277 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.347278 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.347279 LLDP, length 82 [|LLDP] 12:33:30.347320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.347321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c35 917d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.347323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.347324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.347325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.347326 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.347327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.347328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.347329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.347367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.347368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.347371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.355535 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.355537 LLDP, length 82 [|LLDP] 12:33:30.355562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.355562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3b de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.355564 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.355565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.355566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.355567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.355583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.355584 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.355586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.355587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.355588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.355589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.355591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.366545 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.366546 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.366547 LLDP, length 82 [|LLDP] 12:33:30.366587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.366588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c44 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.366589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.366591 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.366592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.366593 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.366594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.366595 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.366595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.366621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.366623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.366625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.377557 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.377558 LLDP, length 82 [|LLDP] 12:33:30.377582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.377583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4c ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.377585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.377585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.377586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.377587 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.377589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.377590 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.377591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.377624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.377625 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.377627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.377629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.385816 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.385817 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.385818 LLDP, length 82 [|LLDP] 12:33:30.385857 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.385858 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c52 f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.385859 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.385861 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.385862 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.385863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.385864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.385879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.385880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.385882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.385883 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.385885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.396826 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.396828 LLDP, length 82 [|LLDP] 12:33:30.396846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.396847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5b 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.396848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.396849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.396850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.396851 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.396852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.396853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.396855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.396888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.396890 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.396892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.396893 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.405081 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.405083 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.405084 LLDP, length 82 [|LLDP] 12:33:30.405124 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.405125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c61 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.405126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.405127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.405129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.405142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.405143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.405146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.405147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.405148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.405149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.405150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.416092 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.416094 LLDP, length 82 [|LLDP] 12:33:30.416118 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.416119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6a 117a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.416120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.416121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.416123 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.416123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.416124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.416125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.416142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.416144 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.416146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.416146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.416148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.427105 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.427107 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.427108 LLDP, length 82 [|LLDP] 12:33:30.427146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.427147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c72 77e6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.427148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.427150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.427151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.427152 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.427153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.427154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.427155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.427179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.427181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.427184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.435371 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.435372 LLDP, length 82 [|LLDP] 12:33:30.435390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.435390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c78 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.435392 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.435393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.435394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.435395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.435411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.435412 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.435415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.435416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.435417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.435418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.435419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.446370 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.446371 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.446372 LLDP, length 82 [|LLDP] 12:33:30.446414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.446414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c81 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.446416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.446417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.446418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.446419 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.446420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.446421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.446422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.446447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.446448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.446451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.457378 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.457380 LLDP, length 82 [|LLDP] 12:33:30.457404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.457404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c89 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.457406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.457407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.457408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.457409 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.457410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.457411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.457412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.457459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.457461 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.457463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.457464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.465635 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.465637 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.465638 LLDP, length 82 [|LLDP] 12:33:30.465678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.465679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8f de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.465680 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.465681 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.465682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.465683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.465684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.465699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.465701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.465703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.465704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.465705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.476648 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.476650 LLDP, length 82 [|LLDP] 12:33:30.476674 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.476675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c98 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.476676 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.476677 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.476678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.476679 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.476680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.476681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.476682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.476715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.476716 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.476719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.476720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.487658 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.487659 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.487660 LLDP, length 82 [|LLDP] 12:33:30.487695 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.487696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca0 ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.487698 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.487699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.487701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.487714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.487715 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.487718 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.487719 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.487720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.487721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.487722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.495915 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.495917 LLDP, length 82 [|LLDP] 12:33:30.495940 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.495941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca6 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.495943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.495944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.495944 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.495946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.495947 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.495947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.495966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.495967 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.495969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.495970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.495972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.506931 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.506933 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.506934 LLDP, length 82 [|LLDP] 12:33:30.506975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.506976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0caf 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.506977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.506978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.506979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.506980 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.506981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.506983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.506984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.507009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.507010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.507013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.515185 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.515186 LLDP, length 82 [|LLDP] 12:33:30.515210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.515211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb5 ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.515213 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.515213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.515214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.515215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.515233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.515234 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.515236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.515237 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.515238 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.515239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.515241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.526195 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.526196 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.526197 LLDP, length 82 [|LLDP] 12:33:30.526238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.526239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbe 1178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.526241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.526242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.526243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.526244 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.526245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.526246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.526247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.526273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.526274 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.526277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.537217 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.537219 LLDP, length 82 [|LLDP] 12:33:30.537245 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.537245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc6 77de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.537247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.537248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.537249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.537250 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.537251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.537252 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.537252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.537292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.537294 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.537297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.537298 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.545467 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.545468 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.545469 LLDP, length 82 [|LLDP] 12:33:30.545514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.545515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccc c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.545517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.545518 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.545519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.545520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.545521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.545538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.545539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.545541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.545542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.545543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.556473 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.556475 LLDP, length 82 [|LLDP] 12:33:30.556500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.556501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd5 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.556502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.556503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.556504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.556505 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.556506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.556508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.556509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.556543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.556545 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.556547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.556548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.567481 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.567483 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.567484 LLDP, length 82 [|LLDP] 12:33:30.567525 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.567526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cdd 9178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.567527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.567528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.567529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.567544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.567545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.567547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.567548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.567549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.567550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.567552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.575741 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.575742 LLDP, length 82 [|LLDP] 12:33:30.575766 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.575766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce3 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.575768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.575769 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.575770 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.575771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.575772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.575773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.575790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.575791 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.575793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.575795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.575796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.586751 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.586753 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.586754 LLDP, length 82 [|LLDP] 12:33:30.586793 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.586794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cec 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.586796 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.586797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.586798 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.586799 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.586800 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.586801 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.586802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.586827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.586828 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.586831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.594996 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.594998 LLDP, length 82 [|LLDP] 12:33:30.595015 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.595016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf2 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.595017 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.595018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.595019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.595040 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.595042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.595043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.606035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.606037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.606059 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.606060 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.606061 LLDP, length 82 [|LLDP] 12:33:30.606097 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.606098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfa f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.606099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.606101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.606101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.606102 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.606103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.606105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.606124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.606127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.617036 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.617038 LLDP, length 82 [|LLDP] 12:33:30.617065 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.617065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d03 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.617067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.617068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.617083 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.617085 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.617086 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.617087 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.617088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.617089 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.617090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.617120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.617123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.625288 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.625289 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.625290 LLDP, length 82 [|LLDP] 12:33:30.625331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.625332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d09 ab16 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.625333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.625334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.625335 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.625336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.625337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.625352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.625354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.625355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.625368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.625371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.636297 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.636298 LLDP, length 82 [|LLDP] 12:33:30.636323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.636324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d12 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.636325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.636326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.636327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.636328 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.636329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.636330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.636363 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.636364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.636366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.636377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.636380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.647306 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.647308 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.647309 LLDP, length 82 [|LLDP] 12:33:30.647359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.647359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1a 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.647361 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.647362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.647363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.647377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.647378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.647379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.647380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.647381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.647397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.647399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.655564 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.655566 LLDP, length 82 [|LLDP] 12:33:30.655590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.655591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d20 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.655593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.655594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.655595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.655596 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.655597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.655598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.655631 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.655633 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.655634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.655646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.655647 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.666577 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.666579 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.666580 LLDP, length 82 [|LLDP] 12:33:30.666622 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.666622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d29 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.666624 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.666625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.666626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.666627 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.666628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.666629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.666653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.666655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.666658 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.666660 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.677587 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.677588 LLDP, length 82 [|LLDP] 12:33:30.677612 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.677613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d31 9180 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.677614 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.677616 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.677617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.677618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.677634 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.677636 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.677637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.677638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.677639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.677667 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.677669 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.685844 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.685846 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.685847 LLDP, length 82 [|LLDP] 12:33:30.685886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.685887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d37 de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.685888 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.685889 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.685890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.685891 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.685892 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.685893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.685917 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.685919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.685922 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.685924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.696856 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.696859 LLDP, length 82 [|LLDP] 12:33:30.696886 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.696886 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d40 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.696888 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.696889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.696904 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.696906 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.696907 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.696908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.696909 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.696910 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.696911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.696944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.696946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.705110 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.705112 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.705113 LLDP, length 82 [|LLDP] 12:33:30.705155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.705155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d46 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.705157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.705159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.705160 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.705160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.705161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.705177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.705179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.705180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.705193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.705195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.716122 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.716123 LLDP, length 82 [|LLDP] 12:33:30.716148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.716149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4e f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.716150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.716151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.716152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.716153 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.716154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.716155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.716188 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.716190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.716191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.716203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.716205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.727131 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.727133 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.727134 LLDP, length 82 [|LLDP] 12:33:30.727174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.727174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d57 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.727176 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.727177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.727178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.727191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.727193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.727194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.727196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.727197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.727210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.727212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.735396 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.735397 LLDP, length 82 [|LLDP] 12:33:30.735421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.735422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5d ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.735423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.735424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.735425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.735426 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.735427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.735429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.735461 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.735463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.735464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.735476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.735478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.746399 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.746401 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.746402 LLDP, length 82 [|LLDP] 12:33:30.746441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.746442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d66 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.746444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.746445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.746446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.746447 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.746448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.746449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.746473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.746475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.746478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.746479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.757408 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.757410 LLDP, length 82 [|LLDP] 12:33:30.757434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.757435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6e 77e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.757436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.757437 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.757438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.757439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.757454 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.757456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.757457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.757458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.757459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.757486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.757488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.765666 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.765667 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.765668 LLDP, length 82 [|LLDP] 12:33:30.765711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.765712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d74 c4ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.765713 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.765714 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.765715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.765716 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.765717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.765718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.765754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.765757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.765761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.765763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.776705 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.776713 LLDP, length 82 [|LLDP] 12:33:30.776739 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.776740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7d 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.776741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.776742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.776764 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.776767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.776768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.776770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.776771 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.776772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.776773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.776808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.776810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.787699 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.787700 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.787708 LLDP, length 82 [|LLDP] 12:33:30.787758 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.787759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d85 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.787761 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.787762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.787763 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.787764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.787765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.787781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.787783 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.787784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.787798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.787800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.795946 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.795947 LLDP, length 82 [|LLDP] 12:33:30.795973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.795974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8b de4c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.795975 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.795976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.795977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.795978 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.795979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.795980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.796014 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.796016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.796017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.796029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.796031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.806956 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.806958 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.806959 LLDP, length 82 [|LLDP] 12:33:30.807000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.807001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d94 44ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.807002 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.807004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.807005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.807018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.807020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.807021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.807022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.807023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.807038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.807040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.815213 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.815215 LLDP, length 82 [|LLDP] 12:33:30.815240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.815241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9a 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.815242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.815243 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.815244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.815245 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.815247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.815248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.815283 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.815284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.815286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.815297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.815299 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.826223 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.826225 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.826225 LLDP, length 82 [|LLDP] 12:33:30.826268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.826269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da2 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.826270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.826271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.826272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.826273 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.826274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.826275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.826299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.826301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.826305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.826307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.837234 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.837236 LLDP, length 82 [|LLDP] 12:33:30.837260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.837261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dab 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.837262 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.837263 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.837264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.837266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.837281 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.837283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.837284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.837285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.837286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.837312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.837315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.845489 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.845490 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.845491 LLDP, length 82 [|LLDP] 12:33:30.845531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.845532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db1 ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.845534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.845535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.845536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.845537 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.845538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.845539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.845563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.845565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.845569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.845570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.856500 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.856502 LLDP, length 82 [|LLDP] 12:33:30.856526 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.856526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dba 1178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.856528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.856529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.856542 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.856544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.856545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.856546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.856547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.856548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.856549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.856577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.856579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.867558 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.867561 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.867562 LLDP, length 82 [|LLDP] 12:33:30.867641 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.867642 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc2 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.867644 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.867645 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.867646 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.867647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.867648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.867673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.867675 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.867676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.867691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.867694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.875824 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.875827 LLDP, length 82 [|LLDP] 12:33:30.875867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.875868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc8 c4af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.875869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.875871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.875872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.875873 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.875874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.875875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.875944 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.875946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.875947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.875962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.875964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.886826 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.886829 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.886830 LLDP, length 82 [|LLDP] 12:33:30.886901 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.886902 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd1 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.886904 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.886905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.886906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.886927 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.886930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.886931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.886932 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.886933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.886949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.886950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.895039 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.895041 LLDP, length 82 [|LLDP] 12:33:30.895066 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.895067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd7 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.895068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.895069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.895070 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.895071 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.895072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.895074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.895106 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.895108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.895109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.895121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.895123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.906048 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.906049 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.906050 LLDP, length 82 [|LLDP] 12:33:30.906092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.906093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddf de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.906094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.906095 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.906096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.906097 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.906098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.906100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.906124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.906126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.906129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.906131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.917057 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.917059 LLDP, length 82 [|LLDP] 12:33:30.917083 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.917084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de8 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.917085 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.917086 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.917087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.917088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.917104 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.917106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.917107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.917108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.917109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.917136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.917138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.925317 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.925318 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.925319 LLDP, length 82 [|LLDP] 12:33:30.925360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.925361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dee 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.925362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.925363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.925364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.925365 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.925366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.925367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.925392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.925394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.925397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.925399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.936326 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.936328 LLDP, length 82 [|LLDP] 12:33:30.936355 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.936355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df6 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.936357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.936358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.936371 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.936373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.936374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.936376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.936377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.936378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.936379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.936406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.936408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.947350 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.947351 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.947352 LLDP, length 82 [|LLDP] 12:33:30.947387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.947388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dff 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.947389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.947390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.947391 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.947392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.947393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.947407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.947409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.947410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.947423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.947425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.955592 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.955594 LLDP, length 82 [|LLDP] 12:33:30.955611 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.955612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e05 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.955613 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.955614 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.955615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.955616 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.955617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.955618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.955648 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.955650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.955651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.955663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.955665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.966602 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.966604 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.966605 LLDP, length 82 [|LLDP] 12:33:30.966646 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.966647 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0e 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.966649 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.966650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.966651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.966664 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.966666 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.966667 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.966668 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.966669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.966683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.966685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.977613 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.977614 LLDP, length 82 [|LLDP] 12:33:30.977638 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.977638 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e16 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.977640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.977641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.977642 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.977643 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.977644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.977645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.977676 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.977678 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.977679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.977691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.977693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.985874 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.985876 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.985877 LLDP, length 82 [|LLDP] 12:33:30.985912 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.985913 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1c c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.985915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.985916 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.985917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.985918 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.985919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.985920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.985943 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.985945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.985948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.985951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:30.996881 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:30.996882 LLDP, length 82 [|LLDP] 12:33:30.996906 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:30.996907 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e25 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:30.996908 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:30.996909 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.996910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:30.996911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.996927 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:30.996929 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:30.996930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:30.996931 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:30.996932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:30.996957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:30.996960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.005137 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.005139 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.005140 LLDP, length 82 [|LLDP] 12:33:31.005180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.005181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2b 77e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.005183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.005184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.005185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.005186 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.005187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.005188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.005211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.005212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.005216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.005217 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.016152 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.016153 LLDP, length 82 [|LLDP] 12:33:31.016178 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.016179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e33 de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.016180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.016182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.016203 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.016205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.016207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.016208 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.016209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.016210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.016211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.016239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.016242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.027162 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.027164 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.027165 LLDP, length 82 [|LLDP] 12:33:31.027198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.027199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3c 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.027201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.027201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.027202 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.027204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.027205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.027219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.027221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.027222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.027235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.027237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.035417 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.035418 LLDP, length 82 [|LLDP] 12:33:31.035443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.035443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e42 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.035445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.035446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.035447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.035448 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.035449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.035450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.035482 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.035484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.035485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.035496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.035498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.046426 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.046427 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.046428 LLDP, length 82 [|LLDP] 12:33:31.046469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.046469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4a f7e6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.046471 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.046472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.046473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.046486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.046488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.046489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.046490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.046491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.046505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.046507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.057436 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.057437 LLDP, length 82 [|LLDP] 12:33:31.057461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.057462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e53 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.057463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.057465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.057466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.057467 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.057468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.057469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.057499 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.057501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.057502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.057514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.057516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.065693 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.065694 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.065695 LLDP, length 82 [|LLDP] 12:33:31.065734 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.065735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e59 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.065737 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.065738 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.065739 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.065739 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.065740 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.065742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.065765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.065767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.065770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.065772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.076703 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.076705 LLDP, length 82 [|LLDP] 12:33:31.076730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.076731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e62 117a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.076732 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.076733 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.076734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.076735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.076750 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.076752 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.076753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.076753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.076755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.076781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.076783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.084962 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.084964 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.084965 LLDP, length 82 [|LLDP] 12:33:31.085003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.085004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e68 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.085006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.085007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.085007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.085008 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.085010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.085011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.085035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.085037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.085040 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.085042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.095973 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.095974 LLDP, length 82 [|LLDP] 12:33:31.095998 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.095998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e70 c4ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.096000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.096001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.096014 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.096015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.096016 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.096017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.096018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.096019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.096020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.096048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.096050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.106980 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.106982 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.106982 LLDP, length 82 [|LLDP] 12:33:31.107021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.107022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e79 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.107023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.107024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.107025 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.107026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.107027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.107041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.107043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.107044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.107056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.107058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.115240 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.115242 LLDP, length 82 [|LLDP] 12:33:31.115264 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.115265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7f 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.115266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.115267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.115268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.115269 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.115270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.115271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.115302 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.115303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.115305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.115316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.115319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.126263 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.126265 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.126272 LLDP, length 82 [|LLDP] 12:33:31.126313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.126314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e87 de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.126316 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.126317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.126318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.126333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.126335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.126336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.126337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.126338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.126352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.126354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.137266 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.137267 LLDP, length 82 [|LLDP] 12:33:31.137293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.137294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e90 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.137295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.137296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.137297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.137298 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.137299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.137300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.137333 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.137335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.137336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.137348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.137350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.145518 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.145520 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.145521 LLDP, length 82 [|LLDP] 12:33:31.145562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.145563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e96 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.145564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.145565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.145566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.145567 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.145568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.145569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.145594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.145596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.145599 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.145601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.156529 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.156531 LLDP, length 82 [|LLDP] 12:33:31.156555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.156556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9e f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.156558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.156559 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.156560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.156561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.156576 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.156577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.156578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.156579 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.156580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.156606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.156608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.167541 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.167543 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.167544 LLDP, length 82 [|LLDP] 12:33:31.167583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.167583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea7 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.167585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.167586 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.167587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.167588 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.167589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.167590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.167614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.167616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.167619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.167621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.175798 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.175800 LLDP, length 82 [|LLDP] 12:33:31.175825 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.175825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ead ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.175827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.175828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.175843 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.175845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.175846 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.175847 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.175848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.175849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.175850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.175878 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.175880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.186807 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.186809 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.186810 LLDP, length 82 [|LLDP] 12:33:31.186851 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.186852 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb6 1178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.186853 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.186854 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.186855 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.186856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.186857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.186872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.186873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.186874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.186887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.186889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.195064 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.195066 LLDP, length 82 [|LLDP] 12:33:31.195091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.195092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebc 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.195093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.195094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.195095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.195096 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.195097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.195098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.195130 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.195132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.195133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.195145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.195147 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.206076 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.206077 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.206078 LLDP, length 82 [|LLDP] 12:33:31.206117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.206118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec4 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.206120 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.206121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.206121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.206135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.206137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.206138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.206139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.206140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.206154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.206156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.217085 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.217086 LLDP, length 82 [|LLDP] 12:33:31.217110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.217111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecd 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.217112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.217113 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.217114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.217115 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.217116 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.217117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.217147 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.217150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.217151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.217163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.217165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.225342 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.225344 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.225345 LLDP, length 82 [|LLDP] 12:33:31.225386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.225387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed3 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.225389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.225390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.225391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.225392 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.225393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.225394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.225418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.225420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.225424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.225426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.236354 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.236355 LLDP, length 82 [|LLDP] 12:33:31.236380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.236381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0edb de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.236382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.236383 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.236384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.236385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.236400 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.236402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.236403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.236404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.236405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.236431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.236434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.247370 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.247371 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.247372 LLDP, length 82 [|LLDP] 12:33:31.247412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.247413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee4 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.247415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.247416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.247417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.247418 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.247419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.247420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.247444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.247446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.247449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.247451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.255621 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.255623 LLDP, length 82 [|LLDP] 12:33:31.255647 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.255647 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eea 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.255649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.255650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.255664 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.255666 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.255667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.255668 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.255669 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.255670 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.255671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.255699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.255701 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.266632 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.266634 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.266635 LLDP, length 82 [|LLDP] 12:33:31.266676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.266677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef2 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.266679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.266680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.266681 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.266682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.266683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.266697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.266699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.266700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.266712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.266714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.277646 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.277647 LLDP, length 82 [|LLDP] 12:33:31.277673 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.277674 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efb 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.277675 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.277676 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.277677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.277678 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.277679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.277680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.277712 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.277713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.277715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.277727 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.277729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.285901 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.285903 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.285903 LLDP, length 82 [|LLDP] 12:33:31.285945 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.285946 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f01 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.285947 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.285948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.285949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.285963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.285964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.285966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.285967 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.285968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.285982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.285984 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.296909 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.296911 LLDP, length 82 [|LLDP] 12:33:31.296934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.296935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0a 117f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.296936 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.296937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.296938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.296940 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.296941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.296942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.296974 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.296976 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.296977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.296989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.296991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.305170 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.305171 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.305172 LLDP, length 82 [|LLDP] 12:33:31.305213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.305214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f10 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.305215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.305216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.305217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.305219 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.305220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.305221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.305244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.305246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.305250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.305252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.316178 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.316179 LLDP, length 82 [|LLDP] 12:33:31.316203 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.316204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f18 c4ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.316206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.316207 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.316208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.316209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.316224 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.316226 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.316227 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.316228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.316229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.316255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.316257 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.327187 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.327189 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.327189 LLDP, length 82 [|LLDP] 12:33:31.327230 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.327231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f21 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.327232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.327233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.327234 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.327235 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.327236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.327237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.327260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.327263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.327266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.327268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.335447 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.335449 LLDP, length 82 [|LLDP] 12:33:31.335473 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.335473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f27 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.335475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.335476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.335491 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.335492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.335493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.335495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.335496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.335497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.335498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.335527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.335529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.346458 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.346460 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.346461 LLDP, length 82 [|LLDP] 12:33:31.346500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.346501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2f de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.346503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.346504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.346505 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.346506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.346507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.346522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.346524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.346525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.346537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.346539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.357465 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.357466 LLDP, length 82 [|LLDP] 12:33:31.357490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.357491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f38 44ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.357492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.357493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.357494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.357495 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.357496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.357497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.357529 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.357530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.357531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.357543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.357545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.365725 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.365727 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.365728 LLDP, length 82 [|LLDP] 12:33:31.365767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.365768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3e 917a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.365770 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.365771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.365772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.365785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.365787 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.365788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.365789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.365790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.365804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.365806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.376732 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.376734 LLDP, length 82 [|LLDP] 12:33:31.376758 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.376758 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f46 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.376760 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.376761 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.376762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.376763 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.376764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.376765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.376796 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.376798 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.376800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.376812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.376813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.384992 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.384994 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.384995 LLDP, length 82 [|LLDP] 12:33:31.385034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.385034 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4d 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.385036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.385037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.385038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.385039 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.385040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.385041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.385064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.385066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.385070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.385072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.396002 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.396004 LLDP, length 82 [|LLDP] 12:33:31.396028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.396029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f55 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.396030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.396031 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.396032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.396033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.396048 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.396050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.396051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.396052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.396053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.396078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.396081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.407013 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.407014 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.407015 LLDP, length 82 [|LLDP] 12:33:31.407055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.407056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5e 117a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.407057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.407058 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.407059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.407060 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.407061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.407062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.407086 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.407088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.407091 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.407093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.415267 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.415269 LLDP, length 82 [|LLDP] 12:33:31.415292 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.415293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f64 5e47 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.415295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.415296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.415309 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.415311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.415312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.415314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.415314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.415316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.415317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.415357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.415359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.426281 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.426282 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.426283 LLDP, length 82 [|LLDP] 12:33:31.426324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.426325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6c c4ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.426327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.426328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.426329 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.426330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.426331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.426346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.426348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.426349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.426362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.426364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.437289 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.437291 LLDP, length 82 [|LLDP] 12:33:31.437315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.437316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f75 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.437318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.437319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.437320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.437321 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.437322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.437323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.437355 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.437357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.437358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.437370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.437372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.445549 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.445550 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.445551 LLDP, length 82 [|LLDP] 12:33:31.445592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.445592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7b 77e1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.445594 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.445595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.445596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.445610 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.445612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.445613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.445614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.445615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.445629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.445631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.456558 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.456560 LLDP, length 82 [|LLDP] 12:33:31.456583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.456583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f83 de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.456585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.456586 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.456587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.456588 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.456589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.456590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.456634 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.456636 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.456637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.456649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.456651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.467570 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.467571 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.467572 LLDP, length 82 [|LLDP] 12:33:31.467604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.467605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8c 44ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.467607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.467608 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.467609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.467610 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.467611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.467612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.467635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.467637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.467640 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.467642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.475826 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.475827 LLDP, length 82 [|LLDP] 12:33:31.475852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.475853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f92 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.475854 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.475855 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.475856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.475857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.475872 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.475874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.475876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.475877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.475878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.475905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.475907 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.486834 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.486836 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.486837 LLDP, length 82 [|LLDP] 12:33:31.486878 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.486878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9a f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.486880 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.486881 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.486882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.486883 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.486884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.486885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.486909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.486911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.486914 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.486916 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.495104 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.495106 LLDP, length 82 [|LLDP] 12:33:31.495135 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.495135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa1 44b3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.495137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.495138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.495153 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.495155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.495157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.495158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.495159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.495160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.495161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.495192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.495195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.506109 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.506111 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.506112 LLDP, length 82 [|LLDP] 12:33:31.506157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.506157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa9 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.506159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.506160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.506161 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.506162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.506163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.506179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.506181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.506182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.506196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.506198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.517114 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.517115 LLDP, length 82 [|LLDP] 12:33:31.517138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.517139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb2 1178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.517141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.517142 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.517143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.517144 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.517145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.517146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.517178 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.517180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.517181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.517193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.517195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.525370 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.525372 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.525373 LLDP, length 82 [|LLDP] 12:33:31.525414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.525414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb8 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.525416 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.525417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.525418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.525431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.525433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.525434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.525435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.525437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.525451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.525453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.536390 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.536391 LLDP, length 82 [|LLDP] 12:33:31.536420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.536421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc0 c4ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.536423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.536423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.536424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.536425 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.536427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.536428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.536474 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.536476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.536477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.536491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.536493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.547408 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.547410 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.547411 LLDP, length 82 [|LLDP] 12:33:31.547459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.547460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc9 2b19 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.547461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.547462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.547463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.547464 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.547465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.547466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.547493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.547495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.547498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.547500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.555650 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.555652 LLDP, length 82 [|LLDP] 12:33:31.555676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.555677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fcf 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.555678 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.555679 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.555680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.555681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.555696 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.555698 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.555699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.555700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.555701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.555727 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.555729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.566660 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.566661 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.566662 LLDP, length 82 [|LLDP] 12:33:31.566703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.566704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd7 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.566705 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.566707 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.566708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.566709 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.566710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.566711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.566735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.566737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.566740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.566742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.577672 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.577674 LLDP, length 82 [|LLDP] 12:33:31.577697 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.577698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe0 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.577699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.577700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.577713 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.577715 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.577716 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.577717 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.577718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.577719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.577720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.577747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.577749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.585928 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.585930 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.585931 LLDP, length 82 [|LLDP] 12:33:31.585973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.585974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe6 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.585976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.585977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.585978 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.585979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.585980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.585993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.585995 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.585996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.586009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.586011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.596939 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.596940 LLDP, length 82 [|LLDP] 12:33:31.596965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.596965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fee f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.596967 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.596968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.596969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.596970 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.596971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.596972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.597002 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.597004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.597005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.597018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.597020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.605226 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.605235 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.605236 LLDP, length 82 [|LLDP] 12:33:31.605291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.605292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff5 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.605294 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.605295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.605296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.605313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.605315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.605316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.605318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.605319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.605334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.605336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.616214 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.616217 LLDP, length 82 [|LLDP] 12:33:31.616245 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.616245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffd ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.616247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.616248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.616249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.616250 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.616251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.616252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.616287 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.616289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.616290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.616302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.616304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.627216 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.627217 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.627219 LLDP, length 82 [|LLDP] 12:33:31.627259 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.627259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1006 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.627261 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.627262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.627263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.627264 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.627266 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.627267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.627290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.627291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.627295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.627309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.635504 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.635514 LLDP, length 82 [|LLDP] 12:33:31.635543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.635543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100c 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.635545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.635546 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.635547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.635548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.635573 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.635575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.635576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.635577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.635578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.635615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.635617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.646508 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.646516 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.646518 LLDP, length 82 [|LLDP] 12:33:31.646568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.646569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1014 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.646571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.646572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.646572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.646573 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.646574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.646575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.646603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.646606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.646610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.646612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.657499 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.657501 LLDP, length 82 [|LLDP] 12:33:31.657527 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.657528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101d 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.657530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.657531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.657545 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.657546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.657547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.657549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.657550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.657551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.657552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.657581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.657584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.665753 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.665754 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.665755 LLDP, length 82 [|LLDP] 12:33:31.665796 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.665797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1023 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.665799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.665800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.665801 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.665802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.665803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.665817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.665819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.665820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.665834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.665837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.676775 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.676777 LLDP, length 82 [|LLDP] 12:33:31.676810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.676811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102b de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.676812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.676813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.676814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.676815 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.676816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.676817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.676859 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.676861 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.676863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.676875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.676877 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.685020 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.685022 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.685023 LLDP, length 82 [|LLDP] 12:33:31.685064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.685065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1032 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.685067 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.685068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.685069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.685083 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.685084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.685085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.685087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.685088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.685102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.685104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.696033 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.696034 LLDP, length 82 [|LLDP] 12:33:31.696062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.696063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103a 917a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.696064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.696065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.696066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.696067 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.696068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.696069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.696107 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.696110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.696111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.696123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.696125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.707063 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.707071 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.707073 LLDP, length 82 [|LLDP] 12:33:31.707131 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.707132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1042 f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.707134 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.707135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.707136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.707138 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.707139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.707139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.707167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.707170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.707173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.707175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.715305 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.715307 LLDP, length 82 [|LLDP] 12:33:31.715343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.715344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1049 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.715346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.715346 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.715347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.715348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.715367 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.715369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.715370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.715371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.715372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.715403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.715406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.726317 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.726318 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.726326 LLDP, length 82 [|LLDP] 12:33:31.726365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.726366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1051 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.726368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.726369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.726370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.726371 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.726372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.726373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.726398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.726400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.726404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.726405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.737320 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.737322 LLDP, length 82 [|LLDP] 12:33:31.737347 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.737347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105a 117a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.737349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.737350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.737364 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.737365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.737366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.737367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.737369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.737370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.737371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.737399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.737401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.745611 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.745614 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.745615 LLDP, length 82 [|LLDP] 12:33:31.745684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.745685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1060 5e4d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.745687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.745688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.745689 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.745690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.745691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.745712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.745715 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.745716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.745730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.745733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.756598 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.756600 LLDP, length 82 [|LLDP] 12:33:31.756630 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.756631 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1068 c4ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.756632 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.756633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.756634 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.756635 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.756637 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.756638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.756677 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.756679 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.756680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.756693 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.756696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.767600 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.767601 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.767603 LLDP, length 82 [|LLDP] 12:33:31.767645 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.767646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1071 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.767648 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.767648 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.767649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.767663 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.767664 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.767665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.767667 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.767667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.767682 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.767684 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.775854 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.775856 LLDP, length 82 [|LLDP] 12:33:31.775880 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.775881 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1077 77e1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.775883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.775883 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.775884 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.775885 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.775887 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.775888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.775921 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.775923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.775924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.775936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.775938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.786863 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.786865 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.786866 LLDP, length 82 [|LLDP] 12:33:31.786907 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.786908 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107f de47 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.786910 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.786911 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.786912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.786913 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.786914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.786915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.786940 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.786942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.786945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.786947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.795123 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.795125 LLDP, length 82 [|LLDP] 12:33:31.795148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.795149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1086 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.795150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.795152 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.795153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.795154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.795170 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.795171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.795172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.795173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.795174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.795202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.795204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.806136 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.806138 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.806139 LLDP, length 82 [|LLDP] 12:33:31.806178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.806179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108e 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.806181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.806182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.806183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.806184 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.806185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.806186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.806211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.806213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.806217 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.806218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.817145 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.817147 LLDP, length 82 [|LLDP] 12:33:31.817170 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.817172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1096 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.817173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.817174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.817188 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.817190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.817190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.817192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.817193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.817194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.817195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.817224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.817227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.825400 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.825402 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.825403 LLDP, length 82 [|LLDP] 12:33:31.825442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.825443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109d 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.825444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.825445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.825446 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.825448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.825449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.825464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.825466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.825467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.825479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.825481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.836412 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.836413 LLDP, length 82 [|LLDP] 12:33:31.836437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.836438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a5 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.836439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.836440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.836441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.836442 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.836443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.836444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.836476 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.836478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.836479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.836491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.836493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.847422 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.847423 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.847425 LLDP, length 82 [|LLDP] 12:33:31.847466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.847467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ae 1178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.847468 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.847469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.847471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.847484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.847486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.847487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.847488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.847489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.847504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.847506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.855676 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.855678 LLDP, length 82 [|LLDP] 12:33:31.855702 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.855703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b4 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.855704 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.855705 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.855706 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.855707 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.855708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.855709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.855741 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.855743 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.855744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.855757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.855759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.866690 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.866691 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.866692 LLDP, length 82 [|LLDP] 12:33:31.866735 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.866736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bc c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.866737 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.866739 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.866740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.866741 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.866742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.866743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.866766 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.866768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.866772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.866774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.874945 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.874946 LLDP, length 82 [|LLDP] 12:33:31.874970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.874971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c3 1178 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.874972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.874974 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.874974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.874975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.874991 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.874992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.874994 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.874995 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.874996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.875025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.875027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.885955 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.885957 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.885958 LLDP, length 82 [|LLDP] 12:33:31.885998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.885999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10cb 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.886000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.886002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.886003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.886004 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.886005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.886006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.886030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.886032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.886035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.886037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.896967 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.896968 LLDP, length 82 [|LLDP] 12:33:31.896993 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.896994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d3 de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.896995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.896996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.897009 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.897011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.897013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.897014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.897015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.897016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.897017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.897046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.897048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.905224 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.905225 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.905226 LLDP, length 82 [|LLDP] 12:33:31.905266 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.905266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10da 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.905268 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.905269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.905270 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.905271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.905272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.905286 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.905288 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.905289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.905302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.905305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.916235 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.916236 LLDP, length 82 [|LLDP] 12:33:31.916260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.916261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e2 917f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.916263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.916264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.916265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.916266 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.916267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.916268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.916300 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.916302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.916303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.916315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.916317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.927244 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.927245 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.927246 LLDP, length 82 [|LLDP] 12:33:31.927286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.927287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ea f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.927289 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.927290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.927291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.927304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.927306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.927307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.927308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.927309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.927323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.927325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.935505 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.935506 LLDP, length 82 [|LLDP] 12:33:31.935532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.935532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f1 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.935534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.935535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.935536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.935537 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.935538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.935539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.935573 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.935575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.935576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.935588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.935590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.946513 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.946515 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.946516 LLDP, length 82 [|LLDP] 12:33:31.946556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.946557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f9 ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.946559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.946560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.946561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.946562 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.946563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.946564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.946587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.946589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.946592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.946594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.957524 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.957525 LLDP, length 82 [|LLDP] 12:33:31.957550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.957551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1102 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.957552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.957553 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.957554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.957555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.957571 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.957573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.957574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.957575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.957576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.957604 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.957607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.965779 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.965781 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.965782 LLDP, length 82 [|LLDP] 12:33:31.965821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.965822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1108 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.965824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.965825 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.965826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.965827 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.965828 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.965829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.965853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.965855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.965859 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.965860 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.976795 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.976796 LLDP, length 82 [|LLDP] 12:33:31.976823 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.976824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1110 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.976825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.976826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.976840 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.976841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.976843 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.976843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.976845 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.976846 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.976847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.976876 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.976878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.985048 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.985050 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.985051 LLDP, length 82 [|LLDP] 12:33:31.985091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.985092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1117 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.985093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.985094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.985095 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.985096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.985098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.985113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.985114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.985115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.985128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.985131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:31.996061 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:31.996063 LLDP, length 82 [|LLDP] 12:33:31.996087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:31.996087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111f 77e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:31.996089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:31.996090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:31.996091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:31.996092 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.996093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:31.996094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.996125 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:31.996127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:31.996128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:31.996140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:31.996142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.007076 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.007077 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.007078 LLDP, length 82 [|LLDP] 12:33:32.007117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.007118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1127 de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.007120 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.007121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.007122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.007135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.007137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.007138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.007139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.007140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.007154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.007157 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.015325 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.015326 LLDP, length 82 [|LLDP] 12:33:32.015356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.015357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112e 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.015358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.015359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.015360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.015361 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.015362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.015363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.015395 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.015397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.015398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.015410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.015412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.026338 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.026340 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.026341 LLDP, length 82 [|LLDP] 12:33:32.026382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.026383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1136 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.026385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.026386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.026387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.026388 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.026389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.026390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.026414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.026416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.026419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.026421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.037347 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.037349 LLDP, length 82 [|LLDP] 12:33:32.037372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.037373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113e f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.037375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.037376 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.037377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.037378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.037393 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.037395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.037396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.037397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.037398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.037425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.037427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.045603 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.045604 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.045605 LLDP, length 82 [|LLDP] 12:33:32.045645 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.045646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1145 44ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.045648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.045649 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.045650 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.045651 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.045652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.045653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.045677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.045679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.045682 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.045684 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.056615 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.056617 LLDP, length 82 [|LLDP] 12:33:32.056640 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.056641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114d ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.056643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.056644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.056657 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.056659 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.056660 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.056661 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.056662 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.056663 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.056664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.056692 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.056694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.067627 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.067629 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.067630 LLDP, length 82 [|LLDP] 12:33:32.067671 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.067672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1156 117a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.067673 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.067674 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.067675 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.067676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.067677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.067692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.067694 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.067695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.067707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.067709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.075883 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.075885 LLDP, length 82 [|LLDP] 12:33:32.075909 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.075910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115c 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.075912 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.075912 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.075914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.075915 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.075915 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.075917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.075948 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.075950 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.075951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.075963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.075965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.086891 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.086893 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.086894 LLDP, length 82 [|LLDP] 12:33:32.086936 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.086937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1164 c4ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.086938 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.086939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.086940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.086954 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.086956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.086957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.086958 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.086959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.086974 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.086976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.095150 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.095151 LLDP, length 82 [|LLDP] 12:33:32.095175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.095176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116b 117a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.095177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.095178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.095179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.095180 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.095181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.095182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.095214 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.095215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.095217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.095229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.095231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.106162 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.106163 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.106164 LLDP, length 82 [|LLDP] 12:33:32.106205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.106206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1173 77e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.106208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.106209 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.106210 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.106211 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.106212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.106213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.106237 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.106240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.106243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.106245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.117172 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.117174 LLDP, length 82 [|LLDP] 12:33:32.117198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.117199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117b de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.117200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.117201 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.117202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.117203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.117218 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.117220 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.117221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.117223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.117224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.117251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.117253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.125430 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.125432 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.125433 LLDP, length 82 [|LLDP] 12:33:32.125473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.125474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1182 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.125476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.125477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.125478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.125479 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.125480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.125481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.125506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.125508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.125511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.125513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.136439 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.136440 LLDP, length 82 [|LLDP] 12:33:32.136465 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.136465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118a 917a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.136467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.136468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.136481 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.136483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.136484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.136485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.136486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.136487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.136488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.136517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.136520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.147448 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.147450 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.147451 LLDP, length 82 [|LLDP] 12:33:32.147490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.147491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1192 f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.147493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.147494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.147495 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.147496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.147497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.147512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.147514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.147514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.147527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.147529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.155707 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.155708 LLDP, length 82 [|LLDP] 12:33:32.155732 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.155733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1199 44ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.155734 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.155735 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.155736 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.155737 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.155739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.155740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.155772 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.155783 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.155784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.155799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.155801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.166718 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.166720 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.166721 LLDP, length 82 [|LLDP] 12:33:32.166762 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.166763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a1 ab19 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.166764 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.166766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.166767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.166780 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.166782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.166783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.166784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.166785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.166799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.166801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.174974 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.174976 LLDP, length 82 [|LLDP] 12:33:32.174999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.175000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a7 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.175001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.175002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.175003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.175004 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.175005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.175006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.175037 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.175039 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.175040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.175052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.175054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.185986 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.185987 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.185989 LLDP, length 82 [|LLDP] 12:33:32.186029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.186030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b0 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.186032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.186033 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.186034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.186035 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.186036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.186037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.186061 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.186063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.186067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.186068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.196994 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.196996 LLDP, length 82 [|LLDP] 12:33:32.197020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.197020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b8 c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.197022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.197023 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.197024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.197025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.197040 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.197042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.197043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.197044 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.197045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.197073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.197075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.205252 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.205254 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.205255 LLDP, length 82 [|LLDP] 12:33:32.205295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.205296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bf 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.205297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.205298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.205300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.205301 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.205302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.205303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.205327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.205329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.205332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.205334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.216263 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.216265 LLDP, length 82 [|LLDP] 12:33:32.216288 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.216289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c7 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.216290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.216291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.216305 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.216307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.216308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.216310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.216311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.216312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.216313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.216341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.216343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.227273 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.227274 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.227275 LLDP, length 82 [|LLDP] 12:33:32.227314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.227315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cf de45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.227316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.227317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.227318 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.227320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.227321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.227345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.227347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.227348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.227363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.227364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.235531 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.235533 LLDP, length 82 [|LLDP] 12:33:32.235557 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.235558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d6 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.235559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.235560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.235561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.235562 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.235563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.235564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.235597 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.235598 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.235599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.235612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.235614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.246542 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.246543 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.246544 LLDP, length 82 [|LLDP] 12:33:32.246583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.246584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11de 917d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.246585 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.246586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.246587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.246601 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.246603 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.246604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.246604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.246606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.246620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.246622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.257550 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.257552 LLDP, length 82 [|LLDP] 12:33:32.257575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.257575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e6 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.257577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.257578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.257579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.257579 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.257580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.257581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.257614 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.257616 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.257617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.257629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.257631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.265812 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.265813 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.265814 LLDP, length 82 [|LLDP] 12:33:32.265856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.265857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ed 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.265859 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.265860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.265861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.265862 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.265863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.265864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.265889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.265891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.265895 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.265896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.276820 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.276822 LLDP, length 82 [|LLDP] 12:33:32.276845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.276846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f5 ab12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.276847 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.276848 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.276849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.276850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.276866 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.276868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.276869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.276870 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.276871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.276898 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.276901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.285083 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.285085 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.285092 LLDP, length 82 [|LLDP] 12:33:32.285134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.285135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fb f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.285137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.285138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.285139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.285140 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.285141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.285142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.285168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.285170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.285174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.285176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.296092 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.296093 LLDP, length 82 [|LLDP] 12:33:32.296117 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.296118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1204 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.296119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.296120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.296134 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.296136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.296137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.296138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.296140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.296141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.296142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.296171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.296173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.307104 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.307105 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.307106 LLDP, length 82 [|LLDP] 12:33:32.307145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.307146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120c c4ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.307148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.307149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.307150 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.307151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.307153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.307168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.307170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.307171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.307184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.307186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.315363 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.315364 LLDP, length 82 [|LLDP] 12:33:32.315390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.315390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1213 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.315392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.315393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.315394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.315395 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.315396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.315397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.315431 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.315433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.315434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.315447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.315449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.326366 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.326368 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.326369 LLDP, length 82 [|LLDP] 12:33:32.326408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.326409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121b 77df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.326411 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.326412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.326413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.326427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.326428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.326429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.326430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.326431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.326445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.326447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.337390 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.337392 LLDP, length 82 [|LLDP] 12:33:32.337422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.337423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1223 de46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.337424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.337425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.337427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.337427 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.337428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.337430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.337471 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.337473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.337474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.337487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.337489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.345639 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.345641 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.345648 LLDP, length 82 [|LLDP] 12:33:32.345688 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.345689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122a 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.345691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.345692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.345693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.345694 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.345695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.345696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.345721 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.345724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.345727 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.345729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.356644 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.356646 LLDP, length 82 [|LLDP] 12:33:32.356672 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.356672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1232 9179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.356674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.356675 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.356676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.356676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.356692 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.356694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.356695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.356696 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.356698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.356725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.356727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.364904 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.364906 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.364907 LLDP, length 82 [|LLDP] 12:33:32.364949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.364949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1238 de4d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.364951 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.364952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.364953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.364954 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.364955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.364956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.364981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.364983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.364987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.364989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.375915 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.375916 LLDP, length 82 [|LLDP] 12:33:32.375941 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.375942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1241 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.375943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.375944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.375958 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.375960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.375961 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.375962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.375963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.375964 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.375965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.375993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.375995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.386924 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.386925 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.386926 LLDP, length 82 [|LLDP] 12:33:32.386967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.386968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1249 ab13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.386970 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.386971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.386972 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.386973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.386974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.386989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.386991 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.386992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.387005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.387007 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.395178 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.395179 LLDP, length 82 [|LLDP] 12:33:32.395203 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.395204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124f f7e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.395205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.395206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.395207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.395208 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.395209 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.395210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.395243 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.395245 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.395246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.395259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.395261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.406196 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.406197 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.406198 LLDP, length 82 [|LLDP] 12:33:32.406232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.406233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1258 5e46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.406235 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.406236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.406237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.406250 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.406252 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.406253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.406254 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.406255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.406269 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.406271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.417208 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.417210 LLDP, length 82 [|LLDP] 12:33:32.417228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.417229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1260 c4b3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.417230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.417231 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.417232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.417233 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.417234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.417235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.417267 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.417269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.417270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.417281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.417283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.425458 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.425460 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.425461 LLDP, length 82 [|LLDP] 12:33:32.425501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.425501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1267 1179 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.425503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.425504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.425505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.425506 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.425507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.425508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.425533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.425535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.425538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.425540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.436469 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.436471 LLDP, length 82 [|LLDP] 12:33:32.436496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.436497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126f 77e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.436498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.436499 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.436500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.436501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.436517 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.436518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.436519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.436521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.436522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.436548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.436550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.447478 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.447479 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.447480 LLDP, length 82 [|LLDP] 12:33:32.447519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.447520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1277 de47 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.447522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.447523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.447524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.447525 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.447526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.447527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.447551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.447553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.447556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.447558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.455735 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.455737 LLDP, length 82 [|LLDP] 12:33:32.455760 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.455761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127e 2b13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.455762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.455763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.455796 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.455798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.455799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.455800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.455801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.455802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.455803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.455825 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.455828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.466746 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.466748 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.466749 LLDP, length 82 [|LLDP] 12:33:32.466789 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.466790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1286 917a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.466791 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.466793 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.466794 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.466795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.466796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.466810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.466812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.466813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.466826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.466828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.475005 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.475006 LLDP, length 82 [|LLDP] 12:33:32.475031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.475031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 128c de47 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.475033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.475034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.475035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.475036 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.475037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.475038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.475071 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.475073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.475074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.475086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.475088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.486016 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.486018 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.486019 LLDP, length 82 [|LLDP] 12:33:32.486059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.486060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1295 44ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.486062 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.486063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.486064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.486078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.486079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.486080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.486081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.486082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.486097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.486099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.497026 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.497047 LLDP, length 82 [|LLDP] 12:33:32.497066 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.497067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 129d ab14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.497068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.497069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.497070 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.497072 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.497073 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.497074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.497107 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.497109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.497110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.497122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.497124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.505312 IP 1.1.1.2.57348 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:33:32.505321 IP 1.1.1.2.29343 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.505322 LLDP, length 82 [|LLDP] 12:33:32.505372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:33:32.505373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12a3 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:33:32.505375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:33:32.505376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:33:32.505377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:33:32.505378 IP 192.168.1.1.14765 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:33:32.505379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:33:32.505380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.505410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:33:32.505412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:33:32.505416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:33:32.505419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:33:32.880013 LLDP, length 230: dentlab-infra1 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 9081 packets captured 9081 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_port_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=10] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:33:42 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=44, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=44, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=12] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=44, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=44, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=44, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=44, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=16] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:33:42 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=44, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:33:42 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=44, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=44, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=44, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] | |||
| Passed | functional/bridging/test_bridging_bum_traffic_port.py::test_bridging_bum_traffic_port_without_rif | 276.04 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_port_without_rif">Starting testcase:test_bridging_bum_traffic_port_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2557' coro=<test_bridging_bum_traffic_port_without_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py:132> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=45] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=45] Local address: 172.17.0.4, port 46280 INFO asyncssh:logging.py:92 [conn=45] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=45] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=45] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:33:42 UTC 2087 INFO asyncssh:logging.py:92 [conn=45, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=2] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=45, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=45, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=4] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=45, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=4] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra1... INFO asyncssh:logging.py:92 [conn=45, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=45, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=6] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6d3b80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI BridgedLLDP SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI LACPDU SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4ToMe SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Request_BC SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Reply SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Broadcast SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_SSH SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_Telnet SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_ICMP_Request SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DCHP_BC SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Reserved_MC SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_OSPFIGP SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_VRRP SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_IGMP SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_BGP SIP-DIP N/A Tx 604 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=45, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=6] Channel closed DEBUG infra1:Logger.py:156 12:38:03.160052 LLDP, length 82 [|LLDP] 12:38:03.160065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.160066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a4 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.160068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.160070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.160071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.160072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.160095 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.160097 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.160098 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.160099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.160107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.160109 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.160109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.160110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.168280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.168282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.168299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.168300 LLDP, length 82 [|LLDP] 12:38:03.168312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.168313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00aa c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.168314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.168315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.168316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.168317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.168318 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.168319 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.168320 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.168321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.168322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.179282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.179284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.179294 LLDP, length 82 [|LLDP] 12:38:03.179303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.179304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b3 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.179306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.179307 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.179308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.179314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.179315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.179316 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.179317 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.179318 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.179319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.179321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.187533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.187535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.187549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.187550 LLDP, length 82 [|LLDP] 12:38:03.187560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.187561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b9 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.187563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.187564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.187565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.187566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.187567 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.187568 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.187569 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.187570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.187571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.198539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.198541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.198554 LLDP, length 82 [|LLDP] 12:38:03.198562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.198563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c1 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.198565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.198566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.198567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.198572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.198574 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.198574 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.198575 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.198576 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.198577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.198578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.209549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.209551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.209564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.209565 LLDP, length 82 [|LLDP] 12:38:03.209575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.209576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ca 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.209577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.209578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.209579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.209580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.209581 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.209582 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.209583 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.209584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.209585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.217816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.217817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.217830 LLDP, length 82 [|LLDP] 12:38:03.217837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.217838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d0 902e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.217840 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.217841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.217842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.217847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.217849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.217850 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.217850 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.217852 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.217853 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.217854 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.228814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.228816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.228828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.228829 LLDP, length 82 [|LLDP] 12:38:03.228837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.228838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d8 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.228840 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.228841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.228842 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.228843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.228844 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.228845 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.228846 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.228847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.228848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.239823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.239825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.239837 LLDP, length 82 [|LLDP] 12:38:03.239845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.239846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e1 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.239848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.239849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.239850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.239856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.239857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.239858 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.239859 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.239860 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.239861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.239862 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.248086 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.248087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.248094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.248101 LLDP, length 82 [|LLDP] 12:38:03.248110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.248111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e7 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.248112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.248114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.248114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.248116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.248117 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.248118 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.248119 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.259080 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.259082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.259087 LLDP, length 82 [|LLDP] 12:38:03.259102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.259103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f0 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.259104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.259105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.259109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.259110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.267343 LLDP, length 82 [|LLDP] 12:38:03.267357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.267358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f6 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.267360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.267361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.267362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.267363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.267371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.267372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.278350 LLDP, length 82 [|LLDP] 12:38:03.278365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.278366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fe c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.278368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.278369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.278370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.278376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.278378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.278380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.289382 LLDP, length 82 [|LLDP] 12:38:03.289393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.289394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0107 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.289396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.289397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.289398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.289399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.289408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.289409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.289411 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.289412 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.289414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.289415 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.289415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.289416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.297629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.297631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.297643 LLDP, length 82 [|LLDP] 12:38:03.297651 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.297652 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010d 7692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.297653 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.297654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.297656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.297661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.297662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.297663 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.297664 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.297665 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.297666 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.297667 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.308637 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.308639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.308651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.308652 LLDP, length 82 [|LLDP] 12:38:03.308660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.308661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0115 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.308662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.308663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.308664 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.308665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.308666 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.308668 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.308668 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.308669 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.308670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.319647 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.319649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.319661 LLDP, length 82 [|LLDP] 12:38:03.319668 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.319669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011e 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.319670 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.319672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.319672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.319678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.319680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.319681 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.319682 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.319683 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.319683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.319684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.327907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.327909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.327921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.327922 LLDP, length 82 [|LLDP] 12:38:03.327929 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.327930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0124 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.327932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.327933 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.327934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.327935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.327936 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.327937 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.327938 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.327939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.327940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.338922 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.338924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.338936 LLDP, length 82 [|LLDP] 12:38:03.338945 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.338945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012c f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.338947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.338948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.338950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.338955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.338956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.338957 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.338958 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.338959 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.338960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.338961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.349926 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.349928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.349941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.349942 LLDP, length 82 [|LLDP] 12:38:03.349950 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.349950 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0135 5cfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.349952 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.349953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.349954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.349955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.349956 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.349957 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.349958 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.358196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.358197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.358203 LLDP, length 82 [|LLDP] 12:38:03.358211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.358212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013b a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.358213 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.358214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.358217 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.358219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.369200 LLDP, length 82 [|LLDP] 12:38:03.369207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.369208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0144 1026 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.369210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.369211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.369212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.369214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.369221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.369222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.377444 LLDP, length 82 [|LLDP] 12:38:03.377451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.377452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014a 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.377454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.377455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.377456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.377463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.377465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.377467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.388465 LLDP, length 82 [|LLDP] 12:38:03.388477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.388478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0152 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.388480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.388480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.388481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.388483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.388484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.388493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.388494 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.388496 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.388498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.388499 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.388500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.388501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.399479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.399481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.399493 LLDP, length 82 [|LLDP] 12:38:03.399502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.399503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015b 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.399504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.399505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.399506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.399511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.399513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.399514 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.399515 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.399516 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.399516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.399517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.407731 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.407732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.407744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.407745 LLDP, length 82 [|LLDP] 12:38:03.407753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.407754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0161 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.407756 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.407756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.407758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.407759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.407760 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.407761 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.407762 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.407763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.407764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.418739 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.418741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.418753 LLDP, length 82 [|LLDP] 12:38:03.418761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.418762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0169 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.418764 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.418765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.418766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.418771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.418773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.418774 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.418775 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.418776 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.418777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.418778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.429752 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.429753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.429765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.429766 LLDP, length 82 [|LLDP] 12:38:03.429775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.429776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0172 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.429777 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.429779 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.429780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.429781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.429782 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.429783 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.429784 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.429785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.429786 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.438006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.438008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.438020 LLDP, length 82 [|LLDP] 12:38:03.438028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.438029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0178 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.438030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.438031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.438032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.438037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.438039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.438040 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.438041 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.438042 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.438043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.438043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.449018 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.449019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.449031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.449032 LLDP, length 82 [|LLDP] 12:38:03.449040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.449041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0180 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.449042 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.449043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.449045 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.449046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.449047 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.449048 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.449049 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.457263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.457264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.457276 LLDP, length 82 [|LLDP] 12:38:03.457284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.457285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0187 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.457287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.457288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.457291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.457292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.468294 LLDP, length 82 [|LLDP] 12:38:03.468301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.468302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018f a9c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.468304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.468305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.468306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.468307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.468314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.468316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.479284 LLDP, length 82 [|LLDP] 12:38:03.479290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.479291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0198 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.479293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.479294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.479295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.479302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.479303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.479305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.487557 LLDP, length 82 [|LLDP] 12:38:03.487569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.487570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019e 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.487572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.487573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.487574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.487575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.487583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.487584 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.487587 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.487588 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.487589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.487590 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.487591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.487592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.498564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.498566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.498578 LLDP, length 82 [|LLDP] 12:38:03.498585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.498586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a6 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.498588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.498589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.498590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.498596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.498597 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.498598 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.498599 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.498600 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.498601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.498602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.509573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.509575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.509587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.509588 LLDP, length 82 [|LLDP] 12:38:03.509596 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.509596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01af 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.509598 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.509599 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.509600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.509601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.509602 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.509603 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.509604 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.509605 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.509606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.517833 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.517835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.517847 LLDP, length 82 [|LLDP] 12:38:03.517855 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.517856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b5 768f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.517857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.517858 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.517859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.517864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.517866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.517867 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.517868 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.517869 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.517869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.517870 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.528842 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.528844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.528859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.528860 LLDP, length 82 [|LLDP] 12:38:03.528869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.528870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01bd dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.528871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.528872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.528873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.528874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.528875 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.528876 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.528877 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.528878 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.528879 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.539855 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.539857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.539862 LLDP, length 82 [|LLDP] 12:38:03.539870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.539871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c6 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.539873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.539874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.539875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.539880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.539881 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.539883 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.539883 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.539884 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.539885 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.539886 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.548106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.548108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.548113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.548114 LLDP, length 82 [|LLDP] 12:38:03.548123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.548123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cc 9029 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.548125 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.548126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.548127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.548128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.548129 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.548130 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.548131 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.559109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.559110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.559115 LLDP, length 82 [|LLDP] 12:38:03.559127 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.559128 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d4 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.559129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.559131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.559134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.559135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.567371 LLDP, length 82 [|LLDP] 12:38:03.567384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.567384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01db 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.567387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.567388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.567389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.567390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.567397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.567399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.578376 LLDP, length 82 [|LLDP] 12:38:03.578390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.578391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e3 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.578393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.578394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.578395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.578402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.578403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.578406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.589423 LLDP, length 82 [|LLDP] 12:38:03.589436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.589437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ec 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.589439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.589440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.589441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.589442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.589451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.589452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.589454 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.589455 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.589456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.589457 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.589458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.589460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.597659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.597661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.597673 LLDP, length 82 [|LLDP] 12:38:03.597681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.597682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f2 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.597684 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.597685 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.597686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.597691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.597693 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.597694 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.597694 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.597695 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.597696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.597697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.608747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.608748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.608755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.608755 LLDP, length 82 [|LLDP] 12:38:03.608764 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.608765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fa c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.608766 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.608767 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.608768 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.608770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.608771 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.608772 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.608773 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.608774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.608774 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.619677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.619679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.619690 LLDP, length 82 [|LLDP] 12:38:03.619698 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.619699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0203 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.619701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.619702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.619703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.619708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.619710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.619711 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.619712 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.619713 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.619714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.619715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.627935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.627937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.627949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.627949 LLDP, length 82 [|LLDP] 12:38:03.627958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.627958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0209 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.627960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.627961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.627962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.627964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.627965 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.627966 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.627966 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.627967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.627968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.638945 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.638947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.638959 LLDP, length 82 [|LLDP] 12:38:03.638967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.638968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0211 dcf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.638969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.638970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.638971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.638976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.638978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.638979 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.638980 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.638981 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.638982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.638982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.649956 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.649958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.649970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.649972 LLDP, length 82 [|LLDP] 12:38:03.649980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.649981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021a 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.649983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.649984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.649985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.649986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.649987 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.649988 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.649989 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.658219 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.658221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.658226 LLDP, length 82 [|LLDP] 12:38:03.658234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.658235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0220 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.658237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.658237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.658241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.658242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.669212 LLDP, length 82 [|LLDP] 12:38:03.669220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.669227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0228 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.669229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.669230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.669231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.669232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.669239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.669240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.677488 LLDP, length 82 [|LLDP] 12:38:03.677495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.677496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022f 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.677497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.677499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.677500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.677506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.677508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.677511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.688495 LLDP, length 82 [|LLDP] 12:38:03.688509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.688510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0237 a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.688512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.688513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.688514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.688515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.688516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.688526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.688528 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.688530 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.688531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.688532 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.688533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.688534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.699503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.699505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.699517 LLDP, length 82 [|LLDP] 12:38:03.699525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.699526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0240 1026 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.699527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.699528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.699529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.699534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.699536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.699537 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.699538 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.699539 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.699540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.699541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.707758 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.707769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.707776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.707777 LLDP, length 82 [|LLDP] 12:38:03.707785 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.707786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0246 5cf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.707788 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.707789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.707790 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.707791 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.707792 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.707793 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.707794 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.707795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.707796 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.718768 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.718770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.718782 LLDP, length 82 [|LLDP] 12:38:03.718790 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.718790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024e c361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.718792 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.718793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.718794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.718800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.718802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.718803 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.718803 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.718804 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.718805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.718806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.729783 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.729785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.729790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.729791 LLDP, length 82 [|LLDP] 12:38:03.729800 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.729801 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0257 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.729802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.729803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.729804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.729806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.729807 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.729808 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.729808 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.729809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.729810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.739324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.739325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.739331 LLDP, length 82 [|LLDP] 12:38:03.739344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.739346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025d 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.739347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.739348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.739349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.739355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.739356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.739357 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.739358 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.739359 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.739361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.739362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.749043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.749045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.749051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.749052 LLDP, length 82 [|LLDP] 12:38:03.749060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.749061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0265 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.749063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.749064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.749065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.749066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.749067 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.749068 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.749069 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.757293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.757294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.757306 LLDP, length 82 [|LLDP] 12:38:03.757314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.757315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026c 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.757316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.757317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.757321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.757322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.768302 LLDP, length 82 [|LLDP] 12:38:03.768308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.768309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0274 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.768317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.768318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.768319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.768320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.768327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.768328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.779312 LLDP, length 82 [|LLDP] 12:38:03.779326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.779326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027c f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.779329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.779329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.779330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.779343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.779345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.779347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.787597 LLDP, length 82 [|LLDP] 12:38:03.787608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.787609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0283 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.787611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.787612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.787613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.787614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.787615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.787626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.787628 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.787630 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.787631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.787632 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.787633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.787635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.798603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.798605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.798619 LLDP, length 82 [|LLDP] 12:38:03.798628 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.798629 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028b a9c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.798630 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.798632 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.798633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.798639 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.798640 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.798641 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.798642 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.798643 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.798644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.798645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.809613 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.809614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.809622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.809623 LLDP, length 82 [|LLDP] 12:38:03.809633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.809633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0294 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.809635 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.809636 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.809637 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.809639 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.809640 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.809641 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.809641 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.809642 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.809643 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.817880 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.817883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.817892 LLDP, length 82 [|LLDP] 12:38:03.817903 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.817904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029a 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.817905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.817906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.817907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.817913 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.817915 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.817915 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.817916 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.817917 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.817918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.817919 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.828886 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.828888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.828903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.828905 LLDP, length 82 [|LLDP] 12:38:03.828916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.828917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a2 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.828918 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.828919 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.828920 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.828922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.828923 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.828924 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.828924 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.828925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.828926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.839891 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.839893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.839907 LLDP, length 82 [|LLDP] 12:38:03.839917 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.839917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ab 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.839919 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.839920 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.839921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.839927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.839928 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.839929 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.839930 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.839931 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.839932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.839932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.848145 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.848146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.848154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.848155 LLDP, length 82 [|LLDP] 12:38:03.848165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.848166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b1 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.848167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.848168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.848170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.848171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.848172 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.848173 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.848174 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.859144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.859146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.859162 LLDP, length 82 [|LLDP] 12:38:03.859171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.859172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b9 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.859173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.859174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.859178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.859179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.867406 LLDP, length 82 [|LLDP] 12:38:03.867415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.867416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c0 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.867419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.867420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.867421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.867421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.867430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.867432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.878411 LLDP, length 82 [|LLDP] 12:38:03.878424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.878425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c8 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.878428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.878429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.878430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.878438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.878440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.878442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.889439 LLDP, length 82 [|LLDP] 12:38:03.889452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.889453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d0 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.889455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.889456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.889457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.889458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.889459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.889468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.889469 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.889471 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.889473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.889474 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.889475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.889475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.897692 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.897694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.897708 LLDP, length 82 [|LLDP] 12:38:03.897717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.897718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d7 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.897719 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.897721 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.897722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.897727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.897728 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.897730 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.897730 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.897731 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.897732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.897733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.908709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.908711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.908726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.908727 LLDP, length 82 [|LLDP] 12:38:03.908738 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.908738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02df a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.908740 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.908741 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.908742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.908743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.908744 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.908745 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.908746 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.908747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.908748 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.919713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.919715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.919729 LLDP, length 82 [|LLDP] 12:38:03.919738 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.919738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e8 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.919740 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.919741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.919742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.919747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.919748 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.919749 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.919750 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.919751 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.919752 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.919753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.927969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.927971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.927984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.927985 LLDP, length 82 [|LLDP] 12:38:03.927994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.927994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ee 5cf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.927996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.927997 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.927998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.927999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.928000 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.928001 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.928002 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.928003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.928004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.938989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.938990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.939005 LLDP, length 82 [|LLDP] 12:38:03.939018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.939019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f6 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.939020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.939021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.939022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.939028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.939030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.939030 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.939031 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.939032 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.939034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.939034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.947234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.947236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.947250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.947251 LLDP, length 82 [|LLDP] 12:38:03.947260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.947261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fd 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.947263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.947264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.947265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.947266 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.947267 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.947268 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.947269 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.958233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.958235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.958248 LLDP, length 82 [|LLDP] 12:38:03.958256 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.958257 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0305 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.958258 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.958260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.958263 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.958264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.969278 LLDP, length 82 [|LLDP] 12:38:03.969288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.969288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030d dcfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.969291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.969292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.969293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.969294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.969304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.969305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.977501 LLDP, length 82 [|LLDP] 12:38:03.977514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.977515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0314 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.977517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.977518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.977519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.977526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.977528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.977531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.988528 LLDP, length 82 [|LLDP] 12:38:03.988541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.988542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031c 9026 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.988544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.988545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.988546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.988547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.988548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.988559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.988560 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.988562 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.988563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.988564 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.988565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.988566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.999540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.999542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.999555 LLDP, length 82 [|LLDP] 12:38:03.999563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.999564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0324 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.999565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.999566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.999567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.999573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.999575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.999576 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.999577 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.999578 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.999579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.999580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.007795 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.007796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.007803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.007804 LLDP, length 82 [|LLDP] 12:38:04.007813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.007814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032b 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.007815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.007816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.007817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.007819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.007820 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.007821 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.007822 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.007822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.007823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.018799 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.018801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.018814 LLDP, length 82 [|LLDP] 12:38:04.018822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.018823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0333 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.018824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.018825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.018826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.018832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.018834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.018835 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.018836 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.018837 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.018837 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.018838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.029810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.029812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.029824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.029825 LLDP, length 82 [|LLDP] 12:38:04.029834 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.029835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033c 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.029836 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.029837 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.029838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.029840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.029841 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.029842 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.029843 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.029844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.029845 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.038072 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.038073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.038079 LLDP, length 82 [|LLDP] 12:38:04.038088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.038089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0342 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.038091 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.038092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.038093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.038098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.038100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.038101 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.038102 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.038103 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.038104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.038105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.049073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.049075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.049081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.049082 LLDP, length 82 [|LLDP] 12:38:04.049090 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.049091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034a c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.049093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.049094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.049095 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.049096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.049097 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.049098 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.049099 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.057364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.057365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.057371 LLDP, length 82 [|LLDP] 12:38:04.057378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.057379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0351 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.057381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.057382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.057385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.057387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.068374 LLDP, length 82 [|LLDP] 12:38:04.068382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.068382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0359 768f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.068384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.068385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.068386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.068387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.068395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.068397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.079383 LLDP, length 82 [|LLDP] 12:38:04.079390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.079391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0361 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.079393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.079394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.079395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.079401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.079403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.079405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.087615 LLDP, length 82 [|LLDP] 12:38:04.087623 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.087623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0368 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.087625 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.087626 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.087627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.087628 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.087630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.087638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.087639 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.087641 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.087643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.087644 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.087645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.087646 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.098621 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.098623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.098635 LLDP, length 82 [|LLDP] 12:38:04.098644 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.098645 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0370 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.098646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.098647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.098648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.098653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.098655 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.098656 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.098657 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.098658 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.098659 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.098660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.109643 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.109645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.109659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.109660 LLDP, length 82 [|LLDP] 12:38:04.109676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.109677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0378 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.109679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.109680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.109681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.109683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.109684 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.109685 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.109686 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.109686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.109687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.117925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.117927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.117941 LLDP, length 82 [|LLDP] 12:38:04.117952 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.117953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037f 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.117954 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.117955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.117957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.117962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.117964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.117965 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.117966 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.117967 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.117968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.117968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.128938 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.128947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.128957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.128958 LLDP, length 82 [|LLDP] 12:38:04.128969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.128970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0387 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.128971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.128972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.128973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.128974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.128976 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.128977 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.128978 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.128979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.128980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.139923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.139925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.139939 LLDP, length 82 [|LLDP] 12:38:04.139947 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.139948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0390 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.139950 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.139951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.139952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.139957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.139959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.139960 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.139961 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.139962 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.139963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.139964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.148173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.148175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.148183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.148184 LLDP, length 82 [|LLDP] 12:38:04.148192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.148192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0396 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.148194 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.148195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.148196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.148197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.148198 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.148199 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.148200 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.159218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.159220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.159227 LLDP, length 82 [|LLDP] 12:38:04.159235 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.159236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039e c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.159237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.159238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.159241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.159243 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.167429 LLDP, length 82 [|LLDP] 12:38:04.167441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.167442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a5 102e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.167445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.167446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.167447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.167449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.167457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.167459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.178439 LLDP, length 82 [|LLDP] 12:38:04.178452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.178453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ad 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.178456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.178457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.178458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.178466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.178467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.178470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.189465 LLDP, length 82 [|LLDP] 12:38:04.189477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.189478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b5 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.189480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.189481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.189483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.189484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.189484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.189495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.189496 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.189498 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.189499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.189501 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.189502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.189502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.197722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.197724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.197737 LLDP, length 82 [|LLDP] 12:38:04.197745 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.197745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03bc 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.197747 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.197748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.197749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.197754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.197756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.197756 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.197757 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.197758 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.197759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.197760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.208735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.208737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.208752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.208753 LLDP, length 82 [|LLDP] 12:38:04.208762 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.208763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c4 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.208764 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.208766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.208767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.208768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.208769 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.208770 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.208771 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.208772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.208773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.219741 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.219743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.219757 LLDP, length 82 [|LLDP] 12:38:04.219765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.219766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cc f694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.219767 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.219768 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.219770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.219775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.219776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.219777 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.219778 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.219779 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.219780 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.219781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.227997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.227999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.228013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.228014 LLDP, length 82 [|LLDP] 12:38:04.228022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.228023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d3 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.228024 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.228025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.228027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.228028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.228029 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.228030 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.228031 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.228032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.228033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.239007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.239009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.239023 LLDP, length 82 [|LLDP] 12:38:04.239031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.239031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03db a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.239033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.239034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.239035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.239040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.239042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.239042 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.239043 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.239044 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.239045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.239046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.247262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.247264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.247271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.247273 LLDP, length 82 [|LLDP] 12:38:04.247282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.247283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e1 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.247284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.247285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.247286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.247287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.247289 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.247290 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.247291 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.258296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.258298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.258307 LLDP, length 82 [|LLDP] 12:38:04.258317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.258318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ea 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.258320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.258321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.258325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.258326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.269322 LLDP, length 82 [|LLDP] 12:38:04.269331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.269332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f2 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.269334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.269335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.269336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.269337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.269348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.269349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.277538 LLDP, length 82 [|LLDP] 12:38:04.277553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.277554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f9 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.277556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.277557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.277558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.277568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.277569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.277572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.288559 LLDP, length 82 [|LLDP] 12:38:04.288568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.288569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0401 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.288571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.288572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.288573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.288575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.288576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.288585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.288586 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.288588 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.288590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.288591 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.288592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.288592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.299565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.299567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.299580 LLDP, length 82 [|LLDP] 12:38:04.299588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.299589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0409 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.299591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.299592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.299593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.299598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.299599 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.299600 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.299601 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.299602 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.299603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.299604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.307821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.307823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.307836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.307837 LLDP, length 82 [|LLDP] 12:38:04.307846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.307847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0410 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.307849 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.307850 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.307850 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.307852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.307853 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.307854 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.307855 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.307855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.307856 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.318832 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.318833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.318847 LLDP, length 82 [|LLDP] 12:38:04.318855 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.318855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0418 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.318857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.318858 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.318859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.318864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.318866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.318867 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.318868 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.318869 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.318870 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.318870 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.329843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.329845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.329859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.329860 LLDP, length 82 [|LLDP] 12:38:04.329868 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.329869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0420 f68f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.329871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.329871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.329873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.329874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.329875 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.329876 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.329877 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.329878 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.329879 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.338098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.338100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.338114 LLDP, length 82 [|LLDP] 12:38:04.338121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.338122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0427 435c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.338123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.338124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.338125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.338131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.338132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.338133 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.338135 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.338135 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.338136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.338137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.349109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.349110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.349123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.349124 LLDP, length 82 [|LLDP] 12:38:04.349133 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.349133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042f a9c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.349135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.349136 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.349137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.349139 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.349139 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.349140 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.349141 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.357372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.357373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.357380 LLDP, length 82 [|LLDP] 12:38:04.357387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.357388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0435 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.357390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.357390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.357394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.357395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.368364 LLDP, length 82 [|LLDP] 12:38:04.368376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.368377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043e 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.368379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.368381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.368382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.368382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.368391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.368393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.379391 LLDP, length 82 [|LLDP] 12:38:04.379398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.379399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0446 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.379402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.379403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.379403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.379411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.379413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.379416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.389142 LLDP, length 82 [|LLDP] 12:38:04.389149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.389150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044d 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.389153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.389154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.389155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.389156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.389157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.389168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.389169 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.389171 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.389172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.389173 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.389174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.389175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.398857 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.398859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.398866 LLDP, length 82 [|LLDP] 12:38:04.398874 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.398875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0455 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.398876 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.398877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.398878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.398884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.398885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.398886 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.398887 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.398888 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.398889 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.398890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.409668 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.409670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.409678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.409679 LLDP, length 82 [|LLDP] 12:38:04.409687 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.409688 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045d dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.409689 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.409690 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.409691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.409693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.409694 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.409695 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.409696 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.409696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.409697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.417926 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.417928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.417935 LLDP, length 82 [|LLDP] 12:38:04.417943 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.417944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0464 29c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.417946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.417947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.417948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.417953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.417954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.417955 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.417956 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.417957 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.417958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.417959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.428935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.428937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.428951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.428952 LLDP, length 82 [|LLDP] 12:38:04.428961 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.428961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046c 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.428963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.428964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.428965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.428967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.428968 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.428969 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.428969 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.428970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.428971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.439944 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.439946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.439963 LLDP, length 82 [|LLDP] 12:38:04.439971 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.439972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0474 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.439974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.439974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.439975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.439981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.439982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.439983 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.439984 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.439985 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.439986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.439987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.448797 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.448799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.448806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.448808 LLDP, length 82 [|LLDP] 12:38:04.448816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.448817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047b 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.448819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.448820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.448820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.448822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.448823 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.448824 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.448825 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.459198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.459199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.459213 LLDP, length 82 [|LLDP] 12:38:04.459221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.459222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0483 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.459224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.459225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.459228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.459230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.467457 LLDP, length 82 [|LLDP] 12:38:04.467468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.467469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0489 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.467471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.467472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.467473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.467474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.467483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.467485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.478487 LLDP, length 82 [|LLDP] 12:38:04.478494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.478495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0492 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.478497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.478498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.478499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.478508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.478509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.478512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.489497 LLDP, length 82 [|LLDP] 12:38:04.489509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.489510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049a c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.489513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.489514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.489515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.489516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.489517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.489527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.489528 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.489531 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.489532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.489533 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.489534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.489535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.497753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.497755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.497762 LLDP, length 82 [|LLDP] 12:38:04.497770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.497771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a1 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.497772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.497773 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.497774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.497779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.497781 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.497782 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.497783 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.497784 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.497785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.497786 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.508760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.508761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.508774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.508775 LLDP, length 82 [|LLDP] 12:38:04.508783 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.508784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a9 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.508786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.508786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.508788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.508789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.508790 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.508791 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.508792 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.508792 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.508793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.519770 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.519771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.519784 LLDP, length 82 [|LLDP] 12:38:04.519792 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.519793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b1 dcf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.519794 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.519795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.519796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.519802 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.519803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.519804 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.519805 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.519806 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.519807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.519808 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.528045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.528047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.528058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.528059 LLDP, length 82 [|LLDP] 12:38:04.528070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.528071 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b8 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.528073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.528074 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.528074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.528076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.528077 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.528078 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.528079 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.528080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.528081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.539039 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.539041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.539055 LLDP, length 82 [|LLDP] 12:38:04.539064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.539065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c0 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.539066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.539067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.539068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.539073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.539075 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.539076 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.539077 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.539078 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.539079 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.539080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.547291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.547293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.547300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.547301 LLDP, length 82 [|LLDP] 12:38:04.547310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.547311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c6 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.547312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.547313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.547314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.547316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.547317 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.547318 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.547319 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.558291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.558293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.558307 LLDP, length 82 [|LLDP] 12:38:04.558316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.558317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cf 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.558318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.558319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.558322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.558324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.569340 LLDP, length 82 [|LLDP] 12:38:04.569348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.569349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d7 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.569352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.569353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.569354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.569355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.569363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.569365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.577582 LLDP, length 82 [|LLDP] 12:38:04.577589 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.577590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04dd f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.577592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.577593 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.577595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.577603 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.577604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.577607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.588587 LLDP, length 82 [|LLDP] 12:38:04.588599 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.588600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e6 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.588603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.588604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.588605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.588606 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.588607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.588617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.588618 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.588620 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.588621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.588622 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.588623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.588624 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.599592 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.599593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.599607 LLDP, length 82 [|LLDP] 12:38:04.599615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.599616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ee c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.599617 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.599618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.599619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.599624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.599626 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.599627 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.599628 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.599628 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.599630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.599630 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.607850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.607852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.607865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.607866 LLDP, length 82 [|LLDP] 12:38:04.607874 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.607875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f5 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.607877 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.607878 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.607879 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.607880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.607881 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.607882 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.607883 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.607884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.607885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.618864 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.618866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.618879 LLDP, length 82 [|LLDP] 12:38:04.618887 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.618888 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fd 768f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.618889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.618890 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.618891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.618896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.618898 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.618899 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.618900 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.618901 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.618902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.618903 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.629873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.629875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.629881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.629883 LLDP, length 82 [|LLDP] 12:38:04.629891 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.629892 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0505 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.629894 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.629895 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.629896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.629897 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.629898 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.629899 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.629900 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.629901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.629902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.638131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.638133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.638148 LLDP, length 82 [|LLDP] 12:38:04.638156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.638157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050c 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.638158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.638159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.638160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.638166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.638167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.638168 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.638169 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.638170 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.638171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.638172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.649133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.649135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.649143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.649144 LLDP, length 82 [|LLDP] 12:38:04.649152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.649153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0514 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.649155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.649156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.649157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.649158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.649159 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.649160 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.649161 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.657452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.657453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.657461 LLDP, length 82 [|LLDP] 12:38:04.657469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.657470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051a dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.657472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.657473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.657477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.657478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.668423 LLDP, length 82 [|LLDP] 12:38:04.668430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.668431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0523 435f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.668433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.668434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.668435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.668436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.668445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.668446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.679404 LLDP, length 82 [|LLDP] 12:38:04.679416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.679417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052b a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.679419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.679420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.679421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.679428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.679430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.679433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.687676 LLDP, length 82 [|LLDP] 12:38:04.687689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.687690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0531 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.687692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.687693 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.687694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.687695 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.687696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.687705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.687707 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.687709 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.687710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.687711 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.687712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.687713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.698687 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.698688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.698701 LLDP, length 82 [|LLDP] 12:38:04.698710 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.698710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053a 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.698712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.698713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.698714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.698719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.698721 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.698722 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.698723 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.698724 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.698725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.698726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.709695 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.709697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.709711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.709712 LLDP, length 82 [|LLDP] 12:38:04.709720 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.709721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0542 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.709722 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.709723 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.709724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.709726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.709727 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.709728 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.709729 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.709730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.709731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.717953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.717955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.717969 LLDP, length 82 [|LLDP] 12:38:04.717977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.717978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0549 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.717980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.717981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.717981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.717987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.717989 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.717990 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.717991 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.717992 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.717993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.717993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.728966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.728968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.728981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.728982 LLDP, length 82 [|LLDP] 12:38:04.728991 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.728992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0551 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.728994 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.728995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.728996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.728997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.728998 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.728999 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.729000 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.729001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.729002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.737225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.737227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.737234 LLDP, length 82 [|LLDP] 12:38:04.737243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.737244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0557 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.737245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.737246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.737247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.737253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.737255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.737255 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.737256 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.737257 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.737258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.737260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.748234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.748236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.748243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.748244 LLDP, length 82 [|LLDP] 12:38:04.748252 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.748252 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0560 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.748254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.748255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.748256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.748257 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.748259 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.748259 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.748260 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.759252 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.759254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.759265 LLDP, length 82 [|LLDP] 12:38:04.759277 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.759278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0568 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.759280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.759281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.759284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.759286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.767531 LLDP, length 82 [|LLDP] 12:38:04.767543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.767544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056e dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.767547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.767548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.767549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.767550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.767564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.767565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.778511 LLDP, length 82 [|LLDP] 12:38:04.778523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.778524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0577 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.778526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.778527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.778529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.778541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.778543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.778545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.789539 LLDP, length 82 [|LLDP] 12:38:04.789553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.789554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057f a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.789556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.789557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.789558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.789560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.789561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.789574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.789575 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.789577 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.789578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.789579 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.789580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.789581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.797799 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.797808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.797818 LLDP, length 82 [|LLDP] 12:38:04.797832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.797833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0585 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.797834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.797836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.797837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.797842 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.797844 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.797845 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.797846 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.797847 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.797848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.797849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.808846 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.808849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.808864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.808865 LLDP, length 82 [|LLDP] 12:38:04.808888 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.808889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058e 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.808891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.808892 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.808893 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.808894 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.808896 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.808897 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.808898 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.808899 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.808900 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.819853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.819856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.819872 LLDP, length 82 [|LLDP] 12:38:04.819890 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.819891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0596 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.819893 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.819894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.819895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.819902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.819903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.819904 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.819905 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.819906 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.819907 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.819908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.828106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.828109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.828124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.828125 LLDP, length 82 [|LLDP] 12:38:04.828141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.828142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059d 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.828144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.828145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.828146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.828148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.828149 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.828150 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.828151 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.828151 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.828152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.839117 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.839121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.839137 LLDP, length 82 [|LLDP] 12:38:04.839153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.839154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a5 7693 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.839155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.839156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.839157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.839164 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.839165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.839166 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.839168 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.839168 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.839169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.839170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.847361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.847364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.847379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.847381 LLDP, length 82 [|LLDP] 12:38:04.847397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.847398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ab c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.847399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.847400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.847401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.847403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.847404 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.847405 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.847406 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.858388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.858391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.858406 LLDP, length 82 [|LLDP] 12:38:04.858422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.858423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b4 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.858425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.858426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.858430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.858432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.869416 LLDP, length 82 [|LLDP] 12:38:04.869432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.869433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bc 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.869435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.869436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.869437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.869438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.869454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.869456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.877602 LLDP, length 82 [|LLDP] 12:38:04.877614 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.877615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c2 dcf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.877616 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.877618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.877619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.877628 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.877630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.877633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.888624 LLDP, length 82 [|LLDP] 12:38:04.888639 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.888640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05cb 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.888643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.888643 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.888644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.888645 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.888646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.888658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.888659 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.888661 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.888663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.888663 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.888664 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.888665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.899625 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.899627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.899640 LLDP, length 82 [|LLDP] 12:38:04.899650 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.899651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d3 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.899653 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.899654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.899655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.899660 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.899662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.899662 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.899663 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.899664 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.899665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.899666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.907886 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.907888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.907896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.907897 LLDP, length 82 [|LLDP] 12:38:04.907906 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.907907 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d9 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.907909 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.907910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.907911 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.907912 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.907913 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.907914 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.907915 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.907916 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.907917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.918891 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.918893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.918906 LLDP, length 82 [|LLDP] 12:38:04.918916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.918917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e2 5cf7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.918918 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.918919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.918920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.918925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.918927 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.918928 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.918929 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.918929 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.918930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.918931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.929898 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.929900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.929913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.929914 LLDP, length 82 [|LLDP] 12:38:04.929924 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.929924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ea c35c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.929926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.929927 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.929928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.929929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.929930 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.929931 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.929932 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.929933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.929933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.938164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.938166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.938173 LLDP, length 82 [|LLDP] 12:38:04.938182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.938183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f1 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.938185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.938186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.938187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.938192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.938193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.938194 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.938195 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.938196 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.938203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.938205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.949186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.949189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.949201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.949202 LLDP, length 82 [|LLDP] 12:38:04.949215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.949216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f9 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.949218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.949219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.949220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.949221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.949222 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.949223 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.949224 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.957442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.957444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.957451 LLDP, length 82 [|LLDP] 12:38:04.957459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.957460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ff c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.957461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.957462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.957465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.957467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.968423 LLDP, length 82 [|LLDP] 12:38:04.968435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.968436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0608 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.968439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.968440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.968441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.968442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.968450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.968452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.979447 LLDP, length 82 [|LLDP] 12:38:04.979458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.979459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0610 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.979461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.979462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.979464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.979475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.979476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.979479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.987712 LLDP, length 82 [|LLDP] 12:38:04.987724 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.987725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0616 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.987727 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.987728 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.987729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.987730 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.987731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.987741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.987742 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.987744 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.987746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.987747 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.987748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.987749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.998717 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.998719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.998732 LLDP, length 82 [|LLDP] 12:38:04.998742 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.998743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061f 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.998744 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.998746 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.998746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.998752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.998753 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.998754 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.998755 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.998756 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.998757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.998758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.009738 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.009741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.009757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.009759 LLDP, length 82 [|LLDP] 12:38:05.009769 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.009770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0627 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.009772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.009773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.009774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.009775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.009776 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.009777 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.009778 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.009779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.009780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.017985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.017986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.018000 LLDP, length 82 [|LLDP] 12:38:05.018010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.018010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062d f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.018012 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.018013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.018014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.018019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.018021 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.018022 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.018023 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.018023 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.018024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.018025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.028994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.028996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.029009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.029010 LLDP, length 82 [|LLDP] 12:38:05.029020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.029021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0636 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.029022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.029023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.029025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.029026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.029027 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.029028 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.029029 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.029030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.029030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.037258 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.037260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.037268 LLDP, length 82 [|LLDP] 12:38:05.037277 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.037278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063c a9c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.037279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.037280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.037281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.037286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.037288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.037289 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.037290 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.037291 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.037292 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.037293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.048276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.048278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.048289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.048290 LLDP, length 82 [|LLDP] 12:38:05.048301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.048301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0645 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.048303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.048304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.048305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.048306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.048308 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.048308 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.048309 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.059270 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.059272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.059280 LLDP, length 82 [|LLDP] 12:38:05.059289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.059290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064d 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.059292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.059293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.059296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.059298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.067538 LLDP, length 82 [|LLDP] 12:38:05.067547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.067548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0653 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.067550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.067551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.067552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.067553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.067562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.067563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.078558 LLDP, length 82 [|LLDP] 12:38:05.078572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.078574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065c 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.078576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.078577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.078578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.078593 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.078595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.078598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.089559 LLDP, length 82 [|LLDP] 12:38:05.089569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.089570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0664 902d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.089573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.089574 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.089585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.089587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.089588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.089600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.089601 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.089603 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.089605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.089606 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.089607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.089608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.097834 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.097836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.097852 LLDP, length 82 [|LLDP] 12:38:05.097867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.097868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066a dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.097869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.097871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.097872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.097878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.097880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.097881 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.097882 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.097883 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.097884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.097885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.108826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.108828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.108845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.108846 LLDP, length 82 [|LLDP] 12:38:05.108858 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.108859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0673 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.108861 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.108862 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.108863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.108864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.108865 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.108866 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.108867 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.108867 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.108869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.119837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.119840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.119855 LLDP, length 82 [|LLDP] 12:38:05.119867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.119868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067b a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.119869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.119870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.119871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.119877 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.119878 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.119879 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.119880 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.119881 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.119882 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.119883 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.128092 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.128094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.128108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.128109 LLDP, length 82 [|LLDP] 12:38:05.128120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.128120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0681 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.128122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.128123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.128124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.128125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.128126 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.128127 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.128128 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.128129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.128130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.139097 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.139098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.139111 LLDP, length 82 [|LLDP] 12:38:05.139120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.139121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068a 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.139122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.139123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.139124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.139130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.139132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.139133 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.139134 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.139135 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.139136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.139137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.147351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.147353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.147359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.147360 LLDP, length 82 [|LLDP] 12:38:05.147368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.147369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0690 a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.147370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.147371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.147372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.147374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.147375 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.147376 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.147377 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.158374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.158376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.158381 LLDP, length 82 [|LLDP] 12:38:05.158389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.158389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0699 1026 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.158391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.158392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.158395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.158396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.169409 LLDP, length 82 [|LLDP] 12:38:05.169417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.169418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a1 7690 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.169420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.169421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.169422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.169423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.169432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.169433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.177640 LLDP, length 82 [|LLDP] 12:38:05.177647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.177648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a7 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.177650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.177651 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.177652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.177659 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.177661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.177663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.188640 LLDP, length 82 [|LLDP] 12:38:05.188647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.188648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b0 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.188650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.188651 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.188652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.188653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.188654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.188663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.188664 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.188666 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.188668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.188669 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.188670 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.188671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.199659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.199661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.199666 LLDP, length 82 [|LLDP] 12:38:05.199674 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.199675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b8 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.199677 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.199677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.199678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.199684 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.199685 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.199686 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.199687 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.199688 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.199689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.199690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.207901 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.207902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.207915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.207916 LLDP, length 82 [|LLDP] 12:38:05.207924 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.207925 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06be dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.207926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.207927 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.207929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.207930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.207931 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.207932 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.207933 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.207934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.207935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.218913 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.218914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.218927 LLDP, length 82 [|LLDP] 12:38:05.218934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.218935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c7 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.218936 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.218937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.218938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.218943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.218945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.218946 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.218947 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.218948 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.218949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.218950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.227172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.227174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.227186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.227187 LLDP, length 82 [|LLDP] 12:38:05.227197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.227197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cd 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.227199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.227200 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.227201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.227203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.227204 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.227205 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.227206 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.227207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.227208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.238198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.238200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.238216 LLDP, length 82 [|LLDP] 12:38:05.238227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.238228 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d5 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.238230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.238231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.238232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.238238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.238240 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.238241 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.238242 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.238243 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.238244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.238244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.249195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.249197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.249204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.249205 LLDP, length 82 [|LLDP] 12:38:05.249216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.249217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06de 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.249218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.249219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.249220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.249222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.249223 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.249224 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.249224 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.257441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.257443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.257456 LLDP, length 82 [|LLDP] 12:38:05.257466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.257467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e4 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.257468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.257469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.257472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.257474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.268450 LLDP, length 82 [|LLDP] 12:38:05.268463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.268464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ed 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.268466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.268467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.268468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.268469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.268478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.268480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.279461 LLDP, length 82 [|LLDP] 12:38:05.279473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.279474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f5 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.279477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.279478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.279479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.279487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.279488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.279491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.287736 LLDP, length 82 [|LLDP] 12:38:05.287752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.287752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fb c362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.287755 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.287756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.287757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.287758 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.287759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.287769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.287770 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.287772 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.287773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.287774 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.287775 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.287776 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.298742 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.298744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.298757 LLDP, length 82 [|LLDP] 12:38:05.298766 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.298767 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0704 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.298769 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.298769 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.298770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.298776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.298777 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.298778 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.298779 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.298780 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.298781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.298782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.309753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.309754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.309768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.309769 LLDP, length 82 [|LLDP] 12:38:05.309779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.309780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070c 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.309782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.309783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.309784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.309785 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.309786 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.309787 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.309788 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.309789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.309790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.318011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.318012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.318026 LLDP, length 82 [|LLDP] 12:38:05.318035 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.318036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0712 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.318037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.318038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.318039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.318045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.318046 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.318047 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.318049 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.318050 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.318050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.318051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.329021 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.329023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.329037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.329038 LLDP, length 82 [|LLDP] 12:38:05.329048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.329049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071b 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.329050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.329051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.329052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.329053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.329054 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.329055 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.329056 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.329057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.329058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.337280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.337282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.337295 LLDP, length 82 [|LLDP] 12:38:05.337305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.337306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0721 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.337308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.337309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.337310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.337315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.337317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.337318 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.337319 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.337320 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.337320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.337321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.348281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.348282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.348290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.348292 LLDP, length 82 [|LLDP] 12:38:05.348301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.348301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0729 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.348303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.348304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.348305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.348307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.348308 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.348309 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.348309 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.359315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.359316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.359323 LLDP, length 82 [|LLDP] 12:38:05.359332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.359332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0732 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.359342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.359343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.359347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.359348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.367545 LLDP, length 82 [|LLDP] 12:38:05.367554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.367555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0738 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.367557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.367558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.367559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.367560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.367569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.367570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.378584 LLDP, length 82 [|LLDP] 12:38:05.378593 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.378594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0741 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.378596 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.378597 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.378598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.378606 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.378608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.378610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.389585 LLDP, length 82 [|LLDP] 12:38:05.389593 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.389594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0749 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.389596 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.389597 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.389598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.389599 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.389600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.389610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.389611 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.389613 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.389614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.389615 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.389616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.389617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.397836 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.397837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.397851 LLDP, length 82 [|LLDP] 12:38:05.397860 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.397860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074f c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.397862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.397863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.397864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.397870 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.397871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.397872 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.397873 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.397874 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.397875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.397876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.408843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.408845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.408858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.408859 LLDP, length 82 [|LLDP] 12:38:05.408868 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.408869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0758 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.408870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.408871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.408873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.408874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.408875 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.408876 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.408877 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.408877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.408878 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.419861 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.419863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.419871 LLDP, length 82 [|LLDP] 12:38:05.419880 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.419881 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0760 9029 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.419882 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.419883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.419884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.419889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.419891 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.419892 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.419893 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.419894 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.419895 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.419896 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.428115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.428117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.428132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.428133 LLDP, length 82 [|LLDP] 12:38:05.428143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.428144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0766 dcf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.428146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.428147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.428148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.428149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.428150 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.428151 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.428152 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.428153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.428154 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.439123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.439125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.439139 LLDP, length 82 [|LLDP] 12:38:05.439149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.439150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076f 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.439152 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.439153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.439154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.439160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.439161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.439162 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.439163 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.439164 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.439165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.439166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.447381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.447383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.447392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.447393 LLDP, length 82 [|LLDP] 12:38:05.447402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.447403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0775 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.447405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.447406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.447407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.447408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.447409 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.447410 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.447411 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.458408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.458410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.458417 LLDP, length 82 [|LLDP] 12:38:05.458427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.458427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077d f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.458429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.458430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.458433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.458435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.469416 LLDP, length 82 [|LLDP] 12:38:05.469424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.469425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0786 5cf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.469427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.469428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.469429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.469430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.469438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.469439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.477672 LLDP, length 82 [|LLDP] 12:38:05.477681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.477682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078c a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.477685 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.477686 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.477687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.477695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.477697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.477699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.488677 LLDP, length 82 [|LLDP] 12:38:05.488689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.488689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0795 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.488692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.488693 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.488694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.488695 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.488696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.488706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.488707 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.488709 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.488710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.488711 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.488713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.488714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.499682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.499684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.499692 LLDP, length 82 [|LLDP] 12:38:05.499700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.499701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079d 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.499703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.499704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.499705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.499710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.499712 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.499713 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.499713 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.499714 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.499715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.499716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.507935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.507937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.507951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.507952 LLDP, length 82 [|LLDP] 12:38:05.507961 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.507962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a3 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.507964 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.507965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.507966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.507967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.507968 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.507969 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.507970 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.507971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.507972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.518945 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.518947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.518961 LLDP, length 82 [|LLDP] 12:38:05.518970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.518971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ac 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.518973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.518974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.518975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.518980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.518981 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.518982 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.518983 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.518984 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.518985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.518986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.527206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.527208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.527221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.527222 LLDP, length 82 [|LLDP] 12:38:05.527231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.527232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b2 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.527234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.527235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.527236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.527237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.527238 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.527239 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.527240 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.527241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.527242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.538221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.538222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.538230 LLDP, length 82 [|LLDP] 12:38:05.538240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.538241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ba dcfc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.538242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.538243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.538244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.538250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.538251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.538252 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.538253 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.538254 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.538255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.538256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.549222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.549224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.549231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.549232 LLDP, length 82 [|LLDP] 12:38:05.549242 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.549243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c3 435c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.549245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.549246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.549247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.549248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.549249 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.549250 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.549251 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.557499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.557501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.557508 LLDP, length 82 [|LLDP] 12:38:05.557516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.557517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c9 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.557519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.557520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.557523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.557524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.568480 LLDP, length 82 [|LLDP] 12:38:05.568493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.568494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d1 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.568497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.568497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.568499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.568500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.568508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.568509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.579505 LLDP, length 82 [|LLDP] 12:38:05.579518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.579519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07da 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.579522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.579523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.579524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.579525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.579535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.579537 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.579538 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.579539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.579545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.579547 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.579548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.579548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.587764 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.587766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.587773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.587774 LLDP, length 82 [|LLDP] 12:38:05.587784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.587784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e0 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.587786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.587787 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.587788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.587789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.587790 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.587791 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.587792 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.587793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.587794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.598771 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.598772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.598786 LLDP, length 82 [|LLDP] 12:38:05.598795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.598796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e9 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.598798 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.598799 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.598800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.598805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.598807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.598808 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.598808 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.598810 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.598811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.598811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.609783 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.609784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.609798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.609799 LLDP, length 82 [|LLDP] 12:38:05.609809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.609809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f1 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.609811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.609812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.609813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.609814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.609815 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.609816 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.609817 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.609818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.609819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.618040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.618042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.618056 LLDP, length 82 [|LLDP] 12:38:05.618065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.618066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f7 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.618067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.618068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.618069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.618074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.618076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.618077 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.618078 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.618079 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.618080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.618080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.629052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.629054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.629067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.629068 LLDP, length 82 [|LLDP] 12:38:05.629078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.629078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0800 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.629080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.629081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.629082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.629084 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.629084 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.629085 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.629086 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.629087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.629088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.637306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.637308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.637314 LLDP, length 82 [|LLDP] 12:38:05.637323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.637324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0806 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.637325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.637327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.637328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.637333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.637335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.637336 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.637336 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.637337 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.648330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.648332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.648339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.648340 LLDP, length 82 [|LLDP] 12:38:05.648349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.648350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080e dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.648352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.648353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.648354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.659387 LLDP, length 82 [|LLDP] 12:38:05.659395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.659396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0817 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.659398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.659399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.659400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.659408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.659410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.659412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.667572 LLDP, length 82 [|LLDP] 12:38:05.667580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.667581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081d 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.667584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.667585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.667586 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.667587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.667595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.667597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.678598 LLDP, length 82 [|LLDP] 12:38:05.678608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.678609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0825 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.678611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.678612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.678613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.678623 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.689609 LLDP, length 82 [|LLDP] 12:38:05.689621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.689622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082e 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.689624 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.689626 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.689627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.689628 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.689629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.689630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.689641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.689642 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.689644 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.689645 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.689646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.689647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.697868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.697869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.697877 LLDP, length 82 [|LLDP] 12:38:05.697886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.697887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0834 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.697889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.697890 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.697890 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.697892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.697897 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.697899 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.697900 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.697901 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.697902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.697903 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.708880 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.708882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.708898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.708900 LLDP, length 82 [|LLDP] 12:38:05.708911 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.708912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083d 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.708914 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.708915 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.708916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.708917 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.708918 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.708920 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.708920 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.708921 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.708922 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.719888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.719890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.719903 LLDP, length 82 [|LLDP] 12:38:05.719913 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.719914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0845 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.719915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.719916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.719917 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.719918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.719924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.719926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.719927 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.719927 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.719928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.719929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.728144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.728146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.728153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.728154 LLDP, length 82 [|LLDP] 12:38:05.728164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.728165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084b c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.728166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.728168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.728169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.728170 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.728171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.728173 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.728173 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.728174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.728175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.739153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.739154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.739162 LLDP, length 82 [|LLDP] 12:38:05.739171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.739172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0854 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.739173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.739174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.739175 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.739176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.739182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.739184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.739185 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.739186 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.739187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.739188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.747404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.747405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.747419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.747421 LLDP, length 82 [|LLDP] 12:38:05.747430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.747431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085a 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.747432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.747434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.747435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.747436 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.747437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.747438 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.758464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.758466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.758473 LLDP, length 82 [|LLDP] 12:38:05.758481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.758482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0862 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.758484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.758485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.758488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.758489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.769417 LLDP, length 82 [|LLDP] 12:38:05.769430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.769431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086b 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.769434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.769435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.769436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.769437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.769444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.769446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.777689 LLDP, length 82 [|LLDP] 12:38:05.777697 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.777698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0871 9026 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.777700 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.777701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.777702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.777709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.777710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.788702 LLDP, length 82 [|LLDP] 12:38:05.788709 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.788710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0879 f694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.788712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.788713 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.788714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.788715 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.788716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.788726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.788727 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.788729 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.788731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.788732 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.788733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.788734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.799709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.799711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.799724 LLDP, length 82 [|LLDP] 12:38:05.799734 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.799735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0882 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.799736 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.799737 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.799738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.799739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.799745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.799747 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.799748 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.799749 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.799749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.799750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.807965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.807967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.807980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.807982 LLDP, length 82 [|LLDP] 12:38:05.807991 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.807992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0888 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.807993 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.807994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.807995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.807997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.807998 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.807999 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.808000 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.808000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.808001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.818990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.818992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.819007 LLDP, length 82 [|LLDP] 12:38:05.819019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.819020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0891 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.819021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.819022 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.819023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.819025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.819031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.819033 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.819034 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.819035 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.819036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.819037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.827239 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.827241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.827255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.827256 LLDP, length 82 [|LLDP] 12:38:05.827267 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.827268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0897 5cf8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.827270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.827271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.827272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.827273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.827274 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.827275 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.827276 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.827277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.827278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.838244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.838246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.838260 LLDP, length 82 [|LLDP] 12:38:05.838270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.838270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089f c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.838272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.838273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.838274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.838274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.838280 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.838282 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.838283 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.838284 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.838284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.838286 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.849254 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.849262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.849269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.849270 LLDP, length 82 [|LLDP] 12:38:05.849281 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.849282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a8 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.849284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.849285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.849286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.849287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.849288 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.849289 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.849290 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.857518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.857520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.857526 LLDP, length 82 [|LLDP] 12:38:05.857536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.857536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ae 768f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.857538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.857539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.857540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.857544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.868544 LLDP, length 82 [|LLDP] 12:38:05.868560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.868561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b6 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.868565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.868566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.868567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.868568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.868585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.868587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.879584 LLDP, length 82 [|LLDP] 12:38:05.879599 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.879600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bf 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.879603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.879604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.879605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.879606 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.879607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.879629 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.879631 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.879632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.879640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.879641 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.879642 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.879643 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.887814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.887816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.887832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.887833 LLDP, length 82 [|LLDP] 12:38:05.887845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.887846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c5 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.887848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.887849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.887849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.887851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.887852 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.887853 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.887854 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.887855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.887856 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.898806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.898807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.898822 LLDP, length 82 [|LLDP] 12:38:05.898832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.898833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08cd f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.898834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.898835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.898836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.898837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.898844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.898845 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.898846 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.898847 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.898848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.898849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.909824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.909826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.909835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.909836 LLDP, length 82 [|LLDP] 12:38:05.909849 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.909849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d6 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.909851 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.909852 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.909853 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.909854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.909855 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.909856 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.909857 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.909858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.909859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.918071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.918073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.918087 LLDP, length 82 [|LLDP] 12:38:05.918096 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.918097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08dc a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.918098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.918099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.918100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.918101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.918107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.918109 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.918110 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.918111 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.918112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.918113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.929085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.929087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.929101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.929102 LLDP, length 82 [|LLDP] 12:38:05.929112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.929113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e5 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.929114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.929115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.929117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.929118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.929119 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.929120 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.929121 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.929122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.929122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.937332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.937334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.937342 LLDP, length 82 [|LLDP] 12:38:05.937351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.937352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08eb 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.937353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.937355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.937356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.937357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.937363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.937364 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.937365 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.937366 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.948364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.948366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.948373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.948375 LLDP, length 82 [|LLDP] 12:38:05.948385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.948385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f3 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.948387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.948388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.948390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.959382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.959383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fc 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.959385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.959386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.959387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.959388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.959397 LLDP, length 82 [|LLDP] 12:38:05.959399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.959407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.967602 LLDP, length 82 [|LLDP] 12:38:05.967615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.967616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0902 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.967619 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.967620 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.967621 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.967622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.967630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.967632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.978631 LLDP, length 82 [|LLDP] 12:38:05.978645 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.978646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090a dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.978648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.978649 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.978650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.978651 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.978652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.978663 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.978665 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.978666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.978672 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.978673 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.978674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.978675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.989639 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.989640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.989654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.989655 LLDP, length 82 [|LLDP] 12:38:05.989667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.989668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0913 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.989669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.989670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.989671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.989672 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.989673 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.989674 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.989675 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.989676 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.989677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.997893 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.997895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.997909 LLDP, length 82 [|LLDP] 12:38:05.997918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.997919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0919 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.997920 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.997922 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.997923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.997923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.997929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.997931 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.997932 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.997933 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.997934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.997935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.008909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.008911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.008920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.008921 LLDP, length 82 [|LLDP] 12:38:06.008932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.008933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0921 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.008934 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.008935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.008936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.008938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.008939 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.008939 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.008940 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.008941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.008943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.017160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.017163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.017176 LLDP, length 82 [|LLDP] 12:38:06.017185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.017186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0928 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.017187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.017188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.017189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.017190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.017196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.017198 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.017199 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.017200 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.017200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.017202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.031417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.031418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.031426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.031427 LLDP, length 82 [|LLDP] 12:38:06.031438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.031438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0930 a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.031440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.031441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.031442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.031443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.031445 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.031446 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.031447 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.031448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.031449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.039182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.039184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.039198 LLDP, length 82 [|LLDP] 12:38:06.039208 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.039209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0939 102e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.039210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.039211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.039212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.039214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.039220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.039221 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.039222 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.039223 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.047426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.047428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.047442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.047443 LLDP, length 82 [|LLDP] 12:38:06.047453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.047453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093f 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.047455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.047456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.047458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.058436 LLDP, length 82 [|LLDP] 12:38:06.058450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.058451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0947 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.058454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.058455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.058456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.058457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.058466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.058468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.069447 LLDP, length 82 [|LLDP] 12:38:06.069461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.069462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0950 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.069477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.069479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.069480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.069481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.069490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.069492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.077748 LLDP, length 82 [|LLDP] 12:38:06.077763 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.077764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0956 768f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.077766 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.077767 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.077768 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.077769 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.077771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.077787 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.077789 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.077790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.077796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.077798 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.077799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.077800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.088727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.088729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.088741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.088742 LLDP, length 82 [|LLDP] 12:38:06.088752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.088753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095e dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.088754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.088756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.088757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.088758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.088759 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.088760 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.088761 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.088762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.088763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.099735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.099736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.099750 LLDP, length 82 [|LLDP] 12:38:06.099758 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.099759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0967 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.099760 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.099761 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.099762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.099763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.099769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.099771 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.099772 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.099782 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.099783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.099784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.107990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.107992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.108004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.108005 LLDP, length 82 [|LLDP] 12:38:06.108014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.108014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096d 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.108016 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.108017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.108018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.108020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.108021 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.108022 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.108022 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.108023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.108024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.118998 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.119000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.119012 LLDP, length 82 [|LLDP] 12:38:06.119021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.119021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0975 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.119023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.119024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.119025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.119026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.119032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.119034 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.119035 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.119036 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.119036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.119038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.127255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.127256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.127268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.127269 LLDP, length 82 [|LLDP] 12:38:06.127278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.127279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097c 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.127280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.127281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.127282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.127284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.127285 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.127286 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.127287 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.127288 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.127288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.138282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.138284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.138293 LLDP, length 82 [|LLDP] 12:38:06.138305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.138305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0984 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.138307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.138308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.138309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.138310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.138317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.138318 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.138319 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.138320 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.149272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.149273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.149286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.149287 LLDP, length 82 [|LLDP] 12:38:06.149297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.149298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098d 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.149299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.149300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.149302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.157526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.157528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0993 5cfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.157530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.157537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.157538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.157540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.157548 LLDP, length 82 [|LLDP] 12:38:06.157550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.157558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.168538 LLDP, length 82 [|LLDP] 12:38:06.168551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.168552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099b c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.168554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.168555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.168556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.168557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.168566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.168567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.179562 LLDP, length 82 [|LLDP] 12:38:06.179575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.179576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a4 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.179578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.179579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.179580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.179581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.179582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.179593 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.179594 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.179595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.179601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.179602 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.179603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.179604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.187819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.187821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.187834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.187835 LLDP, length 82 [|LLDP] 12:38:06.187845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.187846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09aa 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.187847 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.187848 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.187849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.187851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.187852 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.187853 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.187854 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.187854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.187855 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.198828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.198829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.198842 LLDP, length 82 [|LLDP] 12:38:06.198851 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.198852 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b2 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.198853 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.198854 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.198855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.198856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.198862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.198864 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.198864 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.198865 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.198866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.198867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.209841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.209843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.209856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.209858 LLDP, length 82 [|LLDP] 12:38:06.209867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.209867 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09bb 4362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.209869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.209870 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.209871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.209873 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.209874 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.209874 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.209875 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.209876 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.209877 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.218096 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.218098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.218111 LLDP, length 82 [|LLDP] 12:38:06.218119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.218120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c1 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.218122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.218123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.218124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.218125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.218131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.218133 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.218134 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.218134 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.218135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.218136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.229105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.229107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.229120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.229121 LLDP, length 82 [|LLDP] 12:38:06.229130 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.229130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c9 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.229132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.229133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.229134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.229136 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.229137 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.229137 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.229138 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.229139 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.229140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.237360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.237362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.237369 LLDP, length 82 [|LLDP] 12:38:06.237378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.237379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d0 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.237380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.237381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.237382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.237383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.237389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.237390 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.237391 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.237392 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.248379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.248381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.248388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.248390 LLDP, length 82 [|LLDP] 12:38:06.248399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.248400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d8 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.248402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.248403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.248404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.259384 LLDP, length 82 [|LLDP] 12:38:06.259392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.259392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e1 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.259394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.259395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.259396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.259397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.259404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.259406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.267625 LLDP, length 82 [|LLDP] 12:38:06.267636 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.267636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e7 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.267638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.267639 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.267640 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.267641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.267648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.267649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.278650 LLDP, length 82 [|LLDP] 12:38:06.278663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.278663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ef c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.278665 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.278666 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.278668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.278668 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.278669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.278678 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.278680 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.278681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.278686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.278688 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.278689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.278690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.289657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.289658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.289670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.289672 LLDP, length 82 [|LLDP] 12:38:06.289681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.289681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f8 29c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.289683 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.289684 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.289685 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.289686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.289687 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.289688 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.289689 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.289690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.289691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.297913 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.297915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.297927 LLDP, length 82 [|LLDP] 12:38:06.297934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.297935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fe 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.297937 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.297938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.297939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.297940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.297946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.297948 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.297949 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.297950 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.297951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.297951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.308923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.308925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.308937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.308938 LLDP, length 82 [|LLDP] 12:38:06.308946 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.308947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a06 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.308948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.308949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.308950 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.308952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.308953 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.308954 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.308955 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.308956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.308956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.317182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.317184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.317189 LLDP, length 82 [|LLDP] 12:38:06.317198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.317198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0d 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.317200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.317201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.317202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.317203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.317209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.317211 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.317212 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.317212 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.317214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.317215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.328199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.328200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.328212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.328213 LLDP, length 82 [|LLDP] 12:38:06.328222 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.328222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a15 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.328224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.328225 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.328226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.328228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.328229 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.328230 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.328230 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.328231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.328232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.339201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.339203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.339208 LLDP, length 82 [|LLDP] 12:38:06.339216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.339217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1d f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.339218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.339219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.339220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.339221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.339227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.339228 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.339229 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.339230 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.347446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.347447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.347460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.347461 LLDP, length 82 [|LLDP] 12:38:06.347469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.347470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a24 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.347471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.347472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.347474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.358456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.358457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2c a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.358459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.358460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.358470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.358471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.358478 LLDP, length 82 [|LLDP] 12:38:06.358480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.358487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.369485 LLDP, length 82 [|LLDP] 12:38:06.369491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.369492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a35 1026 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.369494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.369495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.369495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.369497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.369504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.369506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.377739 LLDP, length 82 [|LLDP] 12:38:06.377751 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.377752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3b 5cf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.377754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.377755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.377756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.377757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.377766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.377767 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.377768 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.377769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.377775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.377776 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.377777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.377778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.388749 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.388750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.388763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.388764 LLDP, length 82 [|LLDP] 12:38:06.388772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.388773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a43 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.388774 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.388775 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.388776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.388778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.388779 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.388780 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.388781 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.388781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.388782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.399759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.399760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.399772 LLDP, length 82 [|LLDP] 12:38:06.399779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.399780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4c 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.399782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.399783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.399784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.399785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.399791 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.399792 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.399793 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.399794 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.399795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.399796 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.408016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.408017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.408029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.408030 LLDP, length 82 [|LLDP] 12:38:06.408039 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.408039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a52 7695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.408041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.408042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.408043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.408044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.408045 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.408046 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.408047 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.408048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.408049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.419025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.419027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.419038 LLDP, length 82 [|LLDP] 12:38:06.419046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.419047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5a dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.419049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.419050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.419051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.419052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.419058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.419059 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.419060 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.419061 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.419062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.419063 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.427284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.427285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.427297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.427298 LLDP, length 82 [|LLDP] 12:38:06.427305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.427306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a61 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.427308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.427309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.427310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.427312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.427313 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.427314 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.427315 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.427315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.427316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.438293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.438294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.438300 LLDP, length 82 [|LLDP] 12:38:06.438308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.438309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a69 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.438310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.438311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.438312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.438313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.438319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.438321 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.438322 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.438322 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.449311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.449312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.449317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.449318 LLDP, length 82 [|LLDP] 12:38:06.449327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.449327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a71 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.449329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.449330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.449332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.457570 LLDP, length 82 [|LLDP] 12:38:06.457577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.457578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a78 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.457579 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.457580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.457581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.457583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.457589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.457591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.468559 LLDP, length 82 [|LLDP] 12:38:06.468571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.468572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a80 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.468574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.468575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.468576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.468577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.468584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.468585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.479587 LLDP, length 82 [|LLDP] 12:38:06.479599 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.479600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a89 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.479602 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.479603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.479604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.479605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.479613 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.479614 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.479615 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.479617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.479622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.479624 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.479625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.479626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.487843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.487845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.487856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.487857 LLDP, length 82 [|LLDP] 12:38:06.487866 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.487867 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8f 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.487868 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.487869 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.487870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.487872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.487873 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.487874 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.487874 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.487875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.487876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.498851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.498852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.498863 LLDP, length 82 [|LLDP] 12:38:06.498871 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.498872 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a97 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.498874 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.498875 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.498876 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.498877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.498883 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.498884 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.498885 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.498886 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.498887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.498888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.507115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.507117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.507131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.507132 LLDP, length 82 [|LLDP] 12:38:06.507141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.507142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9e 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.507144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.507145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.507146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.507148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.507149 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.507150 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.507151 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.507152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.507153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.518123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.518124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.518137 LLDP, length 82 [|LLDP] 12:38:06.518145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.518145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa6 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.518147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.518148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.518149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.518150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.518156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.518158 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.518158 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.518159 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.518160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.518161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.529131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.529133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.529145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.529146 LLDP, length 82 [|LLDP] 12:38:06.529155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.529156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aae dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.529157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.529159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.529160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.529161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.529162 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.529163 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.529164 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.529165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.529165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.537383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.537384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.537391 LLDP, length 82 [|LLDP] 12:38:06.537398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.537399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab5 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.537401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.537402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.537403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.537404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.537409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.537411 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.537412 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.537412 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.548385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.548386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.548399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.548400 LLDP, length 82 [|LLDP] 12:38:06.548408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.548409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abd 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.548411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.548412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.548413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.559412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.559413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac5 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.559414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.559415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.559416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.559417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.559425 LLDP, length 82 [|LLDP] 12:38:06.559426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.559434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.567669 LLDP, length 82 [|LLDP] 12:38:06.567676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.567677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acc 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.567679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.567680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.567681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.567682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.567689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.567690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.578677 LLDP, length 82 [|LLDP] 12:38:06.578688 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.578689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad4 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.578690 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.578691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.578692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.578693 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.578694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.578704 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.578705 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.578706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.578711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.578713 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.578714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.578715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.589685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.589687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.589699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.589700 LLDP, length 82 [|LLDP] 12:38:06.589709 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.589710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0add 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.589712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.589713 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.589714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.589716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.589717 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.589718 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.589718 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.589719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.589720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.597942 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.597944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.597955 LLDP, length 82 [|LLDP] 12:38:06.597963 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.597964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae3 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.597966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.597967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.597968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.597969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.597975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.597976 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.597977 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.597978 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.597979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.597980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.608956 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.608957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.608963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.608964 LLDP, length 82 [|LLDP] 12:38:06.608973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.608973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aeb c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.608975 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.608976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.608977 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.608979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.608980 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.608981 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.608982 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.608982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.608983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.617210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.617212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.617224 LLDP, length 82 [|LLDP] 12:38:06.617231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.617232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af2 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.617234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.617235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.617236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.617236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.617242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.617244 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.617245 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.617245 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.617246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.617247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.628221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.628223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.628234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.628236 LLDP, length 82 [|LLDP] 12:38:06.628244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.628245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afa 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.628246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.628247 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.628248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.628249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.628250 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.628251 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.628252 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.628253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.628254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.639228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.639229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.639235 LLDP, length 82 [|LLDP] 12:38:06.639242 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.639243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b02 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.639245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.639246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.639247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.639248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.639253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.639255 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.639256 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.639257 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.647475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.647476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.647488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.647489 LLDP, length 82 [|LLDP] 12:38:06.647497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.647498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b09 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.647500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.647501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.647502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.658487 LLDP, length 82 [|LLDP] 12:38:06.658498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.658499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b11 902e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.658501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.658502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.658503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.658504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.658511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.658512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.669494 LLDP, length 82 [|LLDP] 12:38:06.669506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.669507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b19 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.669508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.669510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.669511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.669511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.669519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.669520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.677771 LLDP, length 82 [|LLDP] 12:38:06.677783 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.677784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b20 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.677786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.677787 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.677788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.677789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.677790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.677799 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.677801 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.677802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.677807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.677809 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.677810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.677810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.688776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.688777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.688789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.688790 LLDP, length 82 [|LLDP] 12:38:06.688799 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.688800 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b28 a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.688801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.688802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.688803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.688804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.688806 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.688807 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.688807 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.688808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.688809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.699792 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.699795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.699809 LLDP, length 82 [|LLDP] 12:38:06.699819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.699819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b31 1026 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.699821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.699822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.699823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.699824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.699830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.699831 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.699832 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.699833 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.699834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.699835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.708048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.708049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.708062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.708063 LLDP, length 82 [|LLDP] 12:38:06.708072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.708073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b37 5cf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.708074 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.708076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.708077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.708078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.708079 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.708080 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.708081 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.708082 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.708083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.719057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.719059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.719071 LLDP, length 82 [|LLDP] 12:38:06.719079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.719080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3f c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.719082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.719083 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.719084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.719085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.719091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.719092 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.719093 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.719094 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.719095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.719096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.727312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.727314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.727326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.727327 LLDP, length 82 [|LLDP] 12:38:06.727342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.727342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b46 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.727344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.727345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.727346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.727348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.727349 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.727350 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.727351 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.727351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.727353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.738323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.738325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.738330 LLDP, length 82 [|LLDP] 12:38:06.738339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.738339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4e 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.738341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.738342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.738343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.738344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.738350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.738352 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.738353 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.738353 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.749338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.749339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.749345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.749346 LLDP, length 82 [|LLDP] 12:38:06.749354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.749355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b56 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.749356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.749357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.749359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.757579 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.757580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5d 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.757582 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.757583 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.757584 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.757591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.757598 LLDP, length 82 [|LLDP] 12:38:06.757599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.757607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.768590 LLDP, length 82 [|LLDP] 12:38:06.768597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.768597 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b65 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.768599 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.768600 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.768601 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.768602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.768609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.768610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.779621 LLDP, length 82 [|LLDP] 12:38:06.779629 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.779630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6d f68f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.779631 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.779632 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.779633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.779634 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.779635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.779644 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.779646 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.779647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.779652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.779653 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.779654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.779655 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.787869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.787871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.787883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.787884 LLDP, length 82 [|LLDP] 12:38:06.787892 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.787893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b74 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.787894 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.787895 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.787897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.787898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.787899 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.787900 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.787901 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.787902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.787903 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.798894 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.798896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.798910 LLDP, length 82 [|LLDP] 12:38:06.798921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.798922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7c a9c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.798924 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.798925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.798926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.798927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.798933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.798935 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.798936 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.798937 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.798938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.798938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.807137 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.807138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.807152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.807153 LLDP, length 82 [|LLDP] 12:38:06.807161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.807162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b82 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.807164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.807165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.807166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.807167 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.807168 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.807169 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.807170 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.807171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.807172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.818155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.818157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.818171 LLDP, length 82 [|LLDP] 12:38:06.818182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.818184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8b 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.818185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.818186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.818187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.818188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.818194 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.818195 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.818196 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.818197 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.818198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.818200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.829168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.829170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.829184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.829185 LLDP, length 82 [|LLDP] 12:38:06.829196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.829197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b93 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.829199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.829200 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.829200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.829202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.829203 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.829204 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.829205 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.829205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.829206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.837414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.837415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.837422 LLDP, length 82 [|LLDP] 12:38:06.837430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.837431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9a 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.837432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.837433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.837435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.837436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.837442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.837444 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.837445 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.837446 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.848412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.848414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.848426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.848427 LLDP, length 82 [|LLDP] 12:38:06.848435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.848436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba2 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.848438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.848439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.848440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.859441 LLDP, length 82 [|LLDP] 12:38:06.859448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.859448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0baa dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.859450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.859451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.859452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.859453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.859460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.859462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.867698 LLDP, length 82 [|LLDP] 12:38:06.867704 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.867705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb1 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.867707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.867708 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.867709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.867710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.867717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.867718 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.878707 LLDP, length 82 [|LLDP] 12:38:06.878718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.878718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb9 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.878720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.878721 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.878722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.878723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.878731 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.878733 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.878734 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.878735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.878741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.878742 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.878743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.878744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.889717 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.889718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.889724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.889725 LLDP, length 82 [|LLDP] 12:38:06.889734 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.889734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc1 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.889736 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.889737 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.889738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.889740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.889741 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.889742 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.889743 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.889743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.889744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.897972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.897974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.897986 LLDP, length 82 [|LLDP] 12:38:06.897994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.897995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc8 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.897996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.897998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.897999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.898000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.898006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.898007 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.898008 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.898009 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.898010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.898011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.908981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.908982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.908994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.908995 LLDP, length 82 [|LLDP] 12:38:06.909003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.909004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd0 a9c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.909006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.909007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.909008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.909010 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.909011 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.909012 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.909013 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.909013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.909015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.917238 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.917239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.917252 LLDP, length 82 [|LLDP] 12:38:06.917259 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.917260 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd6 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.917262 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.917263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.917264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.917265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.917271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.917272 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.917273 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.917274 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.917276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.917276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.928249 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.928250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.928262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.928263 LLDP, length 82 [|LLDP] 12:38:06.928272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.928272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdf 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.928274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.928275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.928276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.928277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.928278 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.928279 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.928280 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.928281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.928282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.939257 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.939258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.939264 LLDP, length 82 [|LLDP] 12:38:06.939271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.939272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be7 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.939274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.939275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.939276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.939277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.939282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.939284 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.939285 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.939285 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.947503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.947505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.947517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.947518 LLDP, length 82 [|LLDP] 12:38:06.947526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.947527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bee 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.947528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.947529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.947530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.958513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.958514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf6 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.958516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.958516 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.958523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.958524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.958532 LLDP, length 82 [|LLDP] 12:38:06.958533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.958540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.969543 LLDP, length 82 [|LLDP] 12:38:06.969551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.969552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfe dcf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.969554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.969554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.969555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.969556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.969563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.969565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.977813 LLDP, length 82 [|LLDP] 12:38:06.977829 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.977830 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c05 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.977832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.977833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.977834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.977835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.977836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.977850 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.977851 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.977852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.977858 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.977860 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.977861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.977862 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.988813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.988815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.988827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.988828 LLDP, length 82 [|LLDP] 12:38:06.988839 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.988840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0d 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.988842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.988843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.988844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.988845 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.988846 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.988848 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.988848 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.988849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.988850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.999818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.999820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.999833 LLDP, length 82 [|LLDP] 12:38:06.999842 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.999843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c15 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.999844 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.999846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.999847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.999848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.999854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.999855 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.999856 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.999857 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.999858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.999859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.008076 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.008078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.008090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.008091 LLDP, length 82 [|LLDP] 12:38:07.008100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.008101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1c 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.008102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.008103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.008104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.008106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.008107 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.008108 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.008109 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.008109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.008110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.019085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.019086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.019098 LLDP, length 82 [|LLDP] 12:38:07.019107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.019108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c24 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.019109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.019110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.019111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.019113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.019118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.019120 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.019121 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.019122 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.019123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.019123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.027350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.027351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.027363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.027365 LLDP, length 82 [|LLDP] 12:38:07.027373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.027373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2a f694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.027375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.027376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.027377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.027378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.027380 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.027380 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.027381 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.027382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.027383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.038351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.038352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.038358 LLDP, length 82 [|LLDP] 12:38:07.038366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.038367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c33 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.038368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.038369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.038371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.038372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.038389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.038391 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.038392 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.038394 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.049379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.049381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.049390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.049392 LLDP, length 82 [|LLDP] 12:38:07.049406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.049407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3b c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.049409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.049410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.049411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.057629 LLDP, length 82 [|LLDP] 12:38:07.057641 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.057642 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c42 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.057644 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.057645 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.057646 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.057647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.057659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.057660 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.068629 LLDP, length 82 [|LLDP] 12:38:07.068645 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.068645 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4a 768f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.068648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.068649 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.068650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.068651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.068662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.068663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.079660 LLDP, length 82 [|LLDP] 12:38:07.079678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.079679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c52 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.079681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.079682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.079683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.079684 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.079685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.079697 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.079698 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.079699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.079706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.079708 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.079709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.079710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.087902 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.087904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.087916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.087918 LLDP, length 82 [|LLDP] 12:38:07.087927 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.087928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c59 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.087929 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.087930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.087932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.087933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.087934 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.087935 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.087936 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.087937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.087938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.098911 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.098912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.098925 LLDP, length 82 [|LLDP] 12:38:07.098934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.098934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c61 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.098936 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.098937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.098939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.098939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.098946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.098947 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.098948 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.098949 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.098950 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.098951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.107167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.107168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.107180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.107181 LLDP, length 82 [|LLDP] 12:38:07.107190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.107191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c67 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.107192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.107193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.107194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.107195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.107196 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.107197 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.107198 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.107199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.107200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.118180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.118181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.118194 LLDP, length 82 [|LLDP] 12:38:07.118202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.118203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c70 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.118204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.118205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.118207 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.118208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.118213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.118215 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.118215 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.118216 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.118217 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.118218 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.129187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.129188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.129200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.129202 LLDP, length 82 [|LLDP] 12:38:07.129210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.129211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c78 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.129212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.129213 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.129214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.129216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.129217 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.129218 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.129219 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.129220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.129220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.137443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.137445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.137450 LLDP, length 82 [|LLDP] 12:38:07.137458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.137458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7e f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.137460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.137461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.137462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.137463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.137469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.137470 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.137471 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.137472 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.148440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.148442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.148454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.148455 LLDP, length 82 [|LLDP] 12:38:07.148463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.148464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c87 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.148465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.148466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.148467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.159451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.159452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8f c362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.159454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.159455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.159462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.159463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.159471 LLDP, length 82 [|LLDP] 12:38:07.159473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.159480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.167710 LLDP, length 82 [|LLDP] 12:38:07.167721 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.167721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c96 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.167723 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.167724 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.167725 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.167727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.167735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.167736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.178754 LLDP, length 82 [|LLDP] 12:38:07.178771 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.178772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9e 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.178774 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.178775 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.178776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.178778 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.178779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.178792 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.178794 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.178795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.178801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.178803 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.178803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.178804 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.189744 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.189746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.189759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.189760 LLDP, length 82 [|LLDP] 12:38:07.189769 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.189770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca6 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.189772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.189773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.189774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.189776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.189777 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.189777 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.189778 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.189779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.189780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.198000 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.198001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.198015 LLDP, length 82 [|LLDP] 12:38:07.198023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.198024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cad 29c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.198025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.198026 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.198027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.198028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.198034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.198035 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.198036 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.198037 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.198038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.198039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.209012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.209014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.209027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.209028 LLDP, length 82 [|LLDP] 12:38:07.209036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.209037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb5 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.209039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.209039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.209040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.209042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.209043 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.209044 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.209045 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.209046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.209047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.217269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.217270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.217282 LLDP, length 82 [|LLDP] 12:38:07.217290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.217291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbb dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.217293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.217294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.217295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.217296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.217302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.217304 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.217305 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.217306 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.217307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.217307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.228278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.228279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.228291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.228292 LLDP, length 82 [|LLDP] 12:38:07.228300 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.228301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc4 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.228302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.228303 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.228304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.228305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.228306 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.228308 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.228308 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.228309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.228310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.239286 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.239288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.239293 LLDP, length 82 [|LLDP] 12:38:07.239301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.239302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccc a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.239303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.239304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.239305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.239306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.239312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.239314 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.239315 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.239316 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.247533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.247535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.247546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.247547 LLDP, length 82 [|LLDP] 12:38:07.247556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.247557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd2 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.247559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.247560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.247561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.258561 LLDP, length 82 [|LLDP] 12:38:07.258568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.258569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cdb 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.258571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.258572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.258573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.258574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.258581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.258583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.269555 LLDP, length 82 [|LLDP] 12:38:07.269566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.269567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce3 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.269569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.269570 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.269571 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.269572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.269580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.269581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.277830 LLDP, length 82 [|LLDP] 12:38:07.277842 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.277843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cea 102d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.277845 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.277846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.277847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.277848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.277849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.277858 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.277860 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.277861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.277866 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.277868 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.277869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.277870 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.288836 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.288837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.288849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.288850 LLDP, length 82 [|LLDP] 12:38:07.288859 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.288860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf2 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.288861 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.288862 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.288863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.288865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.288866 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.288867 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.288868 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.288869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.288870 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.297093 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.297094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.297106 LLDP, length 82 [|LLDP] 12:38:07.297114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.297114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf8 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.297116 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.297117 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.297118 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.297119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.297125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.297126 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.297127 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.297128 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.297129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.297130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.308102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.308103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.308115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.308116 LLDP, length 82 [|LLDP] 12:38:07.308124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.308125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d01 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.308127 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.308128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.308129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.308130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.308131 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.308132 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.308133 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.308134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.308135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.319113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.319115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.319127 LLDP, length 82 [|LLDP] 12:38:07.319135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.319136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d09 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.319137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.319139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.319140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.319141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.319147 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.319148 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.319149 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.319150 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.319151 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.319152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.327375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.327376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.327388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.327389 LLDP, length 82 [|LLDP] 12:38:07.327397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.327398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0f dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.327400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.327401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.327402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.327403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.327404 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.327405 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.327406 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.327407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.327408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.338377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.338379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.338384 LLDP, length 82 [|LLDP] 12:38:07.338392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.338392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d18 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.338394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.338395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.338396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.338397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.338403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.338405 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.338406 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.338406 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.349376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.349377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.349389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.349390 LLDP, length 82 [|LLDP] 12:38:07.349398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.349399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d20 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.349401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.349401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.349403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.357653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.357654 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d26 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.357656 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.357656 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.357657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.357658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.357665 LLDP, length 82 [|LLDP] 12:38:07.357667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.357674 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.368645 LLDP, length 82 [|LLDP] 12:38:07.368659 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.368659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2f 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.368661 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.368662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.368663 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.368664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.368672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.368673 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.379670 LLDP, length 82 [|LLDP] 12:38:07.379682 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.379683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d37 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.379685 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.379686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.379687 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.379688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.379696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.379698 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.379699 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.379700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.379706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.379707 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.379708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.379709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.387927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.387929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.387941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.387942 LLDP, length 82 [|LLDP] 12:38:07.387949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.387950 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3e 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.387952 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.387953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.387954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.387955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.387956 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.387957 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.387958 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.387959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.387960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.398936 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.398937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.398949 LLDP, length 82 [|LLDP] 12:38:07.398956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.398957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d46 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.398959 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.398960 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.398961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.398961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.398968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.398969 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.398970 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.398971 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.398972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.398973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.407194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.407195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.407207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.407209 LLDP, length 82 [|LLDP] 12:38:07.407216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.407217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4c c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.407218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.407219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.407220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.407222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.407223 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.407224 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.407225 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.407226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.407227 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.418204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.418206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.418218 LLDP, length 82 [|LLDP] 12:38:07.418225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.418226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d55 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.418228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.418228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.418230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.418231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.418236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.418239 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.418239 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.418240 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.418241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.418242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.429213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.429215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.429227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.429228 LLDP, length 82 [|LLDP] 12:38:07.429236 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.429237 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5d 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.429239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.429239 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.429240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.429242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.429243 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.429244 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.429245 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.429246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.429246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.437469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.437471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.437476 LLDP, length 82 [|LLDP] 12:38:07.437484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.437485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d63 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.437487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.437488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.437489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.437490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.437496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.437498 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.437498 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.437499 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.448469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.448470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.448482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.448483 LLDP, length 82 [|LLDP] 12:38:07.448491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.448492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6c 435e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.448493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.448494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.448496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.459520 LLDP, length 82 [|LLDP] 12:38:07.459527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.459527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d74 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.459529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.459530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.459531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.459532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.459539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.459540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.467737 LLDP, length 82 [|LLDP] 12:38:07.467750 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.467751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7a f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.467753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.467754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.467755 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.467756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.467763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.467765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.478764 LLDP, length 82 [|LLDP] 12:38:07.478775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.478776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d83 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.478778 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.478779 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.478780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.478781 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.478782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.478790 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.478792 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.478793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.478798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.478800 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.478801 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.478802 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.489770 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.489772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.489784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.489785 LLDP, length 82 [|LLDP] 12:38:07.489793 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.489794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8b c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.489796 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.489797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.489798 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.489799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.489801 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.489802 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.489803 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.489804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.489805 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.498030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.498032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.498046 LLDP, length 82 [|LLDP] 12:38:07.498054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.498055 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d92 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.498057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.498058 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.498059 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.498060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.498065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.498067 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.498068 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.498069 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.498070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.498071 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.509039 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.509040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.509053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.509054 LLDP, length 82 [|LLDP] 12:38:07.509062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.509063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9a 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.509064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.509065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.509066 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.509068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.509069 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.509070 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.509070 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.509071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.509072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.517295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.517297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.517309 LLDP, length 82 [|LLDP] 12:38:07.517316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.517317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da0 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.517318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.517319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.517320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.517321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.517327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.517329 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.517330 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.517331 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.517331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.517332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.528306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.528308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.528320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.528321 LLDP, length 82 [|LLDP] 12:38:07.528329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.528330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da9 29c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.528331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.528332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.528333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.528335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.528336 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.528336 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.528337 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.528338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.528339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.539311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.539313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.539318 LLDP, length 82 [|LLDP] 12:38:07.539327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.539327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db1 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.539329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.539330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.539331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.539332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.539347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.539349 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.539350 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.539351 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.547561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.547562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.547575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.547575 LLDP, length 82 [|LLDP] 12:38:07.547584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.547585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db7 dcf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.547586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.547587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.547588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.558570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.558572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc0 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.558573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.558574 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.558575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.558576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.558589 LLDP, length 82 [|LLDP] 12:38:07.558590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.558598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.569582 LLDP, length 82 [|LLDP] 12:38:07.569595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.569595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc8 a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.569598 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.569599 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.569600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.569601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.569608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.569610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.577856 LLDP, length 82 [|LLDP] 12:38:07.577867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.577868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dce f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.577870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.577871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.577872 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.577873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.577874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.577882 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.577884 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.577885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.577890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.577892 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.577892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.577893 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.588862 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.588864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.588876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.588877 LLDP, length 82 [|LLDP] 12:38:07.588885 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.588886 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd7 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.588887 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.588888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.588889 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.588891 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.588892 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.588893 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.588894 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.588895 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.588895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.597122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.597123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.597135 LLDP, length 82 [|LLDP] 12:38:07.597143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.597144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddd a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.597145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.597147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.597147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.597148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.597154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.597156 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.597157 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.597158 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.597159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.597160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.608132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.608133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.608145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.608146 LLDP, length 82 [|LLDP] 12:38:07.608154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.608155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de6 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.608156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.608158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.608159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.608160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.608161 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.608162 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.608163 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.608164 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.608165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.619141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.619143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.619155 LLDP, length 82 [|LLDP] 12:38:07.619162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.619163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dee 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.619165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.619166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.619167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.619168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.619174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.619175 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.619176 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.619177 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.619178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.619179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.627399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.627400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.627412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.627413 LLDP, length 82 [|LLDP] 12:38:07.627421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.627422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df4 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.627423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.627424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.627425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.627427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.627428 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.627429 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.627430 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.627431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.627431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.638403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.638405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.638410 LLDP, length 82 [|LLDP] 12:38:07.638418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.638419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfd 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.638420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.638421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.638422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.638424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.638430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.638432 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.638433 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.638433 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.649406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.649407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.649422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.649423 LLDP, length 82 [|LLDP] 12:38:07.649430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.649431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e05 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.649433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.649434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.649435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.657663 LLDP, length 82 [|LLDP] 12:38:07.657677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.657677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0b dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.657679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.657681 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.657681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.657683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.657690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.657692 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.668690 LLDP, length 82 [|LLDP] 12:38:07.668698 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.668699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e14 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.668700 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.668701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.668702 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.668703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.668710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.668712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.679704 LLDP, length 82 [|LLDP] 12:38:07.679715 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.679716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1c a9c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.679717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.679719 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.679720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.679720 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.679721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.679730 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.679733 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.679734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.679739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.679741 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.679742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.679743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.687962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.687963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.687978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.687979 LLDP, length 82 [|LLDP] 12:38:07.687990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.687991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e22 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.687992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.687993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.687994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.687996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.687997 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.687998 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.687999 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.687999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.688001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.698967 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.698969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.698982 LLDP, length 82 [|LLDP] 12:38:07.698992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.698992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2b 5cf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.698994 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.698995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.698996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.698997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.699003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.699005 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.699006 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.699007 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.699008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.699009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.707224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.707225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.707237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.707239 LLDP, length 82 [|LLDP] 12:38:07.707247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.707248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e31 a9c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.707250 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.707250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.707252 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.707253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.707254 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.707255 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.707256 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.707257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.707258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.718253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.718255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.718270 LLDP, length 82 [|LLDP] 12:38:07.718282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.718283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3a 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.718284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.718285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.718286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.718287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.718294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.718295 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.718296 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.718297 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.718298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.718299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.729259 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.729261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.729268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.729269 LLDP, length 82 [|LLDP] 12:38:07.729280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.729281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e42 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.729282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.729283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.729285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.729286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.729287 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.729288 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.729289 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.729290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.729291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.737504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.737506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.737519 LLDP, length 82 [|LLDP] 12:38:07.737529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.737530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e48 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.737532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.737533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.737534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.737535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.737541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.737542 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.737543 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.737544 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.748546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.748548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.748555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.748555 LLDP, length 82 [|LLDP] 12:38:07.748565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.748566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e51 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.748568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.748569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.748570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.759513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.759515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e59 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.759517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.759518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.759525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.759526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.759533 LLDP, length 82 [|LLDP] 12:38:07.759535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.759543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.767809 LLDP, length 82 [|LLDP] 12:38:07.767817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.767818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5f dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.767820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.767821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.767822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.767823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.767832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.767833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.778797 LLDP, length 82 [|LLDP] 12:38:07.778806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.778807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e68 4361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.778809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.778810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.778811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.778811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.778812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.778823 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.778825 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.778826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.778832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.778833 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.778834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.778835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.787053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.787055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.787069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.787070 LLDP, length 82 [|LLDP] 12:38:07.787079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.787080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6e 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.787081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.787082 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.787083 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.787085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.787086 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.787086 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.787087 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.787088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.787089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.798064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.798066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.798081 LLDP, length 82 [|LLDP] 12:38:07.798089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.798090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e76 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.798091 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.798092 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.798093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.798095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.798100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.798102 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.798102 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.798103 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.798104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.798105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.809070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.809072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.809087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.809088 LLDP, length 82 [|LLDP] 12:38:07.809098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.809098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7f 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.809100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.809101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.809102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.809103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.809104 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.809105 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.809106 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.809107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.809108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.817328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.817330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.817344 LLDP, length 82 [|LLDP] 12:38:07.817354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.817355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e85 a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.817357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.817358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.817359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.817360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.817366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.817367 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.817368 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.817369 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.817370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.817371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.828355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.828357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.828366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.828367 LLDP, length 82 [|LLDP] 12:38:07.828380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.828381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8e 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.828382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.828383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.828384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.828386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.828387 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.828388 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.828389 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.828390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.828391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.839361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.839363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.839371 LLDP, length 82 [|LLDP] 12:38:07.839381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.839382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e96 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.839384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.839385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.839386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.839387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.839393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.839394 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.839395 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.839396 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.847595 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.847597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.847610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.847611 LLDP, length 82 [|LLDP] 12:38:07.847621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.847622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9c c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.847623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.847625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.847626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.858605 LLDP, length 82 [|LLDP] 12:38:07.858618 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.858619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea5 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.858621 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.858622 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.858623 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.858624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.858632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.858634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.869635 LLDP, length 82 [|LLDP] 12:38:07.869644 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.869644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ead 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.869647 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.869648 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.869649 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.869650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.869658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.869660 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.877888 LLDP, length 82 [|LLDP] 12:38:07.877900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.877901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb3 dcf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.877904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.877904 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.877905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.877906 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.877907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.877917 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.877919 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.877920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.877925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.877927 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.877927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.877928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.888896 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.888898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.888911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.888912 LLDP, length 82 [|LLDP] 12:38:07.888921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.888922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebc 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.888924 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.888925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.888926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.888927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.888928 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.888929 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.888930 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.888931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.888932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.897156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.897158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.897171 LLDP, length 82 [|LLDP] 12:38:07.897180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.897180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec2 902d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.897182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.897183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.897184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.897185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.897191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.897193 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.897194 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.897194 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.897195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.897197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.908165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.908167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.908181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.908182 LLDP, length 82 [|LLDP] 12:38:07.908190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.908191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eca f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.908193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.908194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.908195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.908197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.908198 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.908198 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.908199 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.908200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.908201 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.919174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.919176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.919189 LLDP, length 82 [|LLDP] 12:38:07.919198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.919199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed3 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.919201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.919202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.919203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.919204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.919210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.919211 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.919212 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.919213 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.919214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.919215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.927432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.927434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.927447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.927448 LLDP, length 82 [|LLDP] 12:38:07.927458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.927459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed9 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.927460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.927461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.927462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.927464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.927465 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.927466 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.927467 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.927467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.927468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.938439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.938441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.938448 LLDP, length 82 [|LLDP] 12:38:07.938458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.938459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee2 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.938460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.938461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.938462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.938463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.938469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.938470 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.938471 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.938472 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.949438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.949440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.949453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.949454 LLDP, length 82 [|LLDP] 12:38:07.949463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.949464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eea 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.949465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.949466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.949468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.957699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.957700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef0 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.957702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.957703 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.957710 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.957711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.957719 LLDP, length 82 [|LLDP] 12:38:07.957721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.957729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.968744 LLDP, length 82 [|LLDP] 12:38:07.968753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.968754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef9 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.968757 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.968758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.968758 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.968760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.968767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.968769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.979735 LLDP, length 82 [|LLDP] 12:38:07.979747 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.979748 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f01 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.979751 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.979752 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.979753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.979754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.979755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.979765 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.979767 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.979768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.979773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.979775 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.979776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.979777 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.987989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.987991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.988005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.988006 LLDP, length 82 [|LLDP] 12:38:07.988015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.988016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f07 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.988017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.988018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.988019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.988021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.988022 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.988023 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.988024 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.988024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.988025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.999000 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.999002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.999015 LLDP, length 82 [|LLDP] 12:38:07.999024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.999025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f10 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.999027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.999027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.999028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.999029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.999035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.999037 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.999038 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.999039 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.999039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.999040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.007256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.007258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.007272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.007273 LLDP, length 82 [|LLDP] 12:38:08.007282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.007282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f16 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.007284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.007285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.007286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.007288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.007289 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.007290 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.007290 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.007291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.007292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.018269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.018270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.018284 LLDP, length 82 [|LLDP] 12:38:08.018293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.018294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1e f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.018295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.018296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.018297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.018298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.018304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.018306 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.018307 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.018319 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.018321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.018322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.029306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.029315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.029324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.029326 LLDP, length 82 [|LLDP] 12:38:08.029341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.029341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f27 5cfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.029343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.029344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.029345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.029347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.029348 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.029349 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.029350 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.029351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.029351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.037545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.037547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.037557 LLDP, length 82 [|LLDP] 12:38:08.037567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.037568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2d a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.037570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.037571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.037572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.037573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.037579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.037581 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.037582 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.037583 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.048537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.048539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.048551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.048552 LLDP, length 82 [|LLDP] 12:38:08.048564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.048565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f36 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.048566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.048567 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.048568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.059589 LLDP, length 82 [|LLDP] 12:38:08.059598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.059599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3e 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.059602 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.059603 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.059604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.059605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.059615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.059617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.067848 LLDP, length 82 [|LLDP] 12:38:08.067858 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.067858 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f44 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.067861 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.067862 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.067863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.067864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.067873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.067875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.078837 LLDP, length 82 [|LLDP] 12:38:08.078846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.078847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4d 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.078850 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.078851 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.078852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.078852 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.078853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.078864 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.078867 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.078868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.078874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.078876 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.078877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.078877 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.087091 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.087094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.087109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.087110 LLDP, length 82 [|LLDP] 12:38:08.087121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.087121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f53 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.087123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.087124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.087125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.087127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.087128 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.087129 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.087130 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.087131 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.087132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.098087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.098089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.098101 LLDP, length 82 [|LLDP] 12:38:08.098109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.098110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5b dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.098112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.098112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.098114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.098114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.098121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.098122 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.098123 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.098125 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.098125 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.098126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.109100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.109102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.109116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.109117 LLDP, length 82 [|LLDP] 12:38:08.109126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.109127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f64 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.109128 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.109129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.109130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.109132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.109133 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.109133 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.109134 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.109135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.109136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.117355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.117356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.117369 LLDP, length 82 [|LLDP] 12:38:08.117378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.117379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6a 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.117380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.117381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.117382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.117384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.117389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.117391 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.117392 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.117393 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.117394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.117395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.128366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.128367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.128379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.128380 LLDP, length 82 [|LLDP] 12:38:08.128389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.128389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f72 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.128391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.128392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.128393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.128394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.128395 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.128396 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.128397 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.128398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.128399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.139377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.139379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.139384 LLDP, length 82 [|LLDP] 12:38:08.139392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.139393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7b 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.139395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.139396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.139397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.139398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.139404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.139405 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.139406 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.139407 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.147659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.147661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.147666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.147667 LLDP, length 82 [|LLDP] 12:38:08.147675 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.147676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f81 a9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.147678 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.147679 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.147680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.158628 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.158630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8a 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.158632 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.158633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.158633 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.158634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.158648 LLDP, length 82 [|LLDP] 12:38:08.158649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.158657 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.169641 LLDP, length 82 [|LLDP] 12:38:08.169655 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.169656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f92 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.169658 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.169659 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.169660 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.169661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.169668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.169670 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.177912 LLDP, length 82 [|LLDP] 12:38:08.177923 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.177924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f98 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.177926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.177927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.177928 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.177929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.177937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.177939 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.177940 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.177941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.177947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.177948 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.177949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.177950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.188921 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.188922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.188934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.188935 LLDP, length 82 [|LLDP] 12:38:08.188944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.188945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa1 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.188946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.188947 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.188948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.188950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.188951 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.188952 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.188953 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.188953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.188954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.197179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.197180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.197192 LLDP, length 82 [|LLDP] 12:38:08.197200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.197200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa7 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.197202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.197203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.197204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.197205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.197211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.197212 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.197213 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.197214 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.197215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.197216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.208195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.208197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.208203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.208204 LLDP, length 82 [|LLDP] 12:38:08.208213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.208214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0faf dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.208216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.208217 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.208218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.208219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.208220 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.208222 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.208223 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.208223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.208224 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.219197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.219199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.219211 LLDP, length 82 [|LLDP] 12:38:08.219220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.219221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb8 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.219222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.219223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.219224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.219225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.219231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.219233 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.219234 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.219235 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.219236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.219237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.227458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.227459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.227471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.227473 LLDP, length 82 [|LLDP] 12:38:08.227481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.227482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbe 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.227483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.227484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.227485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.227487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.227488 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.227488 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.227489 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.227490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.227491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.238465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.238466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.238472 LLDP, length 82 [|LLDP] 12:38:08.238480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.238481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc6 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.238482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.238483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.238484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.238486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.238491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.238493 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.238494 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.238495 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.249503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.249505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.249510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.249511 LLDP, length 82 [|LLDP] 12:38:08.249519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.249520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fcf 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.249522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.249523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.249524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.257760 LLDP, length 82 [|LLDP] 12:38:08.257767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.257768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd5 a9c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.257769 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.257770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.257771 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.257772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.257779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.257780 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.268772 LLDP, length 82 [|LLDP] 12:38:08.268779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.268780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fde 1029 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.268782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.268783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.268784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.268785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.268791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.268793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.279756 LLDP, length 82 [|LLDP] 12:38:08.279769 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.279769 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe6 7695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.279771 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.279772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.279773 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.279774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.279782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.279784 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.279785 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.279786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.279792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.279794 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.279795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.279796 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.288012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.288014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.288025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.288026 LLDP, length 82 [|LLDP] 12:38:08.288035 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.288035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fec c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.288037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.288038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.288039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.288041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.288041 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.288042 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.288043 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.288044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.288045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.299023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.299024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.299036 LLDP, length 82 [|LLDP] 12:38:08.299044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.299045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff5 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.299046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.299047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.299048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.299049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.299055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.299057 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.299058 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.299059 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.299060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.299061 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.307279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.307280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.307292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.307293 LLDP, length 82 [|LLDP] 12:38:08.307301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.307302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffb 768f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.307303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.307304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.307306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.307307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.307308 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.307309 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.307310 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.307311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.307312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.318289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.318291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.318303 LLDP, length 82 [|LLDP] 12:38:08.318311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.318312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1003 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.318313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.318314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.318315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.318316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.318322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.318324 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.318325 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.318326 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.318327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.318328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.329301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.329302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.329314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.329315 LLDP, length 82 [|LLDP] 12:38:08.329324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.329324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100c 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.329326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.329327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.329328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.329329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.329330 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.329331 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.329332 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.329333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.329334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.337558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.337559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.337565 LLDP, length 82 [|LLDP] 12:38:08.337572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.337573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1012 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.337575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.337576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.337577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.337578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.337583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.337585 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.337586 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.337587 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.348553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.348554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.348566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.348567 LLDP, length 82 [|LLDP] 12:38:08.348575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.348576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101a f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.348577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.348578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.348580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.359563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.359564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1023 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.359567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.359567 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.359568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.359575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.359582 LLDP, length 82 [|LLDP] 12:38:08.359584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.359591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.367865 LLDP, length 82 [|LLDP] 12:38:08.367871 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.367872 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1029 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.367874 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.367875 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.367876 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.367877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.367883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.367885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.378848 LLDP, length 82 [|LLDP] 12:38:08.378860 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.378861 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1032 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.378863 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.378864 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.378865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.378866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.378874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.378876 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.378877 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.378878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.378883 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.378885 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.378886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.378887 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.387105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.387106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.387118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.387119 LLDP, length 82 [|LLDP] 12:38:08.387127 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.387128 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1038 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.387130 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.387131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.387132 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.387134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.387135 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.387136 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.387136 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.387137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.387138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.398115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.398116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.398129 LLDP, length 82 [|LLDP] 12:38:08.398136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.398137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1040 c361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.398138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.398139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.398140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.398141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.398147 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.398149 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.398150 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.398151 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.398152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.398153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.409127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.409128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.409141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.409142 LLDP, length 82 [|LLDP] 12:38:08.409150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.409151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1049 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.409153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.409154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.409155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.409156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.409157 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.409158 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.409159 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.409160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.409160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.417384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.417385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.417397 LLDP, length 82 [|LLDP] 12:38:08.417406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.417407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104f 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.417408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.417409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.417411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.417412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.417417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.417419 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.417420 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.417421 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.417422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.417423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.428391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.428393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.428404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.428406 LLDP, length 82 [|LLDP] 12:38:08.428413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.428414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1057 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.428416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.428417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.428418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.428419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.428420 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.428421 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.428422 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.428423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.428424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.439398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.439400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.439406 LLDP, length 82 [|LLDP] 12:38:08.439414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.439415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1060 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.439416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.439417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.439418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.439419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.439425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.439426 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.439427 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.439428 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.447645 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.447647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.447652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.447659 LLDP, length 82 [|LLDP] 12:38:08.447667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.447668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1066 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.447669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.447670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.447671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.458659 LLDP, length 82 [|LLDP] 12:38:08.458665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.458666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106e f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.458674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.458675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.458676 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.458677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.458685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.458686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.469688 LLDP, length 82 [|LLDP] 12:38:08.469695 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.469696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1077 5cf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.469698 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.469699 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.469699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.469700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.469708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.469710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.477940 LLDP, length 82 [|LLDP] 12:38:08.477950 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.477951 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107d a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.477953 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.477954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.477955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.477956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.477964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.477966 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.477967 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.477968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.477973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.477975 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.477976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.477977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.488947 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.488948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.488960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.488961 LLDP, length 82 [|LLDP] 12:38:08.488969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.488970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1086 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.488971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.488972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.488973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.488975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.488976 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.488977 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.488978 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.488979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.488980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.497207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.497208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.497220 LLDP, length 82 [|LLDP] 12:38:08.497228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.497229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108c 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.497230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.497231 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.497232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.497233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.497239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.497241 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.497242 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.497243 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.497244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.497245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.508220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.508222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.508235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.508236 LLDP, length 82 [|LLDP] 12:38:08.508243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.508244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1094 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.508245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.508247 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.508247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.508249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.508250 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.508251 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.508252 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.508253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.508254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.519230 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.519231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.519237 LLDP, length 82 [|LLDP] 12:38:08.519245 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.519246 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109d 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.519247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.519248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.519249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.519250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.519255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.519257 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.519258 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.519259 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.519260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.519260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.527504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.527505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.527515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.527516 LLDP, length 82 [|LLDP] 12:38:08.527526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.527527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a3 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.527528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.527529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.527530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.527531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.527532 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.527533 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.527534 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.527535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.527536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.538496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.538497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.538509 LLDP, length 82 [|LLDP] 12:38:08.538517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.538518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ab dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.538520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.538521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.538522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.538523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.538529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.538531 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.538532 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.538533 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.549512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.549514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.549520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.549521 LLDP, length 82 [|LLDP] 12:38:08.549531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.549531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b4 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.549533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.549534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.549536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.557768 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.557769 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ba 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.557770 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.557771 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.557772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.557773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.557780 LLDP, length 82 [|LLDP] 12:38:08.557782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.557789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.568758 LLDP, length 82 [|LLDP] 12:38:08.568770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.568770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c2 f693 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.568772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.568773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.568774 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.568775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.568782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.568783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.577033 LLDP, length 82 [|LLDP] 12:38:08.577045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.577046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c9 435c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.577048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.577049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.577050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.577051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.577059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.577061 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.577062 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.577063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.577069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.577070 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.577071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.577072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.588043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.588044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.588056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.588057 LLDP, length 82 [|LLDP] 12:38:08.588067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.588068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d1 a9c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.588069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.588070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.588071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.588072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.588073 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.588074 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.588075 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.588076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.588077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.599051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.599053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.599066 LLDP, length 82 [|LLDP] 12:38:08.599073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.599074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10da 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.599075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.599076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.599077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.599078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.599084 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.599086 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.599087 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.599088 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.599089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.599090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.607310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.607312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.607324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.607325 LLDP, length 82 [|LLDP] 12:38:08.607341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.607342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e0 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.607343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.607345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.607346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.607347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.607348 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.607349 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.607350 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.607351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.607352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.618319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.618321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.618333 LLDP, length 82 [|LLDP] 12:38:08.618341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.618341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e8 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.618343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.618344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.618345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.618346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.618351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.618353 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.618354 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.618355 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.618356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.618357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.629329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.629330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.629342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.629344 LLDP, length 82 [|LLDP] 12:38:08.629352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.629353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f1 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.629354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.629355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.629356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.629358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.629359 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.629360 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.629361 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.629362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.629363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.637587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.637589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.637594 LLDP, length 82 [|LLDP] 12:38:08.637601 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.637602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f7 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.637604 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.637605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.637606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.637607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.637613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.637614 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.637615 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.637616 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.648603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.648604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.648610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.648611 LLDP, length 82 [|LLDP] 12:38:08.648619 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.648620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ff dcfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.648621 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.648622 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.648624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.659615 LLDP, length 82 [|LLDP] 12:38:08.659621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.659622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1108 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.659624 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.659625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.659626 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.659627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.659634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.659635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.667869 LLDP, length 82 [|LLDP] 12:38:08.667876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.667877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110e 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.667879 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.667880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.667880 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.667882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.667888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.667890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.678876 LLDP, length 82 [|LLDP] 12:38:08.678887 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.678888 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1116 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.678890 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.678891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.678892 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.678893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.678900 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.678902 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.678903 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.678904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.678910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.678912 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.678913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.678913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.687132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.687133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.687145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.687146 LLDP, length 82 [|LLDP] 12:38:08.687154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.687155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111d 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.687157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.687158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.687159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.687160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.687161 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.687162 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.687163 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.687164 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.687165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.698149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.698150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.698162 LLDP, length 82 [|LLDP] 12:38:08.698171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.698172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1125 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.698173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.698174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.698175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.698176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.698182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.698184 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.698185 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.698186 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.698187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.698188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.709154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.709156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.709167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.709169 LLDP, length 82 [|LLDP] 12:38:08.709177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.709178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112e 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.709180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.709181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.709182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.709183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.709184 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.709185 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.709186 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.709187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.709188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.717411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.717413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.717425 LLDP, length 82 [|LLDP] 12:38:08.717434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.717435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1134 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.717436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.717437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.717438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.717439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.717445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.717447 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.717448 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.717449 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.717450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.717450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.728421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.728423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.728435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.728436 LLDP, length 82 [|LLDP] 12:38:08.728444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.728445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113c c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.728446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.728447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.728448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.728449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.728450 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.728451 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.728452 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.728453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.728454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.739429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.739430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.739436 LLDP, length 82 [|LLDP] 12:38:08.739443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.739444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1145 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.739446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.739447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.739448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.739449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.739455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.739457 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.739458 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.739458 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.747675 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.747677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.747688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.747689 LLDP, length 82 [|LLDP] 12:38:08.747698 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.747699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114b 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.747701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.747702 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.747703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.758704 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.758705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1153 dcf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.758707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.758707 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.758708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.758709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.758717 LLDP, length 82 [|LLDP] 12:38:08.758718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.758726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.769697 LLDP, length 82 [|LLDP] 12:38:08.769708 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.769709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115c 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.769711 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.769712 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.769713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.769714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.769721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.769723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.777971 LLDP, length 82 [|LLDP] 12:38:08.777982 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.777983 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1162 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.777985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.777986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.777987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.777988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.777989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.777997 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.777999 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.778000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.778005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.778007 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.778008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.778009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.788992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.788994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.789002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.789003 LLDP, length 82 [|LLDP] 12:38:08.789015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.789015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116a f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.789017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.789018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.789019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.789020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.789021 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.789022 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.789023 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.789024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.789025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.797263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.797272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.797280 LLDP, length 82 [|LLDP] 12:38:08.797293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.797294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1171 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.797296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.797297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.797298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.797299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.797305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.797306 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.797307 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.797308 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.797309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.797310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.808258 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.808260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.808268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.808269 LLDP, length 82 [|LLDP] 12:38:08.808279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.808280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1179 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.808282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.808283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.808284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.808285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.808286 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.808287 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.808288 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.808289 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.808290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.819258 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.819260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.819273 LLDP, length 82 [|LLDP] 12:38:08.819281 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.819282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1182 102c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.819284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.819285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.819286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.819287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.819293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.819295 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.819296 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.819296 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.819297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.819298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.827529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.827531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.827542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.827543 LLDP, length 82 [|LLDP] 12:38:08.827554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.827555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1188 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.827556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.827557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.827558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.827560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.827561 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.827562 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.827563 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.827564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.827565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.838525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.838526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.838533 LLDP, length 82 [|LLDP] 12:38:08.838542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.838543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1190 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.838544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.838545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.838546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.838547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.838554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.838555 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.838556 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.838557 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.849539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.849540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.849546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.849547 LLDP, length 82 [|LLDP] 12:38:08.849555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.849556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1199 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.849557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.849558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.849559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.857803 LLDP, length 82 [|LLDP] 12:38:08.857811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.857812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119f 768f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.857815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.857816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.857816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.857817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.857827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.857829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.868810 LLDP, length 82 [|LLDP] 12:38:08.868817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.868818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a7 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.868820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.868821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.868822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.868822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.868831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.868832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.877063 LLDP, length 82 [|LLDP] 12:38:08.877075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.877076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ae 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.877078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.877079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.877080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.877081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.877082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.877092 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.877093 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.877094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.877100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.877101 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.877102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.877103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.888071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.888072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.888085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.888086 LLDP, length 82 [|LLDP] 12:38:08.888094 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.888095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b6 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.888096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.888098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.888098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.888100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.888101 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.888102 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.888103 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.888104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.888105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.899082 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.899083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.899095 LLDP, length 82 [|LLDP] 12:38:08.899103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.899104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11be f695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.899106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.899107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.899108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.899109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.899115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.899117 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.899118 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.899119 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.899119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.899120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.907343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.907345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.907357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.907358 LLDP, length 82 [|LLDP] 12:38:08.907366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.907367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c5 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.907369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.907370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.907371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.907372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.907373 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.907374 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.907375 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.907376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.907377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.918357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.918359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.918367 LLDP, length 82 [|LLDP] 12:38:08.918376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.918377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cd a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.918379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.918380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.918381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.918382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.918389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.918390 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.918391 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.918392 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.918393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.918394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.929363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.929365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.929379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.929380 LLDP, length 82 [|LLDP] 12:38:08.929389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.929390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d6 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.929391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.929392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.929393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.929395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.929396 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.929397 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.929398 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.929399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.929400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.937614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.937615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.937621 LLDP, length 82 [|LLDP] 12:38:08.937629 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.937630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11dc 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.937631 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.937632 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.937633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.937634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.937640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.937642 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.937642 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.937643 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.948631 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.948632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.948638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.948639 LLDP, length 82 [|LLDP] 12:38:08.948647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.948648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e4 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.948649 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.948651 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.948652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.959640 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.959641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ed 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.959643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.959644 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.959645 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.959646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.959653 LLDP, length 82 [|LLDP] 12:38:08.959654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.959661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.967886 LLDP, length 82 [|LLDP] 12:38:08.967900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.967900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f3 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.967903 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.967904 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.967905 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.967906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.967916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.967918 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.978916 LLDP, length 82 [|LLDP] 12:38:08.978930 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.978930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fb dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.978933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.978934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.978934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.978935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.978936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.978948 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.978950 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.978951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.978957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.978958 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.978959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.978960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.987170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.987172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.987185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.987186 LLDP, length 82 [|LLDP] 12:38:08.987196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.987197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1202 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.987199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.987200 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.987201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.987202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.987203 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.987204 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.987205 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.987206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.987207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.998175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.998177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.998190 LLDP, length 82 [|LLDP] 12:38:08.998199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.998199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120a 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.998201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.998202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.998203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.998204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.998210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.998212 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.998213 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.998214 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.998215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.998216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.009183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.009185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.009209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.009211 LLDP, length 82 [|LLDP] 12:38:09.009219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.009220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1212 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.009222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.009223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.009224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.009225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.009226 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.009227 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.009228 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.009229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.009230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.017469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.017477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.017489 LLDP, length 82 [|LLDP] 12:38:09.017503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.017504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1219 4361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.017506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.017507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.017508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.017509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.017516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.017518 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.017519 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.017520 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.017521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.017521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.028474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.028477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.028486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.028487 LLDP, length 82 [|LLDP] 12:38:09.028500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.028501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1221 a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.028503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.028504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.028505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.028506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.028507 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.028508 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.028509 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.028510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.028512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.039476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.039478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.039487 LLDP, length 82 [|LLDP] 12:38:09.039499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.039500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122a 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.039501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.039502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.039503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.039504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.039511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.039512 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.039513 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.039514 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.047721 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.047723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.047738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.047739 LLDP, length 82 [|LLDP] 12:38:09.047751 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.047752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1230 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.047754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.047755 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.047756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.058744 LLDP, length 82 [|LLDP] 12:38:09.058754 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.058755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1238 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.058757 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.058758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.058759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.058760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.058770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.058771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.066984 LLDP, length 82 [|LLDP] 12:38:09.066998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.066999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123f 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.067001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.067002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.067003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.067004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.067013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.067015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.078002 LLDP, length 82 [|LLDP] 12:38:09.078015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.078016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1247 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.078018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.078019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.078020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.078021 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.078022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.078032 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.078034 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.078035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.078041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.078042 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.078043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.078044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.089034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.089037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.089047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.089048 LLDP, length 82 [|LLDP] 12:38:09.089061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.089061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124f dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.089063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.089064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.089065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.089066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.089067 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.089068 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.089069 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.089070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.089071 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.097269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.097270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.097283 LLDP, length 82 [|LLDP] 12:38:09.097292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.097293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1256 29c4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.097295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.097296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.097297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.097298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.097304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.097306 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.097307 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.097307 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.097308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.097309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.108276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.108277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.108290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.108291 LLDP, length 82 [|LLDP] 12:38:09.108299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.108300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125e 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.108301 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.108302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.108303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.108305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.108306 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.108307 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.108308 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.108308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.108309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.119302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.119310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.119320 LLDP, length 82 [|LLDP] 12:38:09.119333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.119334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1266 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.119346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.119347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.119348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.119350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.119357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.119358 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.119359 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.119360 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.119361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.119362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.127548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.127550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.127565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.127566 LLDP, length 82 [|LLDP] 12:38:09.127575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.127577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126d 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.127578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.127579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.127580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.127582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.127583 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.127583 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.127585 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.127585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.127586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.138554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.138556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.138562 LLDP, length 82 [|LLDP] 12:38:09.138570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.138571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1275 a9c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.138572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.138573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.138574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.138575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.138581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.138583 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.138584 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.138584 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.149565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.149567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.149584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.149585 LLDP, length 82 [|LLDP] 12:38:09.149597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.149598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127e 102f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.149600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.149601 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.149602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.157811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.157812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1284 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.157814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.157815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.157822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.157823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.157831 LLDP, length 82 [|LLDP] 12:38:09.157833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.157841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.168818 LLDP, length 82 [|LLDP] 12:38:09.168829 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.168830 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 128c c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.168832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.168833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.168834 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.168835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.168843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.168844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.177094 LLDP, length 82 [|LLDP] 12:38:09.177106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.177106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1293 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.177108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.177109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.177110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.177111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.177120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.177121 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.177123 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.177124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.177130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.177132 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.177133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.177134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.188115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.188124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.188133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.188134 LLDP, length 82 [|LLDP] 12:38:09.188146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.188147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 129b 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.188149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.188150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.188151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.188153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.188154 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.188155 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.188156 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.188157 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.188157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 7862 packets captured 7862 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra1 with rc 0 and out 12:38:03.160052 LLDP, length 82 [|LLDP] 12:38:03.160065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.160066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a4 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.160068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.160070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.160071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.160072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.160095 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.160097 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.160098 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.160099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.160107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.160109 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.160109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.160110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.168280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.168282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.168299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.168300 LLDP, length 82 [|LLDP] 12:38:03.168312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.168313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00aa c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.168314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.168315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.168316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.168317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.168318 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.168319 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.168320 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.168321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.168322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.179282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.179284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.179294 LLDP, length 82 [|LLDP] 12:38:03.179303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.179304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b3 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.179306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.179307 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.179308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.179314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.179315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.179316 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.179317 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.179318 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.179319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.179321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.187533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.187535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.187549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.187550 LLDP, length 82 [|LLDP] 12:38:03.187560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.187561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b9 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.187563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.187564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.187565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.187566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.187567 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.187568 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.187569 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.187570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.187571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.198539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.198541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.198554 LLDP, length 82 [|LLDP] 12:38:03.198562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.198563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c1 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.198565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.198566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.198567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.198572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.198574 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.198574 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.198575 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.198576 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.198577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.198578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.209549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.209551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.209564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.209565 LLDP, length 82 [|LLDP] 12:38:03.209575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.209576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ca 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.209577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.209578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.209579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.209580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.209581 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.209582 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.209583 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.209584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.209585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.217816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.217817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.217830 LLDP, length 82 [|LLDP] 12:38:03.217837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.217838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d0 902e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.217840 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.217841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.217842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.217847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.217849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.217850 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.217850 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.217852 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.217853 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.217854 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.228814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.228816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.228828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.228829 LLDP, length 82 [|LLDP] 12:38:03.228837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.228838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d8 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.228840 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.228841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.228842 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.228843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.228844 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.228845 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.228846 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.228847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.228848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.239823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.239825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.239837 LLDP, length 82 [|LLDP] 12:38:03.239845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.239846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e1 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.239848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.239849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.239850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.239856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.239857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.239858 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.239859 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.239860 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.239861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.239862 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.248086 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.248087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.248094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.248101 LLDP, length 82 [|LLDP] 12:38:03.248110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.248111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e7 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.248112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.248114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.248114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.248116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.248117 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.248118 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.248119 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.259080 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.259082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.259087 LLDP, length 82 [|LLDP] 12:38:03.259102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.259103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f0 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.259104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.259105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.259109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.259110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.267343 LLDP, length 82 [|LLDP] 12:38:03.267357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.267358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f6 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.267360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.267361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.267362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.267363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.267371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.267372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.278350 LLDP, length 82 [|LLDP] 12:38:03.278365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.278366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fe c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.278368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.278369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.278370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.278376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.278378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.278380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.289382 LLDP, length 82 [|LLDP] 12:38:03.289393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.289394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0107 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.289396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.289397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.289398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.289399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.289408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.289409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.289411 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.289412 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.289414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.289415 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.289415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.289416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.297629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.297631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.297643 LLDP, length 82 [|LLDP] 12:38:03.297651 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.297652 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010d 7692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.297653 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.297654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.297656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.297661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.297662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.297663 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.297664 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.297665 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.297666 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.297667 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.308637 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.308639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.308651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.308652 LLDP, length 82 [|LLDP] 12:38:03.308660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.308661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0115 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.308662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.308663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.308664 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.308665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.308666 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.308668 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.308668 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.308669 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.308670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.319647 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.319649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.319661 LLDP, length 82 [|LLDP] 12:38:03.319668 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.319669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011e 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.319670 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.319672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.319672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.319678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.319680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.319681 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.319682 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.319683 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.319683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.319684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.327907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.327909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.327921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.327922 LLDP, length 82 [|LLDP] 12:38:03.327929 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.327930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0124 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.327932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.327933 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.327934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.327935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.327936 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.327937 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.327938 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.327939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.327940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.338922 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.338924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.338936 LLDP, length 82 [|LLDP] 12:38:03.338945 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.338945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012c f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.338947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.338948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.338950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.338955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.338956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.338957 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.338958 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.338959 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.338960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.338961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.349926 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.349928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.349941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.349942 LLDP, length 82 [|LLDP] 12:38:03.349950 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.349950 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0135 5cfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.349952 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.349953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.349954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.349955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.349956 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.349957 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.349958 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.358196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.358197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.358203 LLDP, length 82 [|LLDP] 12:38:03.358211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.358212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013b a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.358213 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.358214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.358217 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.358219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.369200 LLDP, length 82 [|LLDP] 12:38:03.369207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.369208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0144 1026 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.369210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.369211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.369212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.369214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.369221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.369222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.377444 LLDP, length 82 [|LLDP] 12:38:03.377451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.377452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014a 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.377454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.377455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.377456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.377463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.377465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.377467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.388465 LLDP, length 82 [|LLDP] 12:38:03.388477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.388478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0152 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.388480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.388480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.388481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.388483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.388484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.388493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.388494 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.388496 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.388498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.388499 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.388500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.388501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.399479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.399481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.399493 LLDP, length 82 [|LLDP] 12:38:03.399502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.399503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015b 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.399504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.399505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.399506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.399511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.399513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.399514 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.399515 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.399516 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.399516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.399517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.407731 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.407732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.407744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.407745 LLDP, length 82 [|LLDP] 12:38:03.407753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.407754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0161 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.407756 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.407756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.407758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.407759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.407760 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.407761 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.407762 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.407763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.407764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.418739 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.418741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.418753 LLDP, length 82 [|LLDP] 12:38:03.418761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.418762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0169 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.418764 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.418765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.418766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.418771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.418773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.418774 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.418775 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.418776 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.418777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.418778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.429752 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.429753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.429765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.429766 LLDP, length 82 [|LLDP] 12:38:03.429775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.429776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0172 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.429777 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.429779 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.429780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.429781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.429782 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.429783 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.429784 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.429785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.429786 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.438006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.438008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.438020 LLDP, length 82 [|LLDP] 12:38:03.438028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.438029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0178 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.438030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.438031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.438032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.438037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.438039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.438040 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.438041 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.438042 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.438043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.438043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.449018 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.449019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.449031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.449032 LLDP, length 82 [|LLDP] 12:38:03.449040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.449041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0180 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.449042 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.449043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.449045 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.449046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.449047 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.449048 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.449049 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.457263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.457264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.457276 LLDP, length 82 [|LLDP] 12:38:03.457284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.457285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0187 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.457287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.457288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.457291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.457292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.468294 LLDP, length 82 [|LLDP] 12:38:03.468301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.468302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018f a9c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.468304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.468305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.468306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.468307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.468314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.468316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.479284 LLDP, length 82 [|LLDP] 12:38:03.479290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.479291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0198 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.479293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.479294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.479295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.479302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.479303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.479305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.487557 LLDP, length 82 [|LLDP] 12:38:03.487569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.487570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019e 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.487572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.487573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.487574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.487575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.487583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.487584 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.487587 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.487588 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.487589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.487590 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.487591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.487592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.498564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.498566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.498578 LLDP, length 82 [|LLDP] 12:38:03.498585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.498586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a6 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.498588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.498589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.498590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.498596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.498597 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.498598 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.498599 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.498600 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.498601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.498602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.509573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.509575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.509587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.509588 LLDP, length 82 [|LLDP] 12:38:03.509596 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.509596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01af 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.509598 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.509599 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.509600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.509601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.509602 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.509603 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.509604 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.509605 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.509606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.517833 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.517835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.517847 LLDP, length 82 [|LLDP] 12:38:03.517855 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.517856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b5 768f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.517857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.517858 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.517859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.517864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.517866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.517867 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.517868 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.517869 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.517869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.517870 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.528842 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.528844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.528859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.528860 LLDP, length 82 [|LLDP] 12:38:03.528869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.528870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01bd dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.528871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.528872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.528873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.528874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.528875 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.528876 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.528877 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.528878 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.528879 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.539855 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.539857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.539862 LLDP, length 82 [|LLDP] 12:38:03.539870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.539871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c6 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.539873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.539874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.539875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.539880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.539881 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.539883 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.539883 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.539884 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.539885 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.539886 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.548106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.548108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.548113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.548114 LLDP, length 82 [|LLDP] 12:38:03.548123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.548123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cc 9029 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.548125 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.548126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.548127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.548128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.548129 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.548130 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.548131 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.559109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.559110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.559115 LLDP, length 82 [|LLDP] 12:38:03.559127 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.559128 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d4 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.559129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.559131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.559134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.559135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.567371 LLDP, length 82 [|LLDP] 12:38:03.567384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.567384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01db 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.567387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.567388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.567389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.567390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.567397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.567399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.578376 LLDP, length 82 [|LLDP] 12:38:03.578390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.578391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e3 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.578393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.578394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.578395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.578402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.578403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.578406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.589423 LLDP, length 82 [|LLDP] 12:38:03.589436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.589437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ec 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.589439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.589440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.589441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.589442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.589451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.589452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.589454 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.589455 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.589456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.589457 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.589458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.589460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.597659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.597661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.597673 LLDP, length 82 [|LLDP] 12:38:03.597681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.597682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f2 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.597684 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.597685 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.597686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.597691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.597693 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.597694 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.597694 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.597695 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.597696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.597697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.608747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.608748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.608755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.608755 LLDP, length 82 [|LLDP] 12:38:03.608764 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.608765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fa c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.608766 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.608767 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.608768 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.608770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.608771 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.608772 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.608773 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.608774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.608774 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.619677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.619679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.619690 LLDP, length 82 [|LLDP] 12:38:03.619698 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.619699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0203 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.619701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.619702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.619703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.619708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.619710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.619711 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.619712 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.619713 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.619714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.619715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.627935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.627937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.627949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.627949 LLDP, length 82 [|LLDP] 12:38:03.627958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.627958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0209 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.627960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.627961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.627962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.627964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.627965 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.627966 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.627966 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.627967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.627968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.638945 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.638947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.638959 LLDP, length 82 [|LLDP] 12:38:03.638967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.638968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0211 dcf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.638969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.638970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.638971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.638976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.638978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.638979 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.638980 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.638981 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.638982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.638982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.649956 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.649958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.649970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.649972 LLDP, length 82 [|LLDP] 12:38:03.649980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.649981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021a 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.649983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.649984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.649985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.649986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.649987 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.649988 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.649989 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.658219 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.658221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.658226 LLDP, length 82 [|LLDP] 12:38:03.658234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.658235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0220 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.658237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.658237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.658241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.658242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.669212 LLDP, length 82 [|LLDP] 12:38:03.669220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.669227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0228 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.669229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.669230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.669231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.669232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.669239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.669240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.677488 LLDP, length 82 [|LLDP] 12:38:03.677495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.677496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022f 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.677497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.677499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.677500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.677506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.677508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.677511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.688495 LLDP, length 82 [|LLDP] 12:38:03.688509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.688510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0237 a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.688512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.688513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.688514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.688515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.688516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.688526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.688528 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.688530 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.688531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.688532 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.688533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.688534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.699503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.699505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.699517 LLDP, length 82 [|LLDP] 12:38:03.699525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.699526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0240 1026 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.699527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.699528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.699529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.699534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.699536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.699537 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.699538 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.699539 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.699540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.699541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.707758 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.707769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.707776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.707777 LLDP, length 82 [|LLDP] 12:38:03.707785 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.707786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0246 5cf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.707788 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.707789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.707790 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.707791 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.707792 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.707793 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.707794 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.707795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.707796 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.718768 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.718770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.718782 LLDP, length 82 [|LLDP] 12:38:03.718790 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.718790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024e c361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.718792 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.718793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.718794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.718800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.718802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.718803 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.718803 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.718804 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.718805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.718806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.729783 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.729785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.729790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.729791 LLDP, length 82 [|LLDP] 12:38:03.729800 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.729801 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0257 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.729802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.729803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.729804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.729806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.729807 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.729808 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.729808 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.729809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.729810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.739324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.739325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.739331 LLDP, length 82 [|LLDP] 12:38:03.739344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.739346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025d 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.739347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.739348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.739349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.739355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.739356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.739357 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.739358 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.739359 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.739361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.739362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.749043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.749045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.749051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.749052 LLDP, length 82 [|LLDP] 12:38:03.749060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.749061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0265 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.749063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.749064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.749065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.749066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.749067 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.749068 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.749069 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.757293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.757294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.757306 LLDP, length 82 [|LLDP] 12:38:03.757314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.757315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026c 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.757316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.757317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.757321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.757322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.768302 LLDP, length 82 [|LLDP] 12:38:03.768308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.768309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0274 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.768317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.768318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.768319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.768320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.768327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.768328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.779312 LLDP, length 82 [|LLDP] 12:38:03.779326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.779326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027c f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.779329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.779329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.779330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.779343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.779345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.779347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.787597 LLDP, length 82 [|LLDP] 12:38:03.787608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.787609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0283 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.787611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.787612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.787613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.787614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.787615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.787626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.787628 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.787630 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.787631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.787632 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.787633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.787635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.798603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.798605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.798619 LLDP, length 82 [|LLDP] 12:38:03.798628 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.798629 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028b a9c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.798630 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.798632 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.798633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.798639 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.798640 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.798641 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.798642 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.798643 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.798644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.798645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.809613 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.809614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.809622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.809623 LLDP, length 82 [|LLDP] 12:38:03.809633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.809633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0294 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.809635 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.809636 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.809637 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.809639 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.809640 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.809641 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.809641 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.809642 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.809643 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.817880 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.817883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.817892 LLDP, length 82 [|LLDP] 12:38:03.817903 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.817904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029a 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.817905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.817906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.817907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.817913 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.817915 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.817915 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.817916 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.817917 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.817918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.817919 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.828886 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.828888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.828903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.828905 LLDP, length 82 [|LLDP] 12:38:03.828916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.828917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a2 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.828918 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.828919 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.828920 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.828922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.828923 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.828924 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.828924 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.828925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.828926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.839891 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.839893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.839907 LLDP, length 82 [|LLDP] 12:38:03.839917 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.839917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ab 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.839919 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.839920 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.839921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.839927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.839928 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.839929 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.839930 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.839931 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.839932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.839932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.848145 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.848146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.848154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.848155 LLDP, length 82 [|LLDP] 12:38:03.848165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.848166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b1 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.848167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.848168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.848170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.848171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.848172 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.848173 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.848174 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.859144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.859146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.859162 LLDP, length 82 [|LLDP] 12:38:03.859171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.859172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b9 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.859173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.859174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.859178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.859179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.867406 LLDP, length 82 [|LLDP] 12:38:03.867415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.867416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c0 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.867419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.867420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.867421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.867421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.867430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.867432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.878411 LLDP, length 82 [|LLDP] 12:38:03.878424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.878425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c8 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.878428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.878429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.878430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.878438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.878440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.878442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.889439 LLDP, length 82 [|LLDP] 12:38:03.889452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.889453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d0 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.889455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.889456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.889457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.889458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.889459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.889468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.889469 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.889471 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.889473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.889474 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.889475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.889475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.897692 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.897694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.897708 LLDP, length 82 [|LLDP] 12:38:03.897717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.897718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d7 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.897719 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.897721 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.897722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.897727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.897728 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.897730 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.897730 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.897731 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.897732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.897733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.908709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.908711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.908726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.908727 LLDP, length 82 [|LLDP] 12:38:03.908738 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.908738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02df a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.908740 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.908741 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.908742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.908743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.908744 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.908745 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.908746 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.908747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.908748 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.919713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.919715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.919729 LLDP, length 82 [|LLDP] 12:38:03.919738 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.919738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e8 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.919740 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.919741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.919742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.919747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.919748 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.919749 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.919750 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.919751 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.919752 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.919753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.927969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.927971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.927984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.927985 LLDP, length 82 [|LLDP] 12:38:03.927994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.927994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ee 5cf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.927996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.927997 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.927998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.927999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.928000 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.928001 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.928002 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.928003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.928004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.938989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.938990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.939005 LLDP, length 82 [|LLDP] 12:38:03.939018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.939019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f6 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.939020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.939021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.939022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.939028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.939030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.939030 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.939031 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.939032 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.939034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.939034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.947234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.947236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.947250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.947251 LLDP, length 82 [|LLDP] 12:38:03.947260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.947261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fd 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.947263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.947264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.947265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.947266 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.947267 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.947268 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.947269 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.958233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.958235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.958248 LLDP, length 82 [|LLDP] 12:38:03.958256 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.958257 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0305 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.958258 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.958260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.958263 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.958264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.969278 LLDP, length 82 [|LLDP] 12:38:03.969288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.969288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030d dcfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.969291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.969292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.969293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.969294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.969304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.969305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.977501 LLDP, length 82 [|LLDP] 12:38:03.977514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.977515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0314 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.977517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.977518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.977519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.977526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.977528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.977531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.988528 LLDP, length 82 [|LLDP] 12:38:03.988541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.988542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031c 9026 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.988544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.988545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.988546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.988547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.988548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.988559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.988560 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.988562 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.988563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.988564 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.988565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.988566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:03.999540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:03.999542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.999555 LLDP, length 82 [|LLDP] 12:38:03.999563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:03.999564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0324 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:03.999565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:03.999566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:03.999567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:03.999573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:03.999575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:03.999576 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:03.999577 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.999578 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:03.999579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:03.999580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.007795 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.007796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.007803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.007804 LLDP, length 82 [|LLDP] 12:38:04.007813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.007814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032b 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.007815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.007816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.007817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.007819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.007820 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.007821 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.007822 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.007822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.007823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.018799 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.018801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.018814 LLDP, length 82 [|LLDP] 12:38:04.018822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.018823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0333 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.018824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.018825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.018826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.018832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.018834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.018835 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.018836 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.018837 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.018837 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.018838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.029810 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.029812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.029824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.029825 LLDP, length 82 [|LLDP] 12:38:04.029834 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.029835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033c 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.029836 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.029837 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.029838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.029840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.029841 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.029842 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.029843 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.029844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.029845 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.038072 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.038073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.038079 LLDP, length 82 [|LLDP] 12:38:04.038088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.038089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0342 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.038091 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.038092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.038093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.038098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.038100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.038101 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.038102 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.038103 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.038104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.038105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.049073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.049075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.049081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.049082 LLDP, length 82 [|LLDP] 12:38:04.049090 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.049091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034a c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.049093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.049094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.049095 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.049096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.049097 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.049098 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.049099 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.057364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.057365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.057371 LLDP, length 82 [|LLDP] 12:38:04.057378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.057379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0351 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.057381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.057382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.057385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.057387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.068374 LLDP, length 82 [|LLDP] 12:38:04.068382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.068382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0359 768f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.068384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.068385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.068386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.068387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.068395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.068397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.079383 LLDP, length 82 [|LLDP] 12:38:04.079390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.079391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0361 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.079393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.079394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.079395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.079401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.079403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.079405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.087615 LLDP, length 82 [|LLDP] 12:38:04.087623 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.087623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0368 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.087625 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.087626 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.087627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.087628 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.087630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.087638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.087639 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.087641 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.087643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.087644 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.087645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.087646 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.098621 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.098623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.098635 LLDP, length 82 [|LLDP] 12:38:04.098644 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.098645 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0370 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.098646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.098647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.098648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.098653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.098655 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.098656 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.098657 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.098658 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.098659 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.098660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.109643 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.109645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.109659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.109660 LLDP, length 82 [|LLDP] 12:38:04.109676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.109677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0378 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.109679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.109680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.109681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.109683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.109684 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.109685 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.109686 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.109686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.109687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.117925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.117927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.117941 LLDP, length 82 [|LLDP] 12:38:04.117952 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.117953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037f 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.117954 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.117955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.117957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.117962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.117964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.117965 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.117966 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.117967 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.117968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.117968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.128938 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.128947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.128957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.128958 LLDP, length 82 [|LLDP] 12:38:04.128969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.128970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0387 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.128971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.128972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.128973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.128974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.128976 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.128977 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.128978 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.128979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.128980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.139923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.139925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.139939 LLDP, length 82 [|LLDP] 12:38:04.139947 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.139948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0390 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.139950 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.139951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.139952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.139957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.139959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.139960 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.139961 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.139962 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.139963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.139964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.148173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.148175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.148183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.148184 LLDP, length 82 [|LLDP] 12:38:04.148192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.148192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0396 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.148194 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.148195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.148196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.148197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.148198 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.148199 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.148200 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.159218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.159220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.159227 LLDP, length 82 [|LLDP] 12:38:04.159235 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.159236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039e c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.159237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.159238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.159241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.159243 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.167429 LLDP, length 82 [|LLDP] 12:38:04.167441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.167442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a5 102e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.167445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.167446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.167447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.167449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.167457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.167459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.178439 LLDP, length 82 [|LLDP] 12:38:04.178452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.178453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ad 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.178456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.178457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.178458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.178466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.178467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.178470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.189465 LLDP, length 82 [|LLDP] 12:38:04.189477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.189478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b5 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.189480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.189481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.189483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.189484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.189484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.189495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.189496 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.189498 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.189499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.189501 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.189502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.189502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.197722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.197724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.197737 LLDP, length 82 [|LLDP] 12:38:04.197745 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.197745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03bc 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.197747 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.197748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.197749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.197754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.197756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.197756 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.197757 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.197758 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.197759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.197760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.208735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.208737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.208752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.208753 LLDP, length 82 [|LLDP] 12:38:04.208762 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.208763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c4 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.208764 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.208766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.208767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.208768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.208769 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.208770 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.208771 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.208772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.208773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.219741 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.219743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.219757 LLDP, length 82 [|LLDP] 12:38:04.219765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.219766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cc f694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.219767 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.219768 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.219770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.219775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.219776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.219777 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.219778 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.219779 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.219780 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.219781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.227997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.227999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.228013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.228014 LLDP, length 82 [|LLDP] 12:38:04.228022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.228023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d3 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.228024 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.228025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.228027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.228028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.228029 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.228030 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.228031 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.228032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.228033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.239007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.239009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.239023 LLDP, length 82 [|LLDP] 12:38:04.239031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.239031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03db a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.239033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.239034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.239035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.239040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.239042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.239042 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.239043 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.239044 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.239045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.239046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.247262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.247264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.247271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.247273 LLDP, length 82 [|LLDP] 12:38:04.247282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.247283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e1 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.247284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.247285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.247286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.247287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.247289 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.247290 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.247291 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.258296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.258298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.258307 LLDP, length 82 [|LLDP] 12:38:04.258317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.258318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ea 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.258320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.258321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.258325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.258326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.269322 LLDP, length 82 [|LLDP] 12:38:04.269331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.269332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f2 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.269334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.269335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.269336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.269337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.269348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.269349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.277538 LLDP, length 82 [|LLDP] 12:38:04.277553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.277554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f9 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.277556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.277557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.277558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.277568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.277569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.277572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.288559 LLDP, length 82 [|LLDP] 12:38:04.288568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.288569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0401 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.288571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.288572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.288573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.288575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.288576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.288585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.288586 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.288588 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.288590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.288591 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.288592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.288592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.299565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.299567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.299580 LLDP, length 82 [|LLDP] 12:38:04.299588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.299589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0409 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.299591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.299592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.299593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.299598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.299599 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.299600 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.299601 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.299602 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.299603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.299604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.307821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.307823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.307836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.307837 LLDP, length 82 [|LLDP] 12:38:04.307846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.307847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0410 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.307849 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.307850 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.307850 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.307852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.307853 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.307854 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.307855 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.307855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.307856 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.318832 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.318833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.318847 LLDP, length 82 [|LLDP] 12:38:04.318855 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.318855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0418 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.318857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.318858 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.318859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.318864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.318866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.318867 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.318868 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.318869 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.318870 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.318870 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.329843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.329845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.329859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.329860 LLDP, length 82 [|LLDP] 12:38:04.329868 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.329869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0420 f68f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.329871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.329871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.329873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.329874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.329875 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.329876 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.329877 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.329878 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.329879 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.338098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.338100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.338114 LLDP, length 82 [|LLDP] 12:38:04.338121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.338122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0427 435c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.338123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.338124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.338125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.338131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.338132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.338133 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.338135 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.338135 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.338136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.338137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.349109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.349110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.349123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.349124 LLDP, length 82 [|LLDP] 12:38:04.349133 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.349133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042f a9c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.349135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.349136 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.349137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.349139 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.349139 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.349140 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.349141 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.357372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.357373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.357380 LLDP, length 82 [|LLDP] 12:38:04.357387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.357388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0435 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.357390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.357390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.357394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.357395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.368364 LLDP, length 82 [|LLDP] 12:38:04.368376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.368377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043e 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.368379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.368381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.368382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.368382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.368391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.368393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.379391 LLDP, length 82 [|LLDP] 12:38:04.379398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.379399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0446 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.379402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.379403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.379403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.379411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.379413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.379416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.389142 LLDP, length 82 [|LLDP] 12:38:04.389149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.389150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044d 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.389153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.389154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.389155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.389156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.389157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.389168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.389169 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.389171 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.389172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.389173 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.389174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.389175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.398857 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.398859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.398866 LLDP, length 82 [|LLDP] 12:38:04.398874 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.398875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0455 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.398876 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.398877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.398878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.398884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.398885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.398886 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.398887 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.398888 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.398889 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.398890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.409668 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.409670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.409678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.409679 LLDP, length 82 [|LLDP] 12:38:04.409687 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.409688 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045d dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.409689 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.409690 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.409691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.409693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.409694 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.409695 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.409696 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.409696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.409697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.417926 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.417928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.417935 LLDP, length 82 [|LLDP] 12:38:04.417943 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.417944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0464 29c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.417946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.417947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.417948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.417953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.417954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.417955 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.417956 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.417957 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.417958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.417959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.428935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.428937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.428951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.428952 LLDP, length 82 [|LLDP] 12:38:04.428961 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.428961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046c 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.428963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.428964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.428965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.428967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.428968 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.428969 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.428969 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.428970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.428971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.439944 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.439946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.439963 LLDP, length 82 [|LLDP] 12:38:04.439971 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.439972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0474 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.439974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.439974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.439975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.439981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.439982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.439983 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.439984 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.439985 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.439986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.439987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.448797 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.448799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.448806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.448808 LLDP, length 82 [|LLDP] 12:38:04.448816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.448817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047b 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.448819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.448820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.448820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.448822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.448823 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.448824 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.448825 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.459198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.459199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.459213 LLDP, length 82 [|LLDP] 12:38:04.459221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.459222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0483 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.459224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.459225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.459228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.459230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.467457 LLDP, length 82 [|LLDP] 12:38:04.467468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.467469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0489 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.467471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.467472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.467473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.467474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.467483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.467485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.478487 LLDP, length 82 [|LLDP] 12:38:04.478494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.478495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0492 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.478497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.478498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.478499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.478508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.478509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.478512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.489497 LLDP, length 82 [|LLDP] 12:38:04.489509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.489510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049a c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.489513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.489514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.489515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.489516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.489517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.489527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.489528 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.489531 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.489532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.489533 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.489534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.489535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.497753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.497755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.497762 LLDP, length 82 [|LLDP] 12:38:04.497770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.497771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a1 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.497772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.497773 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.497774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.497779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.497781 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.497782 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.497783 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.497784 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.497785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.497786 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.508760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.508761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.508774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.508775 LLDP, length 82 [|LLDP] 12:38:04.508783 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.508784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a9 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.508786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.508786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.508788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.508789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.508790 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.508791 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.508792 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.508792 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.508793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.519770 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.519771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.519784 LLDP, length 82 [|LLDP] 12:38:04.519792 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.519793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b1 dcf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.519794 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.519795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.519796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.519802 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.519803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.519804 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.519805 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.519806 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.519807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.519808 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.528045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.528047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.528058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.528059 LLDP, length 82 [|LLDP] 12:38:04.528070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.528071 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b8 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.528073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.528074 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.528074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.528076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.528077 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.528078 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.528079 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.528080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.528081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.539039 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.539041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.539055 LLDP, length 82 [|LLDP] 12:38:04.539064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.539065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c0 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.539066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.539067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.539068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.539073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.539075 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.539076 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.539077 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.539078 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.539079 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.539080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.547291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.547293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.547300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.547301 LLDP, length 82 [|LLDP] 12:38:04.547310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.547311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c6 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.547312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.547313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.547314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.547316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.547317 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.547318 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.547319 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.558291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.558293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.558307 LLDP, length 82 [|LLDP] 12:38:04.558316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.558317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cf 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.558318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.558319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.558322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.558324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.569340 LLDP, length 82 [|LLDP] 12:38:04.569348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.569349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d7 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.569352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.569353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.569354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.569355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.569363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.569365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.577582 LLDP, length 82 [|LLDP] 12:38:04.577589 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.577590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04dd f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.577592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.577593 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.577595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.577603 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.577604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.577607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.588587 LLDP, length 82 [|LLDP] 12:38:04.588599 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.588600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e6 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.588603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.588604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.588605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.588606 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.588607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.588617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.588618 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.588620 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.588621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.588622 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.588623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.588624 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.599592 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.599593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.599607 LLDP, length 82 [|LLDP] 12:38:04.599615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.599616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ee c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.599617 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.599618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.599619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.599624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.599626 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.599627 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.599628 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.599628 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.599630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.599630 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.607850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.607852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.607865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.607866 LLDP, length 82 [|LLDP] 12:38:04.607874 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.607875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f5 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.607877 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.607878 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.607879 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.607880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.607881 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.607882 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.607883 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.607884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.607885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.618864 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.618866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.618879 LLDP, length 82 [|LLDP] 12:38:04.618887 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.618888 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fd 768f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.618889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.618890 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.618891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.618896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.618898 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.618899 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.618900 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.618901 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.618902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.618903 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.629873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.629875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.629881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.629883 LLDP, length 82 [|LLDP] 12:38:04.629891 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.629892 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0505 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.629894 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.629895 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.629896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.629897 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.629898 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.629899 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.629900 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.629901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.629902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.638131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.638133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.638148 LLDP, length 82 [|LLDP] 12:38:04.638156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.638157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050c 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.638158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.638159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.638160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.638166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.638167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.638168 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.638169 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.638170 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.638171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.638172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.649133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.649135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.649143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.649144 LLDP, length 82 [|LLDP] 12:38:04.649152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.649153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0514 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.649155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.649156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.649157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.649158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.649159 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.649160 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.649161 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.657452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.657453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.657461 LLDP, length 82 [|LLDP] 12:38:04.657469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.657470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051a dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.657472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.657473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.657477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.657478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.668423 LLDP, length 82 [|LLDP] 12:38:04.668430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.668431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0523 435f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.668433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.668434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.668435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.668436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.668445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.668446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.679404 LLDP, length 82 [|LLDP] 12:38:04.679416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.679417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052b a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.679419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.679420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.679421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.679428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.679430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.679433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.687676 LLDP, length 82 [|LLDP] 12:38:04.687689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.687690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0531 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.687692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.687693 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.687694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.687695 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.687696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.687705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.687707 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.687709 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.687710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.687711 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.687712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.687713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.698687 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.698688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.698701 LLDP, length 82 [|LLDP] 12:38:04.698710 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.698710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053a 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.698712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.698713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.698714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.698719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.698721 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.698722 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.698723 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.698724 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.698725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.698726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.709695 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.709697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.709711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.709712 LLDP, length 82 [|LLDP] 12:38:04.709720 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.709721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0542 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.709722 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.709723 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.709724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.709726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.709727 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.709728 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.709729 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.709730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.709731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.717953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.717955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.717969 LLDP, length 82 [|LLDP] 12:38:04.717977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.717978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0549 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.717980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.717981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.717981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.717987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.717989 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.717990 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.717991 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.717992 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.717993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.717993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.728966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.728968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.728981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.728982 LLDP, length 82 [|LLDP] 12:38:04.728991 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.728992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0551 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.728994 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.728995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.728996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.728997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.728998 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.728999 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.729000 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.729001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.729002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.737225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.737227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.737234 LLDP, length 82 [|LLDP] 12:38:04.737243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.737244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0557 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.737245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.737246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.737247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.737253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.737255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.737255 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.737256 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.737257 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.737258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.737260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.748234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.748236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.748243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.748244 LLDP, length 82 [|LLDP] 12:38:04.748252 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.748252 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0560 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.748254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.748255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.748256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.748257 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.748259 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.748259 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.748260 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.759252 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.759254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.759265 LLDP, length 82 [|LLDP] 12:38:04.759277 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.759278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0568 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.759280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.759281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.759284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.759286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.767531 LLDP, length 82 [|LLDP] 12:38:04.767543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.767544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056e dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.767547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.767548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.767549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.767550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.767564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.767565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.778511 LLDP, length 82 [|LLDP] 12:38:04.778523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.778524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0577 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.778526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.778527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.778529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.778541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.778543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.778545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.789539 LLDP, length 82 [|LLDP] 12:38:04.789553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.789554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057f a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.789556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.789557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.789558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.789560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.789561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.789574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.789575 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.789577 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.789578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.789579 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.789580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.789581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.797799 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.797808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.797818 LLDP, length 82 [|LLDP] 12:38:04.797832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.797833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0585 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.797834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.797836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.797837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.797842 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.797844 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.797845 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.797846 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.797847 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.797848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.797849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.808846 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.808849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.808864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.808865 LLDP, length 82 [|LLDP] 12:38:04.808888 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.808889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058e 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.808891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.808892 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.808893 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.808894 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.808896 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.808897 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.808898 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.808899 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.808900 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.819853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.819856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.819872 LLDP, length 82 [|LLDP] 12:38:04.819890 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.819891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0596 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.819893 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.819894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.819895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.819902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.819903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.819904 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.819905 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.819906 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.819907 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.819908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.828106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.828109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.828124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.828125 LLDP, length 82 [|LLDP] 12:38:04.828141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.828142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059d 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.828144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.828145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.828146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.828148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.828149 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.828150 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.828151 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.828151 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.828152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.839117 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.839121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.839137 LLDP, length 82 [|LLDP] 12:38:04.839153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.839154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a5 7693 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.839155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.839156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.839157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.839164 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.839165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.839166 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.839168 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.839168 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.839169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.839170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.847361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.847364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.847379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.847381 LLDP, length 82 [|LLDP] 12:38:04.847397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.847398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ab c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.847399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.847400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.847401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.847403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.847404 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.847405 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.847406 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.858388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.858391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.858406 LLDP, length 82 [|LLDP] 12:38:04.858422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.858423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b4 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.858425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.858426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.858430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.858432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.869416 LLDP, length 82 [|LLDP] 12:38:04.869432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.869433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bc 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.869435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.869436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.869437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.869438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.869454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.869456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.877602 LLDP, length 82 [|LLDP] 12:38:04.877614 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.877615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c2 dcf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.877616 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.877618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.877619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.877628 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.877630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.877633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.888624 LLDP, length 82 [|LLDP] 12:38:04.888639 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.888640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05cb 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.888643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.888643 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.888644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.888645 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.888646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.888658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.888659 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.888661 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.888663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.888663 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.888664 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.888665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.899625 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.899627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.899640 LLDP, length 82 [|LLDP] 12:38:04.899650 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.899651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d3 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.899653 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.899654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.899655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.899660 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.899662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.899662 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.899663 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.899664 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.899665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.899666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.907886 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.907888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.907896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.907897 LLDP, length 82 [|LLDP] 12:38:04.907906 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.907907 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d9 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.907909 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.907910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.907911 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.907912 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.907913 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.907914 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.907915 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.907916 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.907917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.918891 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.918893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.918906 LLDP, length 82 [|LLDP] 12:38:04.918916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.918917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e2 5cf7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.918918 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.918919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.918920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.918925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.918927 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.918928 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.918929 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.918929 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.918930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.918931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.929898 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.929900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.929913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.929914 LLDP, length 82 [|LLDP] 12:38:04.929924 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.929924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ea c35c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.929926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.929927 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.929928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.929929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.929930 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.929931 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.929932 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.929933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.929933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.938164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.938166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.938173 LLDP, length 82 [|LLDP] 12:38:04.938182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.938183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f1 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.938185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.938186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.938187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.938192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.938193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.938194 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.938195 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.938196 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.938203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.938205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.949186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.949189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.949201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.949202 LLDP, length 82 [|LLDP] 12:38:04.949215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.949216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f9 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.949218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.949219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.949220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.949221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.949222 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.949223 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.949224 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.957442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.957444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.957451 LLDP, length 82 [|LLDP] 12:38:04.957459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.957460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ff c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.957461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.957462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.957465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.957467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.968423 LLDP, length 82 [|LLDP] 12:38:04.968435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.968436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0608 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.968439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.968440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.968441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.968442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.968450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.968452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.979447 LLDP, length 82 [|LLDP] 12:38:04.979458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.979459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0610 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.979461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.979462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.979464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.979475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.979476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.979479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.987712 LLDP, length 82 [|LLDP] 12:38:04.987724 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.987725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0616 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.987727 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.987728 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.987729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.987730 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.987731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.987741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.987742 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.987744 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.987746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.987747 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.987748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.987749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:04.998717 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:04.998719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.998732 LLDP, length 82 [|LLDP] 12:38:04.998742 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:04.998743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061f 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:04.998744 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:04.998746 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:04.998746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:04.998752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:04.998753 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:04.998754 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:04.998755 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.998756 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:04.998757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:04.998758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.009738 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.009741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.009757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.009759 LLDP, length 82 [|LLDP] 12:38:05.009769 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.009770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0627 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.009772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.009773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.009774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.009775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.009776 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.009777 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.009778 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.009779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.009780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.017985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.017986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.018000 LLDP, length 82 [|LLDP] 12:38:05.018010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.018010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062d f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.018012 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.018013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.018014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.018019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.018021 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.018022 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.018023 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.018023 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.018024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.018025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.028994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.028996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.029009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.029010 LLDP, length 82 [|LLDP] 12:38:05.029020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.029021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0636 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.029022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.029023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.029025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.029026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.029027 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.029028 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.029029 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.029030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.029030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.037258 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.037260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.037268 LLDP, length 82 [|LLDP] 12:38:05.037277 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.037278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063c a9c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.037279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.037280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.037281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.037286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.037288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.037289 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.037290 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.037291 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.037292 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.037293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.048276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.048278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.048289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.048290 LLDP, length 82 [|LLDP] 12:38:05.048301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.048301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0645 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.048303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.048304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.048305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.048306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.048308 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.048308 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.048309 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.059270 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.059272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.059280 LLDP, length 82 [|LLDP] 12:38:05.059289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.059290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064d 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.059292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.059293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.059296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.059298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.067538 LLDP, length 82 [|LLDP] 12:38:05.067547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.067548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0653 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.067550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.067551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.067552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.067553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.067562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.067563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.078558 LLDP, length 82 [|LLDP] 12:38:05.078572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.078574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065c 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.078576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.078577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.078578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.078593 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.078595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.078598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.089559 LLDP, length 82 [|LLDP] 12:38:05.089569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.089570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0664 902d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.089573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.089574 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.089585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.089587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.089588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.089600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.089601 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.089603 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.089605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.089606 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.089607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.089608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.097834 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.097836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.097852 LLDP, length 82 [|LLDP] 12:38:05.097867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.097868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066a dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.097869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.097871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.097872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.097878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.097880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.097881 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.097882 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.097883 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.097884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.097885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.108826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.108828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.108845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.108846 LLDP, length 82 [|LLDP] 12:38:05.108858 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.108859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0673 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.108861 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.108862 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.108863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.108864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.108865 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.108866 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.108867 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.108867 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.108869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.119837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.119840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.119855 LLDP, length 82 [|LLDP] 12:38:05.119867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.119868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067b a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.119869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.119870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.119871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.119877 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.119878 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.119879 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.119880 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.119881 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.119882 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.119883 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.128092 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.128094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.128108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.128109 LLDP, length 82 [|LLDP] 12:38:05.128120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.128120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0681 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.128122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.128123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.128124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.128125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.128126 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.128127 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.128128 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.128129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.128130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.139097 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.139098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.139111 LLDP, length 82 [|LLDP] 12:38:05.139120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.139121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068a 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.139122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.139123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.139124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.139130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.139132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.139133 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.139134 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.139135 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.139136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.139137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.147351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.147353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.147359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.147360 LLDP, length 82 [|LLDP] 12:38:05.147368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.147369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0690 a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.147370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.147371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.147372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.147374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.147375 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.147376 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.147377 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.158374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.158376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.158381 LLDP, length 82 [|LLDP] 12:38:05.158389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.158389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0699 1026 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.158391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.158392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.158395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.158396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.169409 LLDP, length 82 [|LLDP] 12:38:05.169417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.169418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a1 7690 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.169420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.169421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.169422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.169423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.169432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.169433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.177640 LLDP, length 82 [|LLDP] 12:38:05.177647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.177648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a7 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.177650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.177651 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.177652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.177659 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.177661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.177663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.188640 LLDP, length 82 [|LLDP] 12:38:05.188647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.188648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b0 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.188650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.188651 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.188652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.188653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.188654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.188663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.188664 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.188666 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.188668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.188669 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.188670 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.188671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.199659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.199661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.199666 LLDP, length 82 [|LLDP] 12:38:05.199674 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.199675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b8 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.199677 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.199677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.199678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.199684 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.199685 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.199686 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.199687 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.199688 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.199689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.199690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.207901 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.207902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.207915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.207916 LLDP, length 82 [|LLDP] 12:38:05.207924 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.207925 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06be dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.207926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.207927 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.207929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.207930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.207931 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.207932 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.207933 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.207934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.207935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.218913 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.218914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.218927 LLDP, length 82 [|LLDP] 12:38:05.218934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.218935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c7 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.218936 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.218937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.218938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.218943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.218945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.218946 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.218947 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.218948 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.218949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.218950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.227172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.227174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.227186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.227187 LLDP, length 82 [|LLDP] 12:38:05.227197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.227197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cd 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.227199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.227200 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.227201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.227203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.227204 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.227205 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.227206 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.227207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.227208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.238198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.238200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.238216 LLDP, length 82 [|LLDP] 12:38:05.238227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.238228 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d5 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.238230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.238231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.238232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.238238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.238240 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.238241 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.238242 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.238243 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.238244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.238244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.249195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.249197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.249204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.249205 LLDP, length 82 [|LLDP] 12:38:05.249216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.249217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06de 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.249218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.249219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.249220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.249222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.249223 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.249224 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.249224 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.257441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.257443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.257456 LLDP, length 82 [|LLDP] 12:38:05.257466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.257467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e4 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.257468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.257469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.257472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.257474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.268450 LLDP, length 82 [|LLDP] 12:38:05.268463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.268464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ed 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.268466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.268467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.268468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.268469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.268478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.268480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.279461 LLDP, length 82 [|LLDP] 12:38:05.279473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.279474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f5 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.279477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.279478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.279479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.279487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.279488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.279491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.287736 LLDP, length 82 [|LLDP] 12:38:05.287752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.287752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fb c362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.287755 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.287756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.287757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.287758 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.287759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.287769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.287770 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.287772 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.287773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.287774 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.287775 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.287776 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.298742 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.298744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.298757 LLDP, length 82 [|LLDP] 12:38:05.298766 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.298767 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0704 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.298769 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.298769 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.298770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.298776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.298777 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.298778 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.298779 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.298780 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.298781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.298782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.309753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.309754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.309768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.309769 LLDP, length 82 [|LLDP] 12:38:05.309779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.309780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070c 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.309782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.309783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.309784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.309785 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.309786 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.309787 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.309788 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.309789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.309790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.318011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.318012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.318026 LLDP, length 82 [|LLDP] 12:38:05.318035 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.318036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0712 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.318037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.318038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.318039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.318045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.318046 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.318047 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.318049 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.318050 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.318050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.318051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.329021 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.329023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.329037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.329038 LLDP, length 82 [|LLDP] 12:38:05.329048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.329049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071b 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.329050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.329051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.329052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.329053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.329054 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.329055 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.329056 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.329057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.329058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.337280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.337282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.337295 LLDP, length 82 [|LLDP] 12:38:05.337305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.337306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0721 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.337308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.337309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.337310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.337315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.337317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.337318 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.337319 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.337320 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.337320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.337321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.348281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.348282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.348290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.348292 LLDP, length 82 [|LLDP] 12:38:05.348301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.348301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0729 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.348303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.348304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.348305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.348307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.348308 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.348309 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.348309 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.359315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.359316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.359323 LLDP, length 82 [|LLDP] 12:38:05.359332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.359332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0732 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.359342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.359343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.359347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.359348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.367545 LLDP, length 82 [|LLDP] 12:38:05.367554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.367555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0738 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.367557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.367558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.367559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.367560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.367569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.367570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.378584 LLDP, length 82 [|LLDP] 12:38:05.378593 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.378594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0741 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.378596 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.378597 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.378598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.378606 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.378608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.378610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.389585 LLDP, length 82 [|LLDP] 12:38:05.389593 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.389594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0749 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.389596 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.389597 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.389598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.389599 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.389600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.389610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.389611 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.389613 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.389614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.389615 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.389616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.389617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.397836 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.397837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.397851 LLDP, length 82 [|LLDP] 12:38:05.397860 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.397860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074f c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.397862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.397863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.397864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.397870 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.397871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.397872 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.397873 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.397874 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.397875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.397876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.408843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.408845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.408858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.408859 LLDP, length 82 [|LLDP] 12:38:05.408868 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.408869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0758 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.408870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.408871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.408873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.408874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.408875 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.408876 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.408877 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.408877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.408878 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.419861 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.419863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.419871 LLDP, length 82 [|LLDP] 12:38:05.419880 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.419881 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0760 9029 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.419882 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.419883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.419884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.419889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.419891 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.419892 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.419893 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.419894 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.419895 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.419896 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.428115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.428117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.428132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.428133 LLDP, length 82 [|LLDP] 12:38:05.428143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.428144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0766 dcf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.428146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.428147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.428148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.428149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.428150 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.428151 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.428152 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.428153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.428154 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.439123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.439125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.439139 LLDP, length 82 [|LLDP] 12:38:05.439149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.439150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076f 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.439152 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.439153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.439154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.439160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.439161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.439162 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.439163 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.439164 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.439165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.439166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.447381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.447383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.447392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.447393 LLDP, length 82 [|LLDP] 12:38:05.447402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.447403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0775 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.447405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.447406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.447407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.447408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.447409 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.447410 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.447411 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.458408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.458410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.458417 LLDP, length 82 [|LLDP] 12:38:05.458427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.458427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077d f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.458429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.458430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.458433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.458435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.469416 LLDP, length 82 [|LLDP] 12:38:05.469424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.469425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0786 5cf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.469427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.469428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.469429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.469430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.469438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.469439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.477672 LLDP, length 82 [|LLDP] 12:38:05.477681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.477682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078c a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.477685 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.477686 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.477687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.477695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.477697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.477699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.488677 LLDP, length 82 [|LLDP] 12:38:05.488689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.488689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0795 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.488692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.488693 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.488694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.488695 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.488696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.488706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.488707 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.488709 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.488710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.488711 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.488713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.488714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.499682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.499684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.499692 LLDP, length 82 [|LLDP] 12:38:05.499700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.499701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079d 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.499703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.499704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.499705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.499710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.499712 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.499713 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.499713 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.499714 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.499715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.499716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.507935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.507937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.507951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.507952 LLDP, length 82 [|LLDP] 12:38:05.507961 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.507962 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a3 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.507964 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.507965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.507966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.507967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.507968 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.507969 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.507970 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.507971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.507972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.518945 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.518947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.518961 LLDP, length 82 [|LLDP] 12:38:05.518970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.518971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ac 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.518973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.518974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.518975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.518980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.518981 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.518982 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.518983 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.518984 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.518985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.518986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.527206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.527208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.527221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.527222 LLDP, length 82 [|LLDP] 12:38:05.527231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.527232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b2 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.527234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.527235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.527236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.527237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.527238 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.527239 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.527240 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.527241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.527242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.538221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.538222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.538230 LLDP, length 82 [|LLDP] 12:38:05.538240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.538241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ba dcfc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.538242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.538243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.538244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.538250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.538251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.538252 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.538253 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.538254 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.538255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.538256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.549222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.549224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.549231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.549232 LLDP, length 82 [|LLDP] 12:38:05.549242 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.549243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c3 435c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.549245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.549246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.549247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.549248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.549249 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.549250 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.549251 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.557499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.557501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.557508 LLDP, length 82 [|LLDP] 12:38:05.557516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.557517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c9 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.557519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.557520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.557523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.557524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.568480 LLDP, length 82 [|LLDP] 12:38:05.568493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.568494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d1 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.568497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.568497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.568499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.568500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.568508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.568509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.579505 LLDP, length 82 [|LLDP] 12:38:05.579518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.579519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07da 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.579522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.579523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.579524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.579525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.579535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.579537 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.579538 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.579539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.579545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.579547 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.579548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.579548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.587764 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.587766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.587773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.587774 LLDP, length 82 [|LLDP] 12:38:05.587784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.587784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e0 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.587786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.587787 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.587788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.587789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.587790 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.587791 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.587792 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.587793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.587794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.598771 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.598772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.598786 LLDP, length 82 [|LLDP] 12:38:05.598795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.598796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e9 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.598798 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.598799 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.598800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.598805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.598807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.598808 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.598808 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.598810 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.598811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.598811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.609783 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.609784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.609798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.609799 LLDP, length 82 [|LLDP] 12:38:05.609809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.609809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f1 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.609811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.609812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.609813 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.609814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.609815 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.609816 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.609817 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.609818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.609819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.618040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.618042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.618056 LLDP, length 82 [|LLDP] 12:38:05.618065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.618066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f7 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.618067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.618068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.618069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.618074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.618076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.618077 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.618078 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.618079 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.618080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.618080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.629052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.629054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.629067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.629068 LLDP, length 82 [|LLDP] 12:38:05.629078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.629078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0800 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.629080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.629081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.629082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.629084 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.629084 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.629085 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.629086 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.629087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.629088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.637306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.637308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.637314 LLDP, length 82 [|LLDP] 12:38:05.637323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.637324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0806 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.637325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.637327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.637328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.637333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.637335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.637336 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.637336 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.637337 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.648330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.648332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.648339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.648340 LLDP, length 82 [|LLDP] 12:38:05.648349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.648350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080e dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.648352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.648353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.648354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.659387 LLDP, length 82 [|LLDP] 12:38:05.659395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.659396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0817 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.659398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.659399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.659400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.659408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.659410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.659412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.667572 LLDP, length 82 [|LLDP] 12:38:05.667580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.667581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081d 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.667584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.667585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.667586 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.667587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.667595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.667597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.678598 LLDP, length 82 [|LLDP] 12:38:05.678608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.678609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0825 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.678611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.678612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.678613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.678623 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.689609 LLDP, length 82 [|LLDP] 12:38:05.689621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.689622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082e 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.689624 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.689626 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.689627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.689628 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.689629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.689630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.689641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.689642 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.689644 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.689645 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.689646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.689647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.697868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.697869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.697877 LLDP, length 82 [|LLDP] 12:38:05.697886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.697887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0834 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.697889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.697890 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.697890 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.697892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.697897 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.697899 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.697900 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.697901 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.697902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.697903 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.708880 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.708882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.708898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.708900 LLDP, length 82 [|LLDP] 12:38:05.708911 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.708912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083d 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.708914 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.708915 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.708916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.708917 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.708918 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.708920 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.708920 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.708921 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.708922 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.719888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.719890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.719903 LLDP, length 82 [|LLDP] 12:38:05.719913 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.719914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0845 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.719915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.719916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.719917 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.719918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.719924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.719926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.719927 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.719927 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.719928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.719929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.728144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.728146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.728153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.728154 LLDP, length 82 [|LLDP] 12:38:05.728164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.728165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084b c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.728166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.728168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.728169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.728170 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.728171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.728173 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.728173 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.728174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.728175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.739153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.739154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.739162 LLDP, length 82 [|LLDP] 12:38:05.739171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.739172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0854 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.739173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.739174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.739175 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.739176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.739182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.739184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.739185 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.739186 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.739187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.739188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.747404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.747405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.747419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.747421 LLDP, length 82 [|LLDP] 12:38:05.747430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.747431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085a 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.747432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.747434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.747435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.747436 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.747437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.747438 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.758464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.758466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.758473 LLDP, length 82 [|LLDP] 12:38:05.758481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.758482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0862 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.758484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.758485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.758488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.758489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.769417 LLDP, length 82 [|LLDP] 12:38:05.769430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.769431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086b 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.769434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.769435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.769436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.769437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.769444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.769446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.777689 LLDP, length 82 [|LLDP] 12:38:05.777697 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.777698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0871 9026 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.777700 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.777701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.777702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.777709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.777710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.788702 LLDP, length 82 [|LLDP] 12:38:05.788709 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.788710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0879 f694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.788712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.788713 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.788714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.788715 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.788716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.788726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.788727 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.788729 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.788731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.788732 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.788733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.788734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.799709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.799711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.799724 LLDP, length 82 [|LLDP] 12:38:05.799734 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.799735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0882 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.799736 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.799737 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.799738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.799739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.799745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.799747 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.799748 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.799749 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.799749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.799750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.807965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.807967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.807980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.807982 LLDP, length 82 [|LLDP] 12:38:05.807991 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.807992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0888 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.807993 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.807994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.807995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.807997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.807998 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.807999 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.808000 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.808000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.808001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.818990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.818992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.819007 LLDP, length 82 [|LLDP] 12:38:05.819019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.819020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0891 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.819021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.819022 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.819023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.819025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.819031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.819033 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.819034 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.819035 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.819036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.819037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.827239 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.827241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.827255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.827256 LLDP, length 82 [|LLDP] 12:38:05.827267 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.827268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0897 5cf8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.827270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.827271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.827272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.827273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.827274 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.827275 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.827276 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.827277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.827278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.838244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.838246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.838260 LLDP, length 82 [|LLDP] 12:38:05.838270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.838270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089f c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.838272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.838273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.838274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.838274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.838280 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.838282 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.838283 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.838284 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.838284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.838286 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.849254 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.849262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.849269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.849270 LLDP, length 82 [|LLDP] 12:38:05.849281 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.849282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a8 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.849284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.849285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.849286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.849287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.849288 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.849289 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.849290 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.857518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.857520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.857526 LLDP, length 82 [|LLDP] 12:38:05.857536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.857536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ae 768f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.857538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.857539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.857540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.857544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.868544 LLDP, length 82 [|LLDP] 12:38:05.868560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.868561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b6 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.868565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.868566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.868567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.868568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.868585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.868587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.879584 LLDP, length 82 [|LLDP] 12:38:05.879599 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.879600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bf 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.879603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.879604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.879605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.879606 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.879607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.879629 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.879631 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.879632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.879640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.879641 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.879642 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.879643 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.887814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.887816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.887832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.887833 LLDP, length 82 [|LLDP] 12:38:05.887845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.887846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c5 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.887848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.887849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.887849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.887851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.887852 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.887853 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.887854 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.887855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.887856 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.898806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.898807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.898822 LLDP, length 82 [|LLDP] 12:38:05.898832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.898833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08cd f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.898834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.898835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.898836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.898837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.898844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.898845 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.898846 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.898847 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.898848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.898849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.909824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.909826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.909835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.909836 LLDP, length 82 [|LLDP] 12:38:05.909849 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.909849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d6 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.909851 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.909852 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.909853 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.909854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.909855 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.909856 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.909857 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.909858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.909859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.918071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.918073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.918087 LLDP, length 82 [|LLDP] 12:38:05.918096 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.918097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08dc a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.918098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.918099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.918100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.918101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.918107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.918109 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.918110 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.918111 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.918112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.918113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.929085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.929087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.929101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.929102 LLDP, length 82 [|LLDP] 12:38:05.929112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.929113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e5 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.929114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.929115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.929117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.929118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.929119 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.929120 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.929121 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.929122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.929122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.937332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.937334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.937342 LLDP, length 82 [|LLDP] 12:38:05.937351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.937352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08eb 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.937353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.937355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.937356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.937357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.937363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.937364 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.937365 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.937366 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.948364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.948366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.948373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.948375 LLDP, length 82 [|LLDP] 12:38:05.948385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.948385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f3 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.948387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.948388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.948390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.959382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.959383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fc 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.959385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.959386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.959387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.959388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.959397 LLDP, length 82 [|LLDP] 12:38:05.959399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.959407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.967602 LLDP, length 82 [|LLDP] 12:38:05.967615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.967616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0902 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.967619 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.967620 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.967621 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.967622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.967630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.967632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.978631 LLDP, length 82 [|LLDP] 12:38:05.978645 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.978646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090a dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.978648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.978649 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.978650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.978651 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.978652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.978663 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.978665 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.978666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.978672 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.978673 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.978674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.978675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.989639 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.989640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.989654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.989655 LLDP, length 82 [|LLDP] 12:38:05.989667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.989668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0913 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.989669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.989670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.989671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.989672 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.989673 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.989674 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.989675 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.989676 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.989677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:05.997893 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:05.997895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.997909 LLDP, length 82 [|LLDP] 12:38:05.997918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:05.997919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0919 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:05.997920 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:05.997922 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:05.997923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:05.997923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:05.997929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:05.997931 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:05.997932 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.997933 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:05.997934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:05.997935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.008909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.008911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.008920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.008921 LLDP, length 82 [|LLDP] 12:38:06.008932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.008933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0921 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.008934 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.008935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.008936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.008938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.008939 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.008939 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.008940 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.008941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.008943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.017160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.017163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.017176 LLDP, length 82 [|LLDP] 12:38:06.017185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.017186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0928 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.017187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.017188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.017189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.017190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.017196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.017198 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.017199 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.017200 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.017200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.017202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.031417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.031418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.031426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.031427 LLDP, length 82 [|LLDP] 12:38:06.031438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.031438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0930 a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.031440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.031441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.031442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.031443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.031445 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.031446 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.031447 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.031448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.031449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.039182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.039184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.039198 LLDP, length 82 [|LLDP] 12:38:06.039208 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.039209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0939 102e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.039210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.039211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.039212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.039214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.039220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.039221 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.039222 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.039223 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.047426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.047428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.047442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.047443 LLDP, length 82 [|LLDP] 12:38:06.047453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.047453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093f 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.047455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.047456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.047458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.058436 LLDP, length 82 [|LLDP] 12:38:06.058450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.058451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0947 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.058454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.058455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.058456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.058457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.058466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.058468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.069447 LLDP, length 82 [|LLDP] 12:38:06.069461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.069462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0950 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.069477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.069479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.069480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.069481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.069490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.069492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.077748 LLDP, length 82 [|LLDP] 12:38:06.077763 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.077764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0956 768f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.077766 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.077767 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.077768 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.077769 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.077771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.077787 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.077789 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.077790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.077796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.077798 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.077799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.077800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.088727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.088729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.088741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.088742 LLDP, length 82 [|LLDP] 12:38:06.088752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.088753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095e dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.088754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.088756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.088757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.088758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.088759 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.088760 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.088761 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.088762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.088763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.099735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.099736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.099750 LLDP, length 82 [|LLDP] 12:38:06.099758 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.099759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0967 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.099760 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.099761 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.099762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.099763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.099769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.099771 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.099772 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.099782 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.099783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.099784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.107990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.107992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.108004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.108005 LLDP, length 82 [|LLDP] 12:38:06.108014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.108014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096d 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.108016 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.108017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.108018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.108020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.108021 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.108022 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.108022 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.108023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.108024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.118998 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.119000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.119012 LLDP, length 82 [|LLDP] 12:38:06.119021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.119021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0975 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.119023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.119024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.119025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.119026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.119032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.119034 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.119035 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.119036 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.119036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.119038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.127255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.127256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.127268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.127269 LLDP, length 82 [|LLDP] 12:38:06.127278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.127279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097c 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.127280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.127281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.127282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.127284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.127285 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.127286 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.127287 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.127288 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.127288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.138282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.138284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.138293 LLDP, length 82 [|LLDP] 12:38:06.138305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.138305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0984 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.138307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.138308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.138309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.138310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.138317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.138318 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.138319 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.138320 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.149272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.149273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.149286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.149287 LLDP, length 82 [|LLDP] 12:38:06.149297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.149298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098d 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.149299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.149300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.149302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.157526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.157528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0993 5cfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.157530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.157537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.157538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.157540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.157548 LLDP, length 82 [|LLDP] 12:38:06.157550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.157558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.168538 LLDP, length 82 [|LLDP] 12:38:06.168551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.168552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099b c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.168554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.168555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.168556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.168557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.168566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.168567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.179562 LLDP, length 82 [|LLDP] 12:38:06.179575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.179576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a4 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.179578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.179579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.179580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.179581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.179582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.179593 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.179594 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.179595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.179601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.179602 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.179603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.179604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.187819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.187821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.187834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.187835 LLDP, length 82 [|LLDP] 12:38:06.187845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.187846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09aa 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.187847 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.187848 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.187849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.187851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.187852 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.187853 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.187854 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.187854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.187855 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.198828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.198829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.198842 LLDP, length 82 [|LLDP] 12:38:06.198851 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.198852 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b2 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.198853 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.198854 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.198855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.198856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.198862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.198864 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.198864 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.198865 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.198866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.198867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.209841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.209843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.209856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.209858 LLDP, length 82 [|LLDP] 12:38:06.209867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.209867 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09bb 4362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.209869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.209870 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.209871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.209873 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.209874 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.209874 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.209875 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.209876 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.209877 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.218096 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.218098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.218111 LLDP, length 82 [|LLDP] 12:38:06.218119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.218120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c1 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.218122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.218123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.218124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.218125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.218131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.218133 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.218134 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.218134 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.218135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.218136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.229105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.229107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.229120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.229121 LLDP, length 82 [|LLDP] 12:38:06.229130 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.229130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c9 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.229132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.229133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.229134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.229136 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.229137 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.229137 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.229138 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.229139 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.229140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.237360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.237362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.237369 LLDP, length 82 [|LLDP] 12:38:06.237378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.237379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d0 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.237380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.237381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.237382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.237383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.237389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.237390 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.237391 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.237392 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.248379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.248381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.248388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.248390 LLDP, length 82 [|LLDP] 12:38:06.248399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.248400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d8 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.248402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.248403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.248404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.259384 LLDP, length 82 [|LLDP] 12:38:06.259392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.259392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e1 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.259394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.259395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.259396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.259397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.259404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.259406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.267625 LLDP, length 82 [|LLDP] 12:38:06.267636 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.267636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e7 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.267638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.267639 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.267640 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.267641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.267648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.267649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.278650 LLDP, length 82 [|LLDP] 12:38:06.278663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.278663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ef c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.278665 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.278666 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.278668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.278668 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.278669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.278678 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.278680 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.278681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.278686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.278688 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.278689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.278690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.289657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.289658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.289670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.289672 LLDP, length 82 [|LLDP] 12:38:06.289681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.289681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f8 29c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.289683 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.289684 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.289685 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.289686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.289687 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.289688 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.289689 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.289690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.289691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.297913 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.297915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.297927 LLDP, length 82 [|LLDP] 12:38:06.297934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.297935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fe 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.297937 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.297938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.297939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.297940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.297946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.297948 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.297949 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.297950 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.297951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.297951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.308923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.308925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.308937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.308938 LLDP, length 82 [|LLDP] 12:38:06.308946 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.308947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a06 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.308948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.308949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.308950 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.308952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.308953 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.308954 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.308955 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.308956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.308956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.317182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.317184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.317189 LLDP, length 82 [|LLDP] 12:38:06.317198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.317198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0d 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.317200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.317201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.317202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.317203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.317209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.317211 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.317212 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.317212 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.317214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.317215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.328199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.328200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.328212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.328213 LLDP, length 82 [|LLDP] 12:38:06.328222 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.328222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a15 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.328224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.328225 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.328226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.328228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.328229 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.328230 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.328230 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.328231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.328232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.339201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.339203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.339208 LLDP, length 82 [|LLDP] 12:38:06.339216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.339217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1d f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.339218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.339219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.339220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.339221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.339227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.339228 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.339229 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.339230 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.347446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.347447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.347460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.347461 LLDP, length 82 [|LLDP] 12:38:06.347469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.347470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a24 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.347471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.347472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.347474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.358456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.358457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2c a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.358459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.358460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.358470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.358471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.358478 LLDP, length 82 [|LLDP] 12:38:06.358480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.358487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.369485 LLDP, length 82 [|LLDP] 12:38:06.369491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.369492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a35 1026 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.369494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.369495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.369495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.369497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.369504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.369506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.377739 LLDP, length 82 [|LLDP] 12:38:06.377751 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.377752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3b 5cf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.377754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.377755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.377756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.377757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.377766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.377767 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.377768 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.377769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.377775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.377776 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.377777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.377778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.388749 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.388750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.388763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.388764 LLDP, length 82 [|LLDP] 12:38:06.388772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.388773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a43 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.388774 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.388775 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.388776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.388778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.388779 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.388780 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.388781 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.388781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.388782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.399759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.399760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.399772 LLDP, length 82 [|LLDP] 12:38:06.399779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.399780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4c 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.399782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.399783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.399784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.399785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.399791 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.399792 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.399793 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.399794 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.399795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.399796 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.408016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.408017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.408029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.408030 LLDP, length 82 [|LLDP] 12:38:06.408039 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.408039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a52 7695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.408041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.408042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.408043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.408044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.408045 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.408046 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.408047 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.408048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.408049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.419025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.419027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.419038 LLDP, length 82 [|LLDP] 12:38:06.419046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.419047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5a dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.419049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.419050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.419051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.419052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.419058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.419059 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.419060 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.419061 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.419062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.419063 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.427284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.427285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.427297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.427298 LLDP, length 82 [|LLDP] 12:38:06.427305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.427306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a61 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.427308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.427309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.427310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.427312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.427313 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.427314 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.427315 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.427315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.427316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.438293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.438294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.438300 LLDP, length 82 [|LLDP] 12:38:06.438308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.438309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a69 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.438310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.438311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.438312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.438313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.438319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.438321 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.438322 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.438322 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.449311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.449312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.449317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.449318 LLDP, length 82 [|LLDP] 12:38:06.449327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.449327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a71 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.449329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.449330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.449332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.457570 LLDP, length 82 [|LLDP] 12:38:06.457577 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.457578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a78 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.457579 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.457580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.457581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.457583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.457589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.457591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.468559 LLDP, length 82 [|LLDP] 12:38:06.468571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.468572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a80 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.468574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.468575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.468576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.468577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.468584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.468585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.479587 LLDP, length 82 [|LLDP] 12:38:06.479599 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.479600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a89 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.479602 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.479603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.479604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.479605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.479613 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.479614 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.479615 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.479617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.479622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.479624 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.479625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.479626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.487843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.487845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.487856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.487857 LLDP, length 82 [|LLDP] 12:38:06.487866 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.487867 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8f 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.487868 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.487869 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.487870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.487872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.487873 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.487874 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.487874 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.487875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.487876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.498851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.498852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.498863 LLDP, length 82 [|LLDP] 12:38:06.498871 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.498872 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a97 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.498874 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.498875 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.498876 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.498877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.498883 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.498884 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.498885 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.498886 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.498887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.498888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.507115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.507117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.507131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.507132 LLDP, length 82 [|LLDP] 12:38:06.507141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.507142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9e 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.507144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.507145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.507146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.507148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.507149 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.507150 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.507151 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.507152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.507153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.518123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.518124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.518137 LLDP, length 82 [|LLDP] 12:38:06.518145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.518145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa6 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.518147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.518148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.518149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.518150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.518156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.518158 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.518158 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.518159 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.518160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.518161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.529131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.529133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.529145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.529146 LLDP, length 82 [|LLDP] 12:38:06.529155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.529156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aae dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.529157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.529159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.529160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.529161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.529162 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.529163 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.529164 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.529165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.529165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.537383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.537384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.537391 LLDP, length 82 [|LLDP] 12:38:06.537398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.537399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab5 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.537401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.537402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.537403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.537404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.537409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.537411 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.537412 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.537412 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.548385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.548386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.548399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.548400 LLDP, length 82 [|LLDP] 12:38:06.548408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.548409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abd 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.548411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.548412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.548413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.559412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.559413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac5 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.559414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.559415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.559416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.559417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.559425 LLDP, length 82 [|LLDP] 12:38:06.559426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.559434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.567669 LLDP, length 82 [|LLDP] 12:38:06.567676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.567677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acc 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.567679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.567680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.567681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.567682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.567689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.567690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.578677 LLDP, length 82 [|LLDP] 12:38:06.578688 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.578689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad4 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.578690 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.578691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.578692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.578693 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.578694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.578704 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.578705 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.578706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.578711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.578713 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.578714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.578715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.589685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.589687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.589699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.589700 LLDP, length 82 [|LLDP] 12:38:06.589709 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.589710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0add 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.589712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.589713 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.589714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.589716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.589717 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.589718 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.589718 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.589719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.589720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.597942 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.597944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.597955 LLDP, length 82 [|LLDP] 12:38:06.597963 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.597964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae3 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.597966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.597967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.597968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.597969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.597975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.597976 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.597977 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.597978 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.597979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.597980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.608956 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.608957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.608963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.608964 LLDP, length 82 [|LLDP] 12:38:06.608973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.608973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aeb c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.608975 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.608976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.608977 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.608979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.608980 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.608981 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.608982 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.608982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.608983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.617210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.617212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.617224 LLDP, length 82 [|LLDP] 12:38:06.617231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.617232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af2 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.617234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.617235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.617236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.617236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.617242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.617244 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.617245 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.617245 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.617246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.617247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.628221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.628223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.628234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.628236 LLDP, length 82 [|LLDP] 12:38:06.628244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.628245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afa 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.628246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.628247 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.628248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.628249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.628250 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.628251 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.628252 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.628253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.628254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.639228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.639229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.639235 LLDP, length 82 [|LLDP] 12:38:06.639242 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.639243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b02 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.639245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.639246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.639247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.639248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.639253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.639255 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.639256 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.639257 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.647475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.647476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.647488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.647489 LLDP, length 82 [|LLDP] 12:38:06.647497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.647498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b09 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.647500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.647501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.647502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.658487 LLDP, length 82 [|LLDP] 12:38:06.658498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.658499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b11 902e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.658501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.658502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.658503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.658504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.658511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.658512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.669494 LLDP, length 82 [|LLDP] 12:38:06.669506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.669507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b19 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.669508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.669510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.669511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.669511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.669519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.669520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.677771 LLDP, length 82 [|LLDP] 12:38:06.677783 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.677784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b20 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.677786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.677787 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.677788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.677789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.677790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.677799 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.677801 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.677802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.677807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.677809 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.677810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.677810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.688776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.688777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.688789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.688790 LLDP, length 82 [|LLDP] 12:38:06.688799 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.688800 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b28 a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.688801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.688802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.688803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.688804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.688806 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.688807 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.688807 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.688808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.688809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.699792 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.699795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.699809 LLDP, length 82 [|LLDP] 12:38:06.699819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.699819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b31 1026 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.699821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.699822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.699823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.699824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.699830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.699831 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.699832 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.699833 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.699834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.699835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.708048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.708049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.708062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.708063 LLDP, length 82 [|LLDP] 12:38:06.708072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.708073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b37 5cf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.708074 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.708076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.708077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.708078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.708079 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.708080 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.708081 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.708082 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.708083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.719057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.719059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.719071 LLDP, length 82 [|LLDP] 12:38:06.719079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.719080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3f c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.719082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.719083 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.719084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.719085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.719091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.719092 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.719093 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.719094 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.719095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.719096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.727312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.727314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.727326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.727327 LLDP, length 82 [|LLDP] 12:38:06.727342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.727342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b46 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.727344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.727345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.727346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.727348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.727349 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.727350 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.727351 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.727351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.727353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.738323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.738325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.738330 LLDP, length 82 [|LLDP] 12:38:06.738339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.738339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4e 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.738341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.738342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.738343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.738344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.738350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.738352 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.738353 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.738353 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.749338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.749339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.749345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.749346 LLDP, length 82 [|LLDP] 12:38:06.749354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.749355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b56 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.749356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.749357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.749359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.757579 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.757580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5d 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.757582 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.757583 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.757584 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.757591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.757598 LLDP, length 82 [|LLDP] 12:38:06.757599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.757607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.768590 LLDP, length 82 [|LLDP] 12:38:06.768597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.768597 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b65 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.768599 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.768600 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.768601 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.768602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.768609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.768610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.779621 LLDP, length 82 [|LLDP] 12:38:06.779629 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.779630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6d f68f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.779631 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.779632 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.779633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.779634 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.779635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.779644 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.779646 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.779647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.779652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.779653 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.779654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.779655 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.787869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.787871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.787883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.787884 LLDP, length 82 [|LLDP] 12:38:06.787892 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.787893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b74 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.787894 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.787895 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.787897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.787898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.787899 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.787900 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.787901 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.787902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.787903 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.798894 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.798896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.798910 LLDP, length 82 [|LLDP] 12:38:06.798921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.798922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7c a9c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.798924 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.798925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.798926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.798927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.798933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.798935 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.798936 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.798937 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.798938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.798938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.807137 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.807138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.807152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.807153 LLDP, length 82 [|LLDP] 12:38:06.807161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.807162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b82 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.807164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.807165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.807166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.807167 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.807168 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.807169 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.807170 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.807171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.807172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.818155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.818157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.818171 LLDP, length 82 [|LLDP] 12:38:06.818182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.818184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8b 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.818185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.818186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.818187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.818188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.818194 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.818195 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.818196 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.818197 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.818198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.818200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.829168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.829170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.829184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.829185 LLDP, length 82 [|LLDP] 12:38:06.829196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.829197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b93 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.829199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.829200 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.829200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.829202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.829203 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.829204 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.829205 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.829205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.829206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.837414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.837415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.837422 LLDP, length 82 [|LLDP] 12:38:06.837430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.837431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9a 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.837432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.837433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.837435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.837436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.837442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.837444 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.837445 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.837446 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.848412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.848414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.848426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.848427 LLDP, length 82 [|LLDP] 12:38:06.848435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.848436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba2 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.848438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.848439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.848440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.859441 LLDP, length 82 [|LLDP] 12:38:06.859448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.859448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0baa dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.859450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.859451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.859452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.859453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.859460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.859462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.867698 LLDP, length 82 [|LLDP] 12:38:06.867704 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.867705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb1 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.867707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.867708 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.867709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.867710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.867717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.867718 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.878707 LLDP, length 82 [|LLDP] 12:38:06.878718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.878718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb9 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.878720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.878721 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.878722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.878723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.878731 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.878733 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.878734 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.878735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.878741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.878742 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.878743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.878744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.889717 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.889718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.889724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.889725 LLDP, length 82 [|LLDP] 12:38:06.889734 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.889734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc1 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.889736 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.889737 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.889738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.889740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.889741 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.889742 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.889743 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.889743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.889744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.897972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.897974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.897986 LLDP, length 82 [|LLDP] 12:38:06.897994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.897995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc8 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.897996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.897998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.897999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.898000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.898006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.898007 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.898008 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.898009 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.898010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.898011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.908981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.908982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.908994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.908995 LLDP, length 82 [|LLDP] 12:38:06.909003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.909004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd0 a9c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.909006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.909007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.909008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.909010 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.909011 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.909012 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.909013 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.909013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.909015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.917238 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.917239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.917252 LLDP, length 82 [|LLDP] 12:38:06.917259 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.917260 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd6 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.917262 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.917263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.917264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.917265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.917271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.917272 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.917273 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.917274 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.917276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.917276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.928249 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.928250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.928262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.928263 LLDP, length 82 [|LLDP] 12:38:06.928272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.928272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdf 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.928274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.928275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.928276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.928277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.928278 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.928279 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.928280 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.928281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.928282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.939257 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.939258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.939264 LLDP, length 82 [|LLDP] 12:38:06.939271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.939272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be7 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.939274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.939275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.939276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.939277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.939282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.939284 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.939285 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.939285 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.947503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.947505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.947517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.947518 LLDP, length 82 [|LLDP] 12:38:06.947526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.947527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bee 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.947528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.947529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.947530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.958513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.958514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf6 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.958516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.958516 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.958523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.958524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.958532 LLDP, length 82 [|LLDP] 12:38:06.958533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.958540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.969543 LLDP, length 82 [|LLDP] 12:38:06.969551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.969552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfe dcf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.969554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.969554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.969555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.969556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.969563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.969565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.977813 LLDP, length 82 [|LLDP] 12:38:06.977829 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.977830 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c05 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.977832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.977833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.977834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.977835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.977836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.977850 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.977851 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.977852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.977858 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.977860 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.977861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.977862 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.988813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.988815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.988827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.988828 LLDP, length 82 [|LLDP] 12:38:06.988839 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.988840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0d 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.988842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.988843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.988844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.988845 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.988846 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.988848 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.988848 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.988849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.988850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:06.999818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:06.999820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.999833 LLDP, length 82 [|LLDP] 12:38:06.999842 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:06.999843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c15 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:06.999844 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:06.999846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:06.999847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:06.999848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:06.999854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:06.999855 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:06.999856 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.999857 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:06.999858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:06.999859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.008076 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.008078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.008090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.008091 LLDP, length 82 [|LLDP] 12:38:07.008100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.008101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1c 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.008102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.008103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.008104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.008106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.008107 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.008108 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.008109 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.008109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.008110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.019085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.019086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.019098 LLDP, length 82 [|LLDP] 12:38:07.019107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.019108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c24 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.019109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.019110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.019111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.019113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.019118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.019120 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.019121 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.019122 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.019123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.019123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.027350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.027351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.027363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.027365 LLDP, length 82 [|LLDP] 12:38:07.027373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.027373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2a f694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.027375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.027376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.027377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.027378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.027380 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.027380 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.027381 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.027382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.027383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.038351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.038352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.038358 LLDP, length 82 [|LLDP] 12:38:07.038366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.038367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c33 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.038368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.038369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.038371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.038372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.038389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.038391 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.038392 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.038394 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.049379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.049381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.049390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.049392 LLDP, length 82 [|LLDP] 12:38:07.049406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.049407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3b c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.049409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.049410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.049411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.057629 LLDP, length 82 [|LLDP] 12:38:07.057641 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.057642 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c42 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.057644 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.057645 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.057646 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.057647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.057659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.057660 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.068629 LLDP, length 82 [|LLDP] 12:38:07.068645 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.068645 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4a 768f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.068648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.068649 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.068650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.068651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.068662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.068663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.079660 LLDP, length 82 [|LLDP] 12:38:07.079678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.079679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c52 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.079681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.079682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.079683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.079684 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.079685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.079697 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.079698 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.079699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.079706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.079708 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.079709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.079710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.087902 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.087904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.087916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.087918 LLDP, length 82 [|LLDP] 12:38:07.087927 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.087928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c59 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.087929 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.087930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.087932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.087933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.087934 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.087935 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.087936 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.087937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.087938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.098911 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.098912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.098925 LLDP, length 82 [|LLDP] 12:38:07.098934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.098934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c61 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.098936 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.098937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.098939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.098939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.098946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.098947 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.098948 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.098949 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.098950 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.098951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.107167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.107168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.107180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.107181 LLDP, length 82 [|LLDP] 12:38:07.107190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.107191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c67 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.107192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.107193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.107194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.107195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.107196 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.107197 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.107198 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.107199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.107200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.118180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.118181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.118194 LLDP, length 82 [|LLDP] 12:38:07.118202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.118203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c70 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.118204 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.118205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.118207 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.118208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.118213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.118215 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.118215 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.118216 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.118217 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.118218 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.129187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.129188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.129200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.129202 LLDP, length 82 [|LLDP] 12:38:07.129210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.129211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c78 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.129212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.129213 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.129214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.129216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.129217 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.129218 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.129219 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.129220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.129220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.137443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.137445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.137450 LLDP, length 82 [|LLDP] 12:38:07.137458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.137458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7e f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.137460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.137461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.137462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.137463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.137469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.137470 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.137471 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.137472 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.148440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.148442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.148454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.148455 LLDP, length 82 [|LLDP] 12:38:07.148463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.148464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c87 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.148465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.148466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.148467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.159451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.159452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8f c362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.159454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.159455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.159462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.159463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.159471 LLDP, length 82 [|LLDP] 12:38:07.159473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.159480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.167710 LLDP, length 82 [|LLDP] 12:38:07.167721 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.167721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c96 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.167723 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.167724 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.167725 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.167727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.167735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.167736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.178754 LLDP, length 82 [|LLDP] 12:38:07.178771 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.178772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9e 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.178774 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.178775 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.178776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.178778 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.178779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.178792 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.178794 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.178795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.178801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.178803 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.178803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.178804 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.189744 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.189746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.189759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.189760 LLDP, length 82 [|LLDP] 12:38:07.189769 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.189770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca6 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.189772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.189773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.189774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.189776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.189777 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.189777 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.189778 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.189779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.189780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.198000 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.198001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.198015 LLDP, length 82 [|LLDP] 12:38:07.198023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.198024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cad 29c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.198025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.198026 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.198027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.198028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.198034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.198035 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.198036 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.198037 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.198038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.198039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.209012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.209014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.209027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.209028 LLDP, length 82 [|LLDP] 12:38:07.209036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.209037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb5 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.209039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.209039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.209040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.209042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.209043 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.209044 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.209045 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.209046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.209047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.217269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.217270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.217282 LLDP, length 82 [|LLDP] 12:38:07.217290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.217291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbb dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.217293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.217294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.217295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.217296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.217302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.217304 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.217305 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.217306 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.217307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.217307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.228278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.228279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.228291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.228292 LLDP, length 82 [|LLDP] 12:38:07.228300 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.228301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc4 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.228302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.228303 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.228304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.228305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.228306 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.228308 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.228308 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.228309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.228310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.239286 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.239288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.239293 LLDP, length 82 [|LLDP] 12:38:07.239301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.239302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccc a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.239303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.239304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.239305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.239306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.239312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.239314 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.239315 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.239316 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.247533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.247535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.247546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.247547 LLDP, length 82 [|LLDP] 12:38:07.247556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.247557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd2 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.247559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.247560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.247561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.258561 LLDP, length 82 [|LLDP] 12:38:07.258568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.258569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cdb 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.258571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.258572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.258573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.258574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.258581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.258583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.269555 LLDP, length 82 [|LLDP] 12:38:07.269566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.269567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce3 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.269569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.269570 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.269571 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.269572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.269580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.269581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.277830 LLDP, length 82 [|LLDP] 12:38:07.277842 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.277843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cea 102d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.277845 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.277846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.277847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.277848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.277849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.277858 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.277860 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.277861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.277866 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.277868 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.277869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.277870 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.288836 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.288837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.288849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.288850 LLDP, length 82 [|LLDP] 12:38:07.288859 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.288860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf2 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.288861 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.288862 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.288863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.288865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.288866 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.288867 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.288868 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.288869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.288870 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.297093 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.297094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.297106 LLDP, length 82 [|LLDP] 12:38:07.297114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.297114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf8 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.297116 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.297117 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.297118 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.297119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.297125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.297126 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.297127 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.297128 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.297129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.297130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.308102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.308103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.308115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.308116 LLDP, length 82 [|LLDP] 12:38:07.308124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.308125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d01 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.308127 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.308128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.308129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.308130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.308131 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.308132 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.308133 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.308134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.308135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.319113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.319115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.319127 LLDP, length 82 [|LLDP] 12:38:07.319135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.319136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d09 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.319137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.319139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.319140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.319141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.319147 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.319148 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.319149 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.319150 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.319151 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.319152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.327375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.327376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.327388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.327389 LLDP, length 82 [|LLDP] 12:38:07.327397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.327398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0f dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.327400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.327401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.327402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.327403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.327404 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.327405 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.327406 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.327407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.327408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.338377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.338379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.338384 LLDP, length 82 [|LLDP] 12:38:07.338392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.338392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d18 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.338394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.338395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.338396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.338397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.338403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.338405 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.338406 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.338406 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.349376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.349377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.349389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.349390 LLDP, length 82 [|LLDP] 12:38:07.349398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.349399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d20 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.349401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.349401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.349403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.357653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.357654 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d26 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.357656 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.357656 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.357657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.357658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.357665 LLDP, length 82 [|LLDP] 12:38:07.357667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.357674 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.368645 LLDP, length 82 [|LLDP] 12:38:07.368659 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.368659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2f 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.368661 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.368662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.368663 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.368664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.368672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.368673 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.379670 LLDP, length 82 [|LLDP] 12:38:07.379682 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.379683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d37 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.379685 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.379686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.379687 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.379688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.379696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.379698 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.379699 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.379700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.379706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.379707 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.379708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.379709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.387927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.387929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.387941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.387942 LLDP, length 82 [|LLDP] 12:38:07.387949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.387950 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3e 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.387952 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.387953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.387954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.387955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.387956 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.387957 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.387958 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.387959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.387960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.398936 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.398937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.398949 LLDP, length 82 [|LLDP] 12:38:07.398956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.398957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d46 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.398959 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.398960 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.398961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.398961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.398968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.398969 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.398970 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.398971 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.398972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.398973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.407194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.407195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.407207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.407209 LLDP, length 82 [|LLDP] 12:38:07.407216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.407217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4c c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.407218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.407219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.407220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.407222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.407223 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.407224 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.407225 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.407226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.407227 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.418204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.418206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.418218 LLDP, length 82 [|LLDP] 12:38:07.418225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.418226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d55 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.418228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.418228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.418230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.418231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.418236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.418239 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.418239 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.418240 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.418241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.418242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.429213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.429215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.429227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.429228 LLDP, length 82 [|LLDP] 12:38:07.429236 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.429237 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5d 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.429239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.429239 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.429240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.429242 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.429243 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.429244 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.429245 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.429246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.429246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.437469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.437471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.437476 LLDP, length 82 [|LLDP] 12:38:07.437484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.437485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d63 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.437487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.437488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.437489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.437490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.437496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.437498 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.437498 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.437499 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.448469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.448470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.448482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.448483 LLDP, length 82 [|LLDP] 12:38:07.448491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.448492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6c 435e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.448493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.448494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.448496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.459520 LLDP, length 82 [|LLDP] 12:38:07.459527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.459527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d74 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.459529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.459530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.459531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.459532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.459539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.459540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.467737 LLDP, length 82 [|LLDP] 12:38:07.467750 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.467751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7a f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.467753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.467754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.467755 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.467756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.467763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.467765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.478764 LLDP, length 82 [|LLDP] 12:38:07.478775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.478776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d83 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.478778 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.478779 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.478780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.478781 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.478782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.478790 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.478792 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.478793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.478798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.478800 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.478801 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.478802 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.489770 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.489772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.489784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.489785 LLDP, length 82 [|LLDP] 12:38:07.489793 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.489794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8b c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.489796 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.489797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.489798 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.489799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.489801 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.489802 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.489803 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.489804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.489805 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.498030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.498032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.498046 LLDP, length 82 [|LLDP] 12:38:07.498054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.498055 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d92 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.498057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.498058 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.498059 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.498060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.498065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.498067 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.498068 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.498069 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.498070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.498071 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.509039 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.509040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.509053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.509054 LLDP, length 82 [|LLDP] 12:38:07.509062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.509063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9a 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.509064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.509065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.509066 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.509068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.509069 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.509070 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.509070 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.509071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.509072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.517295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.517297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.517309 LLDP, length 82 [|LLDP] 12:38:07.517316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.517317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da0 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.517318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.517319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.517320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.517321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.517327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.517329 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.517330 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.517331 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.517331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.517332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.528306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.528308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.528320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.528321 LLDP, length 82 [|LLDP] 12:38:07.528329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.528330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da9 29c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.528331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.528332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.528333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.528335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.528336 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.528336 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.528337 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.528338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.528339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.539311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.539313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.539318 LLDP, length 82 [|LLDP] 12:38:07.539327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.539327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db1 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.539329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.539330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.539331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.539332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.539347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.539349 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.539350 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.539351 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.547561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.547562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.547575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.547575 LLDP, length 82 [|LLDP] 12:38:07.547584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.547585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db7 dcf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.547586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.547587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.547588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.558570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.558572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc0 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.558573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.558574 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.558575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.558576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.558589 LLDP, length 82 [|LLDP] 12:38:07.558590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.558598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.569582 LLDP, length 82 [|LLDP] 12:38:07.569595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.569595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc8 a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.569598 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.569599 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.569600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.569601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.569608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.569610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.577856 LLDP, length 82 [|LLDP] 12:38:07.577867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.577868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dce f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.577870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.577871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.577872 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.577873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.577874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.577882 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.577884 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.577885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.577890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.577892 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.577892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.577893 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.588862 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.588864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.588876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.588877 LLDP, length 82 [|LLDP] 12:38:07.588885 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.588886 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd7 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.588887 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.588888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.588889 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.588891 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.588892 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.588893 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.588894 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.588895 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.588895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.597122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.597123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.597135 LLDP, length 82 [|LLDP] 12:38:07.597143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.597144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddd a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.597145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.597147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.597147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.597148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.597154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.597156 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.597157 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.597158 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.597159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.597160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.608132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.608133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.608145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.608146 LLDP, length 82 [|LLDP] 12:38:07.608154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.608155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de6 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.608156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.608158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.608159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.608160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.608161 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.608162 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.608163 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.608164 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.608165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.619141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.619143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.619155 LLDP, length 82 [|LLDP] 12:38:07.619162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.619163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dee 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.619165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.619166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.619167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.619168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.619174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.619175 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.619176 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.619177 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.619178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.619179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.627399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.627400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.627412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.627413 LLDP, length 82 [|LLDP] 12:38:07.627421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.627422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df4 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.627423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.627424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.627425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.627427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.627428 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.627429 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.627430 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.627431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.627431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.638403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.638405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.638410 LLDP, length 82 [|LLDP] 12:38:07.638418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.638419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfd 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.638420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.638421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.638422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.638424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.638430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.638432 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.638433 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.638433 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.649406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.649407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.649422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.649423 LLDP, length 82 [|LLDP] 12:38:07.649430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.649431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e05 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.649433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.649434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.649435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.657663 LLDP, length 82 [|LLDP] 12:38:07.657677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.657677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0b dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.657679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.657681 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.657681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.657683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.657690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.657692 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.668690 LLDP, length 82 [|LLDP] 12:38:07.668698 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.668699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e14 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.668700 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.668701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.668702 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.668703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.668710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.668712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.679704 LLDP, length 82 [|LLDP] 12:38:07.679715 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.679716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1c a9c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.679717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.679719 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.679720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.679720 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.679721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.679730 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.679733 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.679734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.679739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.679741 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.679742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.679743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.687962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.687963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.687978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.687979 LLDP, length 82 [|LLDP] 12:38:07.687990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.687991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e22 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.687992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.687993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.687994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.687996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.687997 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.687998 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.687999 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.687999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.688001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.698967 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.698969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.698982 LLDP, length 82 [|LLDP] 12:38:07.698992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.698992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2b 5cf6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.698994 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.698995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.698996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.698997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.699003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.699005 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.699006 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.699007 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.699008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.699009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.707224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.707225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.707237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.707239 LLDP, length 82 [|LLDP] 12:38:07.707247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.707248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e31 a9c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.707250 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.707250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.707252 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.707253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.707254 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.707255 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.707256 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.707257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.707258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.718253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.718255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.718270 LLDP, length 82 [|LLDP] 12:38:07.718282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.718283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3a 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.718284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.718285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.718286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.718287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.718294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.718295 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.718296 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.718297 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.718298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.718299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.729259 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.729261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.729268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.729269 LLDP, length 82 [|LLDP] 12:38:07.729280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.729281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e42 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.729282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.729283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.729285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.729286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.729287 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.729288 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.729289 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.729290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.729291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.737504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.737506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.737519 LLDP, length 82 [|LLDP] 12:38:07.737529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.737530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e48 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.737532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.737533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.737534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.737535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.737541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.737542 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.737543 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.737544 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.748546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.748548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.748555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.748555 LLDP, length 82 [|LLDP] 12:38:07.748565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.748566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e51 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.748568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.748569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.748570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.759513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.759515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e59 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.759517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.759518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.759525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.759526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.759533 LLDP, length 82 [|LLDP] 12:38:07.759535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.759543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.767809 LLDP, length 82 [|LLDP] 12:38:07.767817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.767818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5f dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.767820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.767821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.767822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.767823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.767832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.767833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.778797 LLDP, length 82 [|LLDP] 12:38:07.778806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.778807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e68 4361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.778809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.778810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.778811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.778811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.778812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.778823 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.778825 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.778826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.778832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.778833 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.778834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.778835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.787053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.787055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.787069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.787070 LLDP, length 82 [|LLDP] 12:38:07.787079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.787080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6e 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.787081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.787082 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.787083 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.787085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.787086 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.787086 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.787087 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.787088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.787089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.798064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.798066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.798081 LLDP, length 82 [|LLDP] 12:38:07.798089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.798090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e76 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.798091 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.798092 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.798093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.798095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.798100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.798102 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.798102 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.798103 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.798104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.798105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.809070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.809072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.809087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.809088 LLDP, length 82 [|LLDP] 12:38:07.809098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.809098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7f 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.809100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.809101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.809102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.809103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.809104 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.809105 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.809106 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.809107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.809108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.817328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.817330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.817344 LLDP, length 82 [|LLDP] 12:38:07.817354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.817355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e85 a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.817357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.817358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.817359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.817360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.817366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.817367 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.817368 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.817369 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.817370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.817371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.828355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.828357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.828366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.828367 LLDP, length 82 [|LLDP] 12:38:07.828380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.828381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8e 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.828382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.828383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.828384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.828386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.828387 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.828388 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.828389 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.828390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.828391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.839361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.839363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.839371 LLDP, length 82 [|LLDP] 12:38:07.839381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.839382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e96 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.839384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.839385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.839386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.839387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.839393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.839394 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.839395 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.839396 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.847595 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.847597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.847610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.847611 LLDP, length 82 [|LLDP] 12:38:07.847621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.847622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9c c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.847623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.847625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.847626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.858605 LLDP, length 82 [|LLDP] 12:38:07.858618 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.858619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea5 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.858621 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.858622 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.858623 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.858624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.858632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.858634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.869635 LLDP, length 82 [|LLDP] 12:38:07.869644 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.869644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ead 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.869647 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.869648 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.869649 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.869650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.869658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.869660 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.877888 LLDP, length 82 [|LLDP] 12:38:07.877900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.877901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb3 dcf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.877904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.877904 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.877905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.877906 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.877907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.877917 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.877919 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.877920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.877925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.877927 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.877927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.877928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.888896 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.888898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.888911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.888912 LLDP, length 82 [|LLDP] 12:38:07.888921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.888922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebc 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.888924 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.888925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.888926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.888927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.888928 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.888929 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.888930 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.888931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.888932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.897156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.897158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.897171 LLDP, length 82 [|LLDP] 12:38:07.897180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.897180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec2 902d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.897182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.897183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.897184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.897185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.897191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.897193 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.897194 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.897194 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.897195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.897197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.908165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.908167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.908181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.908182 LLDP, length 82 [|LLDP] 12:38:07.908190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.908191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eca f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.908193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.908194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.908195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.908197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.908198 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.908198 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.908199 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.908200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.908201 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.919174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.919176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.919189 LLDP, length 82 [|LLDP] 12:38:07.919198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.919199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed3 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.919201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.919202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.919203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.919204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.919210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.919211 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.919212 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.919213 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.919214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.919215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.927432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.927434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.927447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.927448 LLDP, length 82 [|LLDP] 12:38:07.927458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.927459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed9 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.927460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.927461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.927462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.927464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.927465 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.927466 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.927467 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.927467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.927468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.938439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.938441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.938448 LLDP, length 82 [|LLDP] 12:38:07.938458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.938459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee2 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.938460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.938461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.938462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.938463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.938469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.938470 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.938471 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.938472 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.949438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.949440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.949453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.949454 LLDP, length 82 [|LLDP] 12:38:07.949463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.949464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eea 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.949465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.949466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.949468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.957699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.957700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef0 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.957702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.957703 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.957710 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.957711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.957719 LLDP, length 82 [|LLDP] 12:38:07.957721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.957729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.968744 LLDP, length 82 [|LLDP] 12:38:07.968753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.968754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef9 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.968757 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.968758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.968758 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.968760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.968767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.968769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.979735 LLDP, length 82 [|LLDP] 12:38:07.979747 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.979748 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f01 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.979751 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.979752 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.979753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.979754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.979755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.979765 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.979767 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.979768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.979773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.979775 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.979776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.979777 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.987989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.987991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.988005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.988006 LLDP, length 82 [|LLDP] 12:38:07.988015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.988016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f07 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.988017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.988018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.988019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.988021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.988022 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.988023 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.988024 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.988024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.988025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:07.999000 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:07.999002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.999015 LLDP, length 82 [|LLDP] 12:38:07.999024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:07.999025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f10 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:07.999027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:07.999027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:07.999028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:07.999029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:07.999035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:07.999037 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:07.999038 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.999039 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:07.999039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:07.999040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.007256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.007258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.007272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.007273 LLDP, length 82 [|LLDP] 12:38:08.007282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.007282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f16 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.007284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.007285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.007286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.007288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.007289 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.007290 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.007290 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.007291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.007292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.018269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.018270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.018284 LLDP, length 82 [|LLDP] 12:38:08.018293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.018294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1e f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.018295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.018296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.018297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.018298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.018304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.018306 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.018307 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.018319 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.018321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.018322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.029306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.029315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.029324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.029326 LLDP, length 82 [|LLDP] 12:38:08.029341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.029341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f27 5cfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.029343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.029344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.029345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.029347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.029348 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.029349 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.029350 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.029351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.029351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.037545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.037547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.037557 LLDP, length 82 [|LLDP] 12:38:08.037567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.037568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2d a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.037570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.037571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.037572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.037573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.037579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.037581 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.037582 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.037583 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.048537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.048539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.048551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.048552 LLDP, length 82 [|LLDP] 12:38:08.048564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.048565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f36 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.048566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.048567 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.048568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.059589 LLDP, length 82 [|LLDP] 12:38:08.059598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.059599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3e 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.059602 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.059603 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.059604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.059605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.059615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.059617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.067848 LLDP, length 82 [|LLDP] 12:38:08.067858 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.067858 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f44 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.067861 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.067862 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.067863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.067864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.067873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.067875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.078837 LLDP, length 82 [|LLDP] 12:38:08.078846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.078847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4d 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.078850 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.078851 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.078852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.078852 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.078853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.078864 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.078867 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.078868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.078874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.078876 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.078877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.078877 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.087091 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.087094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.087109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.087110 LLDP, length 82 [|LLDP] 12:38:08.087121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.087121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f53 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.087123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.087124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.087125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.087127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.087128 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.087129 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.087130 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.087131 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.087132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.098087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.098089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.098101 LLDP, length 82 [|LLDP] 12:38:08.098109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.098110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5b dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.098112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.098112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.098114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.098114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.098121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.098122 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.098123 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.098125 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.098125 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.098126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.109100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.109102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.109116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.109117 LLDP, length 82 [|LLDP] 12:38:08.109126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.109127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f64 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.109128 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.109129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.109130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.109132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.109133 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.109133 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.109134 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.109135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.109136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.117355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.117356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.117369 LLDP, length 82 [|LLDP] 12:38:08.117378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.117379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6a 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.117380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.117381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.117382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.117384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.117389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.117391 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.117392 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.117393 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.117394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.117395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.128366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.128367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.128379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.128380 LLDP, length 82 [|LLDP] 12:38:08.128389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.128389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f72 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.128391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.128392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.128393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.128394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.128395 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.128396 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.128397 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.128398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.128399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.139377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.139379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.139384 LLDP, length 82 [|LLDP] 12:38:08.139392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.139393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7b 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.139395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.139396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.139397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.139398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.139404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.139405 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.139406 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.139407 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.147659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.147661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.147666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.147667 LLDP, length 82 [|LLDP] 12:38:08.147675 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.147676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f81 a9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.147678 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.147679 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.147680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.158628 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.158630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8a 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.158632 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.158633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.158633 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.158634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.158648 LLDP, length 82 [|LLDP] 12:38:08.158649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.158657 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.169641 LLDP, length 82 [|LLDP] 12:38:08.169655 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.169656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f92 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.169658 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.169659 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.169660 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.169661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.169668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.169670 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.177912 LLDP, length 82 [|LLDP] 12:38:08.177923 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.177924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f98 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.177926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.177927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.177928 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.177929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.177937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.177939 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.177940 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.177941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.177947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.177948 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.177949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.177950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.188921 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.188922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.188934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.188935 LLDP, length 82 [|LLDP] 12:38:08.188944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.188945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa1 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.188946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.188947 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.188948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.188950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.188951 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.188952 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.188953 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.188953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.188954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.197179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.197180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.197192 LLDP, length 82 [|LLDP] 12:38:08.197200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.197200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa7 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.197202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.197203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.197204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.197205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.197211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.197212 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.197213 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.197214 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.197215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.197216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.208195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.208197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.208203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.208204 LLDP, length 82 [|LLDP] 12:38:08.208213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.208214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0faf dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.208216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.208217 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.208218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.208219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.208220 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.208222 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.208223 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.208223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.208224 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.219197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.219199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.219211 LLDP, length 82 [|LLDP] 12:38:08.219220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.219221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb8 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.219222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.219223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.219224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.219225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.219231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.219233 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.219234 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.219235 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.219236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.219237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.227458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.227459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.227471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.227473 LLDP, length 82 [|LLDP] 12:38:08.227481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.227482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbe 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.227483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.227484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.227485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.227487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.227488 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.227488 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.227489 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.227490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.227491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.238465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.238466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.238472 LLDP, length 82 [|LLDP] 12:38:08.238480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.238481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc6 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.238482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.238483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.238484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.238486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.238491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.238493 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.238494 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.238495 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.249503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.249505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.249510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.249511 LLDP, length 82 [|LLDP] 12:38:08.249519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.249520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fcf 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.249522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.249523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.249524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.257760 LLDP, length 82 [|LLDP] 12:38:08.257767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.257768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd5 a9c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.257769 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.257770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.257771 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.257772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.257779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.257780 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.268772 LLDP, length 82 [|LLDP] 12:38:08.268779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.268780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fde 1029 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.268782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.268783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.268784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.268785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.268791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.268793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.279756 LLDP, length 82 [|LLDP] 12:38:08.279769 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.279769 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe6 7695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.279771 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.279772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.279773 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.279774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.279782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.279784 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.279785 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.279786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.279792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.279794 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.279795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.279796 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.288012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.288014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.288025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.288026 LLDP, length 82 [|LLDP] 12:38:08.288035 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.288035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fec c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.288037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.288038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.288039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.288041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.288041 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.288042 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.288043 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.288044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.288045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.299023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.299024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.299036 LLDP, length 82 [|LLDP] 12:38:08.299044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.299045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff5 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.299046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.299047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.299048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.299049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.299055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.299057 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.299058 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.299059 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.299060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.299061 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.307279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.307280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.307292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.307293 LLDP, length 82 [|LLDP] 12:38:08.307301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.307302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffb 768f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.307303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.307304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.307306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.307307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.307308 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.307309 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.307310 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.307311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.307312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.318289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.318291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.318303 LLDP, length 82 [|LLDP] 12:38:08.318311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.318312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1003 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.318313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.318314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.318315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.318316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.318322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.318324 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.318325 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.318326 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.318327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.318328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.329301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.329302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.329314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.329315 LLDP, length 82 [|LLDP] 12:38:08.329324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.329324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100c 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.329326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.329327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.329328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.329329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.329330 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.329331 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.329332 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.329333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.329334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.337558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.337559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.337565 LLDP, length 82 [|LLDP] 12:38:08.337572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.337573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1012 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.337575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.337576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.337577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.337578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.337583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.337585 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.337586 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.337587 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.348553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.348554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.348566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.348567 LLDP, length 82 [|LLDP] 12:38:08.348575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.348576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101a f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.348577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.348578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.348580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.359563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.359564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1023 5cf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.359567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.359567 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.359568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.359575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.359582 LLDP, length 82 [|LLDP] 12:38:08.359584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.359591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.367865 LLDP, length 82 [|LLDP] 12:38:08.367871 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.367872 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1029 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.367874 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.367875 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.367876 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.367877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.367883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.367885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.378848 LLDP, length 82 [|LLDP] 12:38:08.378860 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.378861 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1032 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.378863 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.378864 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.378865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.378866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.378874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.378876 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.378877 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.378878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.378883 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.378885 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.378886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.378887 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.387105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.387106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.387118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.387119 LLDP, length 82 [|LLDP] 12:38:08.387127 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.387128 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1038 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.387130 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.387131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.387132 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.387134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.387135 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.387136 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.387136 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.387137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.387138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.398115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.398116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.398129 LLDP, length 82 [|LLDP] 12:38:08.398136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.398137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1040 c361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.398138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.398139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.398140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.398141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.398147 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.398149 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.398150 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.398151 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.398152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.398153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.409127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.409128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.409141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.409142 LLDP, length 82 [|LLDP] 12:38:08.409150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.409151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1049 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.409153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.409154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.409155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.409156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.409157 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.409158 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.409159 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.409160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.409160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.417384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.417385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.417397 LLDP, length 82 [|LLDP] 12:38:08.417406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.417407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104f 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.417408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.417409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.417411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.417412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.417417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.417419 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.417420 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.417421 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.417422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.417423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.428391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.428393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.428404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.428406 LLDP, length 82 [|LLDP] 12:38:08.428413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.428414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1057 dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.428416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.428417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.428418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.428419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.428420 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.428421 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.428422 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.428423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.428424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.439398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.439400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.439406 LLDP, length 82 [|LLDP] 12:38:08.439414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.439415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1060 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.439416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.439417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.439418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.439419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.439425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.439426 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.439427 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.439428 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.447645 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.447647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.447652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.447659 LLDP, length 82 [|LLDP] 12:38:08.447667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.447668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1066 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.447669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.447670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.447671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.458659 LLDP, length 82 [|LLDP] 12:38:08.458665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.458666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106e f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.458674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.458675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.458676 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.458677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.458685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.458686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.469688 LLDP, length 82 [|LLDP] 12:38:08.469695 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.469696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1077 5cf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.469698 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.469699 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.469699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.469700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.469708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.469710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.477940 LLDP, length 82 [|LLDP] 12:38:08.477950 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.477951 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107d a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.477953 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.477954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.477955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.477956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.477964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.477966 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.477967 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.477968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.477973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.477975 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.477976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.477977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.488947 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.488948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.488960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.488961 LLDP, length 82 [|LLDP] 12:38:08.488969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.488970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1086 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.488971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.488972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.488973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.488975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.488976 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.488977 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.488978 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.488979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.488980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.497207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.497208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.497220 LLDP, length 82 [|LLDP] 12:38:08.497228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.497229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108c 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.497230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.497231 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.497232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.497233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.497239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.497241 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.497242 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.497243 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.497244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.497245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.508220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.508222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.508235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.508236 LLDP, length 82 [|LLDP] 12:38:08.508243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.508244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1094 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.508245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.508247 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.508247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.508249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.508250 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.508251 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.508252 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.508253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.508254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.519230 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.519231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.519237 LLDP, length 82 [|LLDP] 12:38:08.519245 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.519246 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109d 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.519247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.519248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.519249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.519250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.519255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.519257 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.519258 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.519259 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.519260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.519260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.527504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.527505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.527515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.527516 LLDP, length 82 [|LLDP] 12:38:08.527526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.527527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a3 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.527528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.527529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.527530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.527531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.527532 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.527533 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.527534 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.527535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.527536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.538496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.538497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.538509 LLDP, length 82 [|LLDP] 12:38:08.538517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.538518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ab dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.538520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.538521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.538522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.538523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.538529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.538531 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.538532 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.538533 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.549512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.549514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.549520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.549521 LLDP, length 82 [|LLDP] 12:38:08.549531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.549531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b4 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.549533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.549534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.549536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.557768 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.557769 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ba 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.557770 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.557771 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.557772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.557773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.557780 LLDP, length 82 [|LLDP] 12:38:08.557782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.557789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.568758 LLDP, length 82 [|LLDP] 12:38:08.568770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.568770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c2 f693 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.568772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.568773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.568774 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.568775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.568782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.568783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.577033 LLDP, length 82 [|LLDP] 12:38:08.577045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.577046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c9 435c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.577048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.577049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.577050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.577051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.577059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.577061 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.577062 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.577063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.577069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.577070 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.577071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.577072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.588043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.588044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.588056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.588057 LLDP, length 82 [|LLDP] 12:38:08.588067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.588068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d1 a9c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.588069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.588070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.588071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.588072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.588073 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.588074 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.588075 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.588076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.588077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.599051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.599053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.599066 LLDP, length 82 [|LLDP] 12:38:08.599073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.599074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10da 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.599075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.599076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.599077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.599078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.599084 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.599086 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.599087 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.599088 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.599089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.599090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.607310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.607312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.607324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.607325 LLDP, length 82 [|LLDP] 12:38:08.607341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.607342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e0 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.607343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.607345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.607346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.607347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.607348 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.607349 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.607350 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.607351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.607352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.618319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.618321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.618333 LLDP, length 82 [|LLDP] 12:38:08.618341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.618341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e8 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.618343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.618344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.618345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.618346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.618351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.618353 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.618354 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.618355 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.618356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.618357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.629329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.629330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.629342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.629344 LLDP, length 82 [|LLDP] 12:38:08.629352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.629353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f1 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.629354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.629355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.629356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.629358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.629359 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.629360 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.629361 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.629362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.629363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.637587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.637589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.637594 LLDP, length 82 [|LLDP] 12:38:08.637601 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.637602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f7 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.637604 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.637605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.637606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.637607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.637613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.637614 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.637615 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.637616 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.648603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.648604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.648610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.648611 LLDP, length 82 [|LLDP] 12:38:08.648619 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.648620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ff dcfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.648621 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.648622 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.648624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.659615 LLDP, length 82 [|LLDP] 12:38:08.659621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.659622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1108 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.659624 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.659625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.659626 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.659627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.659634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.659635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.667869 LLDP, length 82 [|LLDP] 12:38:08.667876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.667877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110e 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.667879 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.667880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.667880 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.667882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.667888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.667890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.678876 LLDP, length 82 [|LLDP] 12:38:08.678887 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.678888 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1116 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.678890 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.678891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.678892 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.678893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.678900 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.678902 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.678903 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.678904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.678910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.678912 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.678913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.678913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.687132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.687133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.687145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.687146 LLDP, length 82 [|LLDP] 12:38:08.687154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.687155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111d 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.687157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.687158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.687159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.687160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.687161 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.687162 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.687163 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.687164 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.687165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.698149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.698150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.698162 LLDP, length 82 [|LLDP] 12:38:08.698171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.698172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1125 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.698173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.698174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.698175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.698176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.698182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.698184 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.698185 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.698186 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.698187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.698188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.709154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.709156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.709167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.709169 LLDP, length 82 [|LLDP] 12:38:08.709177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.709178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112e 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.709180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.709181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.709182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.709183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.709184 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.709185 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.709186 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.709187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.709188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.717411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.717413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.717425 LLDP, length 82 [|LLDP] 12:38:08.717434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.717435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1134 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.717436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.717437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.717438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.717439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.717445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.717447 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.717448 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.717449 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.717450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.717450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.728421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.728423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.728435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.728436 LLDP, length 82 [|LLDP] 12:38:08.728444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.728445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113c c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.728446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.728447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.728448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.728449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.728450 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.728451 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.728452 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.728453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.728454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.739429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.739430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.739436 LLDP, length 82 [|LLDP] 12:38:08.739443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.739444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1145 29c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.739446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.739447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.739448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.739449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.739455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.739457 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.739458 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.739458 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.747675 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.747677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.747688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.747689 LLDP, length 82 [|LLDP] 12:38:08.747698 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.747699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114b 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.747701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.747702 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.747703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.758704 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.758705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1153 dcf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.758707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.758707 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.758708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.758709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.758717 LLDP, length 82 [|LLDP] 12:38:08.758718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.758726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.769697 LLDP, length 82 [|LLDP] 12:38:08.769708 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.769709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115c 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.769711 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.769712 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.769713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.769714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.769721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.769723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.777971 LLDP, length 82 [|LLDP] 12:38:08.777982 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.777983 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1162 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.777985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.777986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.777987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.777988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.777989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.777997 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.777999 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.778000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.778005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.778007 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.778008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.778009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.788992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.788994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.789002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.789003 LLDP, length 82 [|LLDP] 12:38:08.789015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.789015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116a f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.789017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.789018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.789019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.789020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.789021 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.789022 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.789023 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.789024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.789025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.797263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.797272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.797280 LLDP, length 82 [|LLDP] 12:38:08.797293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.797294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1171 435a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.797296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.797297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.797298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.797299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.797305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.797306 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.797307 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.797308 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.797309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.797310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.808258 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.808260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.808268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.808269 LLDP, length 82 [|LLDP] 12:38:08.808279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.808280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1179 a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.808282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.808283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.808284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.808285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.808286 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.808287 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.808288 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.808289 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.808290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.819258 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.819260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.819273 LLDP, length 82 [|LLDP] 12:38:08.819281 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.819282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1182 102c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.819284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.819285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.819286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.819287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.819293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.819295 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.819296 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.819296 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.819297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.819298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.827529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.827531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.827542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.827543 LLDP, length 82 [|LLDP] 12:38:08.827554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.827555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1188 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.827556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.827557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.827558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.827560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.827561 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.827562 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.827563 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.827564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.827565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.838525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.838526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.838533 LLDP, length 82 [|LLDP] 12:38:08.838542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.838543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1190 c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.838544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.838545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.838546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.838547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.838554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.838555 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.838556 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.838557 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.849539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.849540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.849546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.849547 LLDP, length 82 [|LLDP] 12:38:08.849555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.849556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1199 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.849557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.849558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.849559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.857803 LLDP, length 82 [|LLDP] 12:38:08.857811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.857812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119f 768f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.857815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.857816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.857816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.857817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.857827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.857829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.868810 LLDP, length 82 [|LLDP] 12:38:08.868817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.868818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a7 dcf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.868820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.868821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.868822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.868822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.868831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.868832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.877063 LLDP, length 82 [|LLDP] 12:38:08.877075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.877076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ae 29c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.877078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.877079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.877080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.877081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.877082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.877092 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.877093 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.877094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.877100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.877101 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.877102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.877103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.888071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.888072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.888085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.888086 LLDP, length 82 [|LLDP] 12:38:08.888094 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.888095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b6 9028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.888096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.888098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.888098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.888100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.888101 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.888102 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.888103 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.888104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.888105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.899082 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.899083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.899095 LLDP, length 82 [|LLDP] 12:38:08.899103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.899104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11be f695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.899106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.899107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.899108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.899109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.899115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.899117 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.899118 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.899119 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.899119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.899120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.907343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.907345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.907357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.907358 LLDP, length 82 [|LLDP] 12:38:08.907366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.907367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c5 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.907369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.907370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.907371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.907372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.907373 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.907374 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.907375 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.907376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.907377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.918357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.918359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.918367 LLDP, length 82 [|LLDP] 12:38:08.918376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.918377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cd a9c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.918379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.918380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.918381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.918382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.918389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.918390 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.918391 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.918392 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.918393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.918394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.929363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.929365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.929379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.929380 LLDP, length 82 [|LLDP] 12:38:08.929389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.929390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d6 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.929391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.929392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.929393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.929395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.929396 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.929397 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.929398 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.929399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.929400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.937614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.937615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.937621 LLDP, length 82 [|LLDP] 12:38:08.937629 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.937630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11dc 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.937631 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.937632 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.937633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.937634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.937640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.937642 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.937642 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.937643 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.948631 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.948632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.948638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.948639 LLDP, length 82 [|LLDP] 12:38:08.948647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.948648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e4 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.948649 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.948651 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.948652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.959640 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.959641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ed 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.959643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.959644 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.959645 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.959646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.959653 LLDP, length 82 [|LLDP] 12:38:08.959654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.959661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.967886 LLDP, length 82 [|LLDP] 12:38:08.967900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.967900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f3 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.967903 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.967904 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.967905 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.967906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.967916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.967918 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.978916 LLDP, length 82 [|LLDP] 12:38:08.978930 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.978930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fb dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.978933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.978934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.978934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.978935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.978936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.978948 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.978950 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.978951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.978957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.978958 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.978959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.978960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.987170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.987172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.987185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.987186 LLDP, length 82 [|LLDP] 12:38:08.987196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.987197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1202 29c1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.987199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.987200 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.987201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.987202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.987203 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.987204 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.987205 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.987206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.987207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:08.998175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:08.998177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.998190 LLDP, length 82 [|LLDP] 12:38:08.998199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:08.998199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120a 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:08.998201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:08.998202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:08.998203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:08.998204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:08.998210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:08.998212 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:08.998213 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.998214 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:08.998215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:08.998216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.009183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.009185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.009209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.009211 LLDP, length 82 [|LLDP] 12:38:09.009219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.009220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1212 f68d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.009222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.009223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.009224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.009225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.009226 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.009227 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.009228 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.009229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.009230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.017469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.017477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.017489 LLDP, length 82 [|LLDP] 12:38:09.017503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.017504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1219 4361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.017506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.017507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.017508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.017509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.017516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.017518 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.017519 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.017520 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.017521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.017521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.028474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.028477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.028486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.028487 LLDP, length 82 [|LLDP] 12:38:09.028500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.028501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1221 a9c0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.028503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.028504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.028505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.028506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.028507 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.028508 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.028509 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.028510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.028512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.039476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.039478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.039487 LLDP, length 82 [|LLDP] 12:38:09.039499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.039500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122a 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.039501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.039502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.039503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.039504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.039511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.039512 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.039513 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.039514 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.047721 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.047723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.047738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.047739 LLDP, length 82 [|LLDP] 12:38:09.047751 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.047752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1230 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.047754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.047755 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.047756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.058744 LLDP, length 82 [|LLDP] 12:38:09.058754 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.058755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1238 c35a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.058757 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.058758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.058759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.058760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.058770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.058771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.066984 LLDP, length 82 [|LLDP] 12:38:09.066998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.066999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123f 1027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.067001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.067002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.067003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.067004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.067013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.067015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.078002 LLDP, length 82 [|LLDP] 12:38:09.078015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.078016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1247 768d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.078018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.078019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.078020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.078021 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.078022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.078032 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.078034 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.078035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.078041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.078042 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.078043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.078044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.089034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.089037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.089047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.089048 LLDP, length 82 [|LLDP] 12:38:09.089061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.089061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124f dcf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.089063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.089064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.089065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.089066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.089067 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.089068 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.089069 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.089070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.089071 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.097269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.097270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.097283 LLDP, length 82 [|LLDP] 12:38:09.097292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.097293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1256 29c4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.097295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.097296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.097297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.097298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.097304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.097306 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.097307 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.097307 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.097308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.097309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.108276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.108277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.108290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.108291 LLDP, length 82 [|LLDP] 12:38:09.108299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.108300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125e 9027 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.108301 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.108302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.108303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.108305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.108306 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.108307 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.108308 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.108308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.108309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.119302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.119310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.119320 LLDP, length 82 [|LLDP] 12:38:09.119333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.119334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1266 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.119346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.119347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.119348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.119350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.119357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.119358 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.119359 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.119360 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.119361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.119362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.127548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.127550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.127565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.127566 LLDP, length 82 [|LLDP] 12:38:09.127575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.127577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126d 435b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.127578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.127579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.127580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.127582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.127583 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.127583 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.127585 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.127585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.127586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.138554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.138556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.138562 LLDP, length 82 [|LLDP] 12:38:09.138570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.138571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1275 a9c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.138572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.138573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.138574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.138575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.138581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.138583 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.138584 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.138584 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.149565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.149567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.149584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.149585 LLDP, length 82 [|LLDP] 12:38:09.149597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.149598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127e 102f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.149600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.149601 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.149602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.157811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.157812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1284 5cf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.157814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.157815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.157822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.157823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.157831 LLDP, length 82 [|LLDP] 12:38:09.157833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.157841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.168818 LLDP, length 82 [|LLDP] 12:38:09.168829 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.168830 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 128c c35b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.168832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.168833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.168834 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.168835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.168843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.168844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.177094 LLDP, length 82 [|LLDP] 12:38:09.177106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.177106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1293 1028 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.177108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.177109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.177110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.177111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.177120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.177121 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.177123 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.177124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.177130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.177132 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.177133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.177134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 12:38:09.188115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 12:38:09.188124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.188133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 12:38:09.188134 LLDP, length 82 [|LLDP] 12:38:09.188146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 12:38:09.188147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 129b 768e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 12:38:09.188149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 12:38:09.188150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 12:38:09.188151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 12:38:09.188153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 12:38:09.188154 IP 1.1.1.2.54945 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 12:38:09.188155 IP 1.1.1.2.34535 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.188156 IP 192.168.1.1.62222 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 12:38:09.188157 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 12:38:09.188157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 7862 packets captured 7862 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_port_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:38:18 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=45, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=45, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=10] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=45, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=45, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=45, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=12] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=45, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=45, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=14] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:38:18 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=45, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:38:18 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=45, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=45, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=45, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_backward_forwarding | 150.67 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_backward_forwarding">Starting testcase:test_bridging_backward_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2590' coro=<test_bridging_backward_forwarding() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=46] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=46] Local address: 172.17.0.4, port 40858 INFO asyncssh:logging.py:92 [conn=46] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=46] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=46] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:38:18 UTC 2087 INFO asyncssh:logging.py:92 [conn=46, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=46, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=46, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=46, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=46, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=46, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=46, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad63b370>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI streamA SIP-DIP N/A Tx 225 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI streamB SIP-DIP N/A Tx 225 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=46, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=46, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=46, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:1f:fd:cb","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_backward_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=46, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:40:48 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=46, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:40:48 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=46, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=46, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=46, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":97,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=46, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_forward_block_different_packets | 208.85 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_forward_block_different_packets">Starting testcase:test_bridging_forward_block_different_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2618' coro=<test_bridging_forward_block_different_packets() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:152> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=46, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=47] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=47] Local address: 172.17.0.4, port 49876 INFO asyncssh:logging.py:92 [conn=47] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=47] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=47] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:40:49 UTC 2087 INFO asyncssh:logging.py:92 [conn=47, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=47, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=47, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=47, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=47, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=47, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=47, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6d1ba0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Broadcast SIP-DIP N/A Tx 618 Rx 618 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Reserved_MC SIP-DIP N/A Tx 618 Rx 618 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 618 Rx 618 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 618 Rx 618 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_OSPFIGP SIP-DIP N/A Tx 618 Rx 618 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 618 Rx 618 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 618 Rx 618 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 618 Rx 618 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_VRRP SIP-DIP N/A Tx 618 Rx 618 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_IGMP SIP-DIP N/A Tx 618 Rx 618 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_forward_block_different_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=47, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:44:17 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=47, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=10] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:44:17 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=47, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=47, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=47, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":98,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=47, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=14] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_fdb_flush_on_down | 125.11 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_fdb_flush_on_down">Starting testcase:test_bridging_fdb_flush_on_down from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2642' coro=<test_bridging_fdb_flush_on_down() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:345> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=47, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=48] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=48] Local address: 172.17.0.4, port 47720 INFO asyncssh:logging.py:92 [conn=48] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=48] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=48] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:44:18 UTC 2087 INFO asyncssh:logging.py:92 [conn=48, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=48, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=48, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=48, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=48, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=48, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=48, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_11.0.0.1/24', 'count': 1, 'ip': '11.0.0.1', 'gw': '11.0.0.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/24', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_11.0.0.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6d35b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bridge SIP-DIP N/A Tx 189 Rx 189 Loss 0.000 INFO asyncssh:logging.py:92 [conn=48, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:89:15:8d","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=48, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=48, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=12] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=48, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=14] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:89:15:8d","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_fdb_flush_on_down from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=48, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:46:22 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=48, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:46:23 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=48, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=48, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=48, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":99,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=48, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_traffic_from_nomaster | 191.94 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_traffic_from_nomaster">Starting testcase:test_bridging_traffic_from_nomaster from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2674' coro=<test_bridging_traffic_from_nomaster() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:456> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=48, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=49] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=49] Local address: 172.17.0.4, port 32902 INFO asyncssh:logging.py:92 [conn=49] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=49] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=49] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:46:23 UTC 2087 INFO asyncssh:logging.py:92 [conn=49, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=49, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=49, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=49, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=49, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=49, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=8] Command: bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=49, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=49, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=10] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=49, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 nomaster INFO asyncssh:logging.py:92 [conn=49, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=12] Command: ip link set dev swp33 nomaster INFO asyncssh:logging.py:92 [conn=49, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6d1a20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 105 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 105 Rx 105 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 105 Rx 105 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 105 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_traffic_from_nomaster from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=49, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:49:34 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=49, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:49:35 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=49, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=49, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=49, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":100,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=49, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_unregistered_traffic | 224.82 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_unregistered_traffic">Starting testcase:test_bridging_unregistered_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2704' coro=<test_bridging_unregistered_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:570> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=49, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=50] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=50] Local address: 172.17.0.4, port 52168 INFO asyncssh:logging.py:92 [conn=50] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=50] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=50] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:49:35 UTC 2087 INFO asyncssh:logging.py:92 [conn=50, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=50, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=50, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=50, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=50, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=50, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=50, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6bff40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 5373 Rx 5373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 5373 Rx 5373 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 5373 Rx 5373 Loss 0.000 INFO asyncssh:logging.py:92 [conn=50, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=50, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=8] Command: bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=50, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6bd720>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 8965 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 8965 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 8965 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=50, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=50, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=10] Command: bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=50, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6d1690>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 7988 Rx 7988 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 7988 Rx 7988 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 7988 Rx 7988 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_unregistered_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=50, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:53:19 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=50, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:53:19 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=50, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=50, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=50, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":101,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=50, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_wrong_fcs | 148.86 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_wrong_fcs">Starting testcase:test_bridging_wrong_fcs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2732' coro=<test_bridging_wrong_fcs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:717> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=50, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=51] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=51] Local address: 172.17.0.4, port 59022 INFO asyncssh:logging.py:92 [conn=51] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=51] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=51] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:53:20 UTC 2087 INFO asyncssh:logging.py:92 [conn=51, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=51, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=51, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=51, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=51, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood on && bridge link set dev swp34 learning on flood on && bridge link set dev swp35 learning on flood on && bridge link set dev swp36 learning on flood on INFO asyncssh:logging.py:92 [conn=51, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=8] Command: bridge link set dev swp33 learning on flood on && bridge link set dev swp34 learning on flood on && bridge link set dev swp35 learning on flood on && bridge link set dev swp36 learning on flood on INFO asyncssh:logging.py:92 [conn=51, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6387c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI bridge SIP-DIP N/A Tx 217 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=51, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=51, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=51, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:95:07:59","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_wrong_fcs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=51, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:55:48 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=51, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:55:48 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=51, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=51, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=51, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":102,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=51, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_full_fdb_traffic.py::test_bridging_full_fdb_traffic | 219.44 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_full_fdb_traffic">Starting testcase:test_bridging_full_fdb_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2760' coro=<test_bridging_full_fdb_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=51, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=52] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=52] Local address: 172.17.0.4, port 35628 INFO asyncssh:logging.py:92 [conn=52] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=52] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=52] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:55:49 UTC 2087 INFO asyncssh:logging.py:92 [conn=52, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=52, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=52, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=52, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=52, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=52, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=52, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6d0220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 90481 Rx 90481 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=52, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=8] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=8] Channel closed DEBUG infra1:Logger.py:156 16002 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad63b5b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 91156 Rx 91156 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=52, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=10] Channel closed DEBUG infra1:Logger.py:156 16002 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_full_fdb_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=52, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:59:27 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=52, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:59:27 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=52, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=52, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=52, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":103,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=52, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[1510] | 206.95 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2788' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[1510]">Starting testcase:test_bridging_jumbo_frame_size[1510] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=52, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=53] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=53] Local address: 172.17.0.4, port 42472 INFO asyncssh:logging.py:92 [conn=53] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=53] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=53] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:59:28 UTC 2087 INFO asyncssh:logging.py:92 [conn=53, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=53, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=53, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=4] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 12:59:28 UTC 2087 INFO asyncssh:logging.py:92 [conn=53, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=53, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=53, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=53, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=53, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1510 && ip link set dev swp34 mtu 1510 && ip link set dev swp35 mtu 1510 && ip link set dev swp36 mtu 1510 INFO asyncssh:logging.py:92 [conn=53, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=10] Command: ip link set dev swp33 mtu 1510 && ip link set dev swp34 mtu 1510 && ip link set dev swp35 mtu 1510 && ip link set dev swp36 mtu 1510 INFO asyncssh:logging.py:92 [conn=53, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad54c2b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 834 Rx 834 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 834 Rx 834 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 834 Rx 834 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 834 Rx 834 Loss 0.000 INFO asyncssh:logging.py:92 [conn=53, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=53, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=53, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[1510] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=53, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=53, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=14] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=53, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:02:54 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=53, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:02:55 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=53, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=53, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=53, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":104,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=53, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[8998] | 210.97 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2822' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[8998]">Starting testcase:test_bridging_jumbo_frame_size[8998] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=54] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=54] Local address: 172.17.0.4, port 54606 INFO asyncssh:logging.py:92 [conn=54] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=54] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=54] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:02:55 UTC 2087 INFO asyncssh:logging.py:92 [conn=54, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=54, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=54, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=4] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:02:55 UTC 2087 INFO asyncssh:logging.py:92 [conn=54, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=54, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=54, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=54, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=54, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 8998 && ip link set dev swp34 mtu 8998 && ip link set dev swp35 mtu 8998 && ip link set dev swp36 mtu 8998 INFO asyncssh:logging.py:92 [conn=54, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=10] Command: ip link set dev swp33 mtu 8998 && ip link set dev swp34 mtu 8998 && ip link set dev swp35 mtu 8998 && ip link set dev swp36 mtu 8998 INFO asyncssh:logging.py:92 [conn=54, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6d1630>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 873 Rx 873 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 873 Rx 873 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 873 Rx 873 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 873 Rx 873 Loss 0.000 INFO asyncssh:logging.py:92 [conn=54, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=54, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=54, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[8998] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=54, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=54, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=14] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=54, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:06:25 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=54, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:06:26 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=54, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=54, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=54, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":105,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=54, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[9000] | 211.87 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2856' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[9000]">Starting testcase:test_bridging_jumbo_frame_size[9000] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=55] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=55] Local address: 172.17.0.4, port 46464 INFO asyncssh:logging.py:92 [conn=55] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=55] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=55] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:06:26 UTC 2087 INFO asyncssh:logging.py:92 [conn=55, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=55, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=55, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=4] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:06:26 UTC 2087 INFO asyncssh:logging.py:92 [conn=55, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=55, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=55, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=55, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=55, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 9000 && ip link set dev swp34 mtu 9000 && ip link set dev swp35 mtu 9000 && ip link set dev swp36 mtu 9000 INFO asyncssh:logging.py:92 [conn=55, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=10] Command: ip link set dev swp33 mtu 9000 && ip link set dev swp34 mtu 9000 && ip link set dev swp35 mtu 9000 && ip link set dev swp36 mtu 9000 INFO asyncssh:logging.py:92 [conn=55, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6d0ac0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 732 Rx 732 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 732 Rx 732 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 732 Rx 732 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 732 Rx 732 Loss 0.000 INFO asyncssh:logging.py:92 [conn=55, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=55, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=55, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[9000] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=55, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=55, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=14] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=55, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:09:57 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=55, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:09:57 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=55, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=55, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=55, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":106,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=55, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[9002] | 202.49 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2890' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[9002]">Starting testcase:test_bridging_jumbo_frame_size[9002] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=56] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=56] Local address: 172.17.0.4, port 37278 INFO asyncssh:logging.py:92 [conn=56] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=56] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=56] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:09:58 UTC 2087 INFO asyncssh:logging.py:92 [conn=56, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=56, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=56, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=4] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:09:58 UTC 2087 INFO asyncssh:logging.py:92 [conn=56, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=56, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=56, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=56, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=56, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 9002 && ip link set dev swp34 mtu 9002 && ip link set dev swp35 mtu 9002 && ip link set dev swp36 mtu 9002 INFO asyncssh:logging.py:92 [conn=56, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=10] Command: ip link set dev swp33 mtu 9002 && ip link set dev swp34 mtu 9002 && ip link set dev swp35 mtu 9002 && ip link set dev swp36 mtu 9002 INFO asyncssh:logging.py:92 [conn=56, chan=10] Received exit status 2 INFO asyncssh:logging.py:92 [conn=56, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=10] Channel closed DEBUG infra1:Logger.py:156 Error: mtu greater than device maximum. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad54f790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 837 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 837 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 837 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 837 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=56, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=56, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=56, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[9002] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=56, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=56, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=14] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=56, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:13:20 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=56, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:13:20 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=56, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=56, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=56, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":107,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=56, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_learning_address | 191.90 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_address">Starting testcase:test_bridging_learning_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2924' coro=<test_bridging_learning_address() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=57] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=57] Local address: 172.17.0.4, port 55758 INFO asyncssh:logging.py:92 [conn=57] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=57] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=57] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:13:20 UTC 2087 INFO asyncssh:logging.py:92 [conn=57, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=57, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=57, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=57, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=57, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=57, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=57, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6bf430>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 312 Rx 311 Frames Delta 1 Loss 0.321 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 312 Rx 311 Frames Delta 1 Loss 0.321 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 312 Rx 311 Frames Delta 1 Loss 0.321 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 312 Rx 311 Frames Delta 1 Loss 0.321 INFO asyncssh:logging.py:92 [conn=57, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=57, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=57, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:9e:87:ee","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=57, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:16:32 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=57, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:16:32 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=57, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=57, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=57, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":108,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=57, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_learning_address_rate | 175.34 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_address_rate">Starting testcase:test_bridging_learning_address_rate from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2952' coro=<test_bridging_learning_address_rate() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:148> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=57, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=58] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=58] Local address: 172.17.0.4, port 44676 INFO asyncssh:logging.py:92 [conn=58] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=58] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=58] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:16:32 UTC 2087 INFO asyncssh:logging.py:92 [conn=58, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=58, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=58, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=58, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=58, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad54ddb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 2844 Rx 2844 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI streamB SIP-DIP N/A Tx 2844 Rx 2844 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_address_rate from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=58, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:19:27 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=58, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=10] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:19:27 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=58, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=58, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=58, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":109,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=58, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=14] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_learning_illegal_address | 202.29 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_illegal_address">Starting testcase:test_bridging_learning_illegal_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2976' coro=<test_bridging_learning_illegal_address() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:253> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=58, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=59] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=59] Local address: 172.17.0.4, port 47262 INFO asyncssh:logging.py:92 [conn=59] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=59] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=59] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:19:28 UTC 2087 INFO asyncssh:logging.py:92 [conn=59, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=59, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=59, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=59, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=59, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=59, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=59, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for all_zeros INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for multicast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for multicast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad63a5f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI all_zeros SIP-DIP N/A Tx 309 Rx 309 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI broadcast SIP-DIP N/A Tx 309 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI multicast_1 SIP-DIP N/A Tx 309 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI multicast_2 SIP-DIP N/A Tx 309 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=59, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:cb:3e:72","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_illegal_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=59, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:22:49 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=59, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:22:49 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=59, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=59, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=59, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":110,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=59, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_relearning_on_different_vlans | 397.75 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_relearning_on_different_vlans">Starting testcase:test_bridging_relearning_on_different_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3004' coro=<test_bridging_relearning_on_different_vlans() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:385> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=59, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=60] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=60] Local address: 172.17.0.4, port 51202 INFO asyncssh:logging.py:92 [conn=60] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=60] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=60] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:22:50 UTC 2087 INFO asyncssh:logging.py:92 [conn=60, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=60, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=60, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=60, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=60, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge ageing_time 60000 INFO asyncssh:logging.py:92 [conn=60, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=6] Command: ip link set dev br0 type bridge ageing_time 60000 INFO asyncssh:logging.py:92 [conn=60, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=10] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp34 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=12] Command: bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp34 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=14] Command: bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad54f4f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 216 Rx 216 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 216 Rx 216 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:1a:4b:5e","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad668c10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 223 Rx 223 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 223 Rx 223 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=18] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:1a:4b:5e","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad638070>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 207 Rx 207 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 207 Rx 207 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=20] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:1a:4b:5e","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=60, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show dev swp33 INFO asyncssh:logging.py:92 [conn=60, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=22] Command: bridge -j fdb show dev swp33 INFO asyncssh:logging.py:92 [conn=60, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"00:11:01:00:00:01","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_relearning_on_different_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=60, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:29:27 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=60, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:29:27 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=60, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=60, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=60, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":111,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=60, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_packets.py::test_bridging_packets_oversize | 201.49 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_packets_oversize">Starting testcase:test_bridging_packets_oversize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3044' coro=<test_bridging_packets_oversize() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=60, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=61] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=61] Local address: 172.17.0.4, port 46004 INFO asyncssh:logging.py:92 [conn=61] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=61] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=61] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:29:28 UTC 2087 INFO asyncssh:logging.py:92 [conn=61, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=61, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=61, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=61, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=61, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=61, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=61, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=9] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=10] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=10] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 2740534860 bad_octets_received: 1882789 mac_trans_error: 0 broadcast_frames_received: 16661 multicast_frames_received: 32182 frames_64_octets: 1323 frames_65_to_127_octets: 56148 frames_128_to_255_octets: 2840 frames_256_to_511_octets: 5893643 frames_512_to_1023_octets: 4639294 frames_1024_to_max_octets: 6454 excessive_collision: 0 multicast_frames_sent: 1851 broadcast_frames_sent: 852 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 5077 oversize: 1063 jabber: 0 rx_error_frame_received: 0 bad_crc: 846 collisions: 0 late_collision: 0 unicast_frames_received: 8258584 unicast_frames_sent: 2288726 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 1191923867 INFO asyncssh:logging.py:92 [conn=61, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=11] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=12] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=12] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 1191663644 bad_octets_received: 1764016 mac_trans_error: 0 broadcast_frames_received: 716 multicast_frames_received: 309 frames_64_octets: 1312 frames_65_to_127_octets: 22183 frames_128_to_255_octets: 415 frames_256_to_511_octets: 4989504 frames_512_to_1023_octets: 4586014 frames_1024_to_max_octets: 6454 excessive_collision: 1 multicast_frames_sent: 18203 broadcast_frames_sent: 10319 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 3316 oversize: 1063 jabber: 0 rx_error_frame_received: 0 bad_crc: 615 collisions: 16 late_collision: 0 unicast_frames_received: 2288734 unicast_frames_sent: 7286986 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2478676517 INFO asyncssh:logging.py:92 [conn=61, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=13] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=14] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=14] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 23513372 bad_octets_received: 1617886 mac_trans_error: 0 broadcast_frames_received: 124 multicast_frames_received: 309 frames_64_octets: 625 frames_65_to_127_octets: 21173 frames_128_to_255_octets: 399 frames_256_to_511_octets: 1225 frames_512_to_1023_octets: 254374 frames_1024_to_max_octets: 6454 excessive_collision: 0 multicast_frames_sent: 17670 broadcast_frames_sent: 5141 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 1063 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7429 unicast_frames_sent: 253577 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 151746310 INFO asyncssh:logging.py:92 [conn=61, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=16] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=16] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 23300828 bad_octets_received: 1617886 mac_trans_error: 0 broadcast_frames_received: 115 multicast_frames_received: 309 frames_64_octets: 623 frames_65_to_127_octets: 21185 frames_128_to_255_octets: 401 frames_256_to_511_octets: 1210 frames_512_to_1023_octets: 253959 frames_1024_to_max_octets: 6454 excessive_collision: 0 multicast_frames_sent: 17359 broadcast_frames_sent: 5149 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 1063 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7015 unicast_frames_sent: 253885 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 151743440 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=18] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=18] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 2740534860 bad_octets_received: 22804201 mac_trans_error: 0 broadcast_frames_received: 16661 multicast_frames_received: 32182 frames_64_octets: 1323 frames_65_to_127_octets: 56148 frames_128_to_255_octets: 2841 frames_256_to_511_octets: 5893643 frames_512_to_1023_octets: 4639294 frames_1024_to_max_octets: 6454 excessive_collision: 0 multicast_frames_sent: 1852 broadcast_frames_sent: 852 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 5077 oversize: 14809 jabber: 0 rx_error_frame_received: 0 bad_crc: 846 collisions: 0 late_collision: 0 unicast_frames_received: 8258584 unicast_frames_sent: 2288726 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 1191924115 INFO asyncssh:logging.py:92 [conn=61, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=20] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=20] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 1191663644 bad_octets_received: 22685428 mac_trans_error: 0 broadcast_frames_received: 716 multicast_frames_received: 309 frames_64_octets: 1312 frames_65_to_127_octets: 22183 frames_128_to_255_octets: 416 frames_256_to_511_octets: 4989504 frames_512_to_1023_octets: 4586014 frames_1024_to_max_octets: 6454 excessive_collision: 1 multicast_frames_sent: 18204 broadcast_frames_sent: 10319 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 3316 oversize: 14809 jabber: 0 rx_error_frame_received: 0 bad_crc: 615 collisions: 16 late_collision: 0 unicast_frames_received: 2288734 unicast_frames_sent: 7286986 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2478676765 INFO asyncssh:logging.py:92 [conn=61, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=22] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=22] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 23513372 bad_octets_received: 22539298 mac_trans_error: 0 broadcast_frames_received: 124 multicast_frames_received: 309 frames_64_octets: 625 frames_65_to_127_octets: 21173 frames_128_to_255_octets: 400 frames_256_to_511_octets: 1225 frames_512_to_1023_octets: 254374 frames_1024_to_max_octets: 6454 excessive_collision: 0 multicast_frames_sent: 17671 broadcast_frames_sent: 5141 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14809 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7429 unicast_frames_sent: 253577 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 151746558 INFO asyncssh:logging.py:92 [conn=61, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=23] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=24] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=24] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 23300828 bad_octets_received: 22539298 mac_trans_error: 0 broadcast_frames_received: 115 multicast_frames_received: 309 frames_64_octets: 623 frames_65_to_127_octets: 21185 frames_128_to_255_octets: 402 frames_256_to_511_octets: 1210 frames_512_to_1023_octets: 253959 frames_1024_to_max_octets: 6454 excessive_collision: 0 multicast_frames_sent: 17360 broadcast_frames_sent: 5149 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14809 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7015 unicast_frames_sent: 253885 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 151743688 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6bdc60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 13746 Rx 0 Frames Delta 13746 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 13746 Rx 0 Frames Delta 13746 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 13746 Rx 0 Frames Delta 13746 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 13746 Rx 0 Frames Delta 13746 Loss 100.000 INFO asyncssh:logging.py:92 [conn=61, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=25] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=61, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=26] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=61, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:dc:0a:ec","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_packets_oversize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=61, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:32:48 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:32:49 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=61, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=61, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=61, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":112,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=61, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_packets.py::test_bridging_packets_undersize | 203.31 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_packets_undersize">Starting testcase:test_bridging_packets_undersize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3088' coro=<test_bridging_packets_undersize() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py:161> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=61, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=62] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=62] Local address: 172.17.0.4, port 37234 INFO asyncssh:logging.py:92 [conn=62] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=62] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=62] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:32:49 UTC 2087 INFO asyncssh:logging.py:92 [conn=62, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=62, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=62, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=62, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=62, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=62, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=62, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Enabling smaller frame size (4 Byte Signature) INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'switch_min_frame_size', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=9] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=10] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=10] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 2740535372 bad_octets_received: 22804201 mac_trans_error: 0 broadcast_frames_received: 16669 multicast_frames_received: 32182 frames_64_octets: 1356 frames_65_to_127_octets: 56166 frames_128_to_255_octets: 2848 frames_256_to_511_octets: 5893643 frames_512_to_1023_octets: 4639294 frames_1024_to_max_octets: 6454 excessive_collision: 0 multicast_frames_sent: 1878 broadcast_frames_sent: 876 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 5077 oversize: 14809 jabber: 0 rx_error_frame_received: 0 bad_crc: 846 collisions: 0 late_collision: 0 unicast_frames_received: 8258584 unicast_frames_sent: 2288726 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 1191929159 INFO asyncssh:logging.py:92 [conn=62, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=11] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=12] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=12] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 1191664156 bad_octets_received: 22685428 mac_trans_error: 0 broadcast_frames_received: 724 multicast_frames_received: 309 frames_64_octets: 1345 frames_65_to_127_octets: 22201 frames_128_to_255_octets: 423 frames_256_to_511_octets: 4989504 frames_512_to_1023_octets: 4586014 frames_1024_to_max_octets: 6454 excessive_collision: 1 multicast_frames_sent: 18230 broadcast_frames_sent: 10343 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 3316 oversize: 14809 jabber: 0 rx_error_frame_received: 0 bad_crc: 615 collisions: 16 late_collision: 0 unicast_frames_received: 2288734 unicast_frames_sent: 7286986 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2478681809 INFO asyncssh:logging.py:92 [conn=62, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=13] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=14] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=14] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 23513884 bad_octets_received: 22539298 mac_trans_error: 0 broadcast_frames_received: 132 multicast_frames_received: 309 frames_64_octets: 658 frames_65_to_127_octets: 21191 frames_128_to_255_octets: 406 frames_256_to_511_octets: 1225 frames_512_to_1023_octets: 254374 frames_1024_to_max_octets: 6454 excessive_collision: 0 multicast_frames_sent: 17696 broadcast_frames_sent: 5165 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14809 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7429 unicast_frames_sent: 253577 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 151751354 INFO asyncssh:logging.py:92 [conn=62, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=16] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=16] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 23301340 bad_octets_received: 22539298 mac_trans_error: 0 broadcast_frames_received: 123 multicast_frames_received: 309 frames_64_octets: 656 frames_65_to_127_octets: 21202 frames_128_to_255_octets: 408 frames_256_to_511_octets: 1210 frames_512_to_1023_octets: 253959 frames_1024_to_max_octets: 6454 excessive_collision: 0 multicast_frames_sent: 17384 broadcast_frames_sent: 5173 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14809 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7015 unicast_frames_sent: 253885 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 151748370 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=18] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=18] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 2740535372 bad_octets_received: 23600889 mac_trans_error: 0 broadcast_frames_received: 16669 multicast_frames_received: 32182 frames_64_octets: 1356 frames_65_to_127_octets: 56166 frames_128_to_255_octets: 2849 frames_256_to_511_octets: 5893643 frames_512_to_1023_octets: 4639294 frames_1024_to_max_octets: 6454 excessive_collision: 0 multicast_frames_sent: 1879 broadcast_frames_sent: 876 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13736 fragments: 5077 oversize: 14809 jabber: 0 rx_error_frame_received: 0 bad_crc: 846 collisions: 0 late_collision: 0 unicast_frames_received: 8258584 unicast_frames_sent: 2288726 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 1191929407 INFO asyncssh:logging.py:92 [conn=62, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=20] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=20] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 1191664156 bad_octets_received: 23482116 mac_trans_error: 0 broadcast_frames_received: 724 multicast_frames_received: 309 frames_64_octets: 1345 frames_65_to_127_octets: 22201 frames_128_to_255_octets: 424 frames_256_to_511_octets: 4989504 frames_512_to_1023_octets: 4586014 frames_1024_to_max_octets: 6454 excessive_collision: 1 multicast_frames_sent: 18231 broadcast_frames_sent: 10343 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13736 fragments: 3316 oversize: 14809 jabber: 0 rx_error_frame_received: 0 bad_crc: 615 collisions: 16 late_collision: 0 unicast_frames_received: 2288734 unicast_frames_sent: 7286986 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2478682057 INFO asyncssh:logging.py:92 [conn=62, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=22] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=22] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 23513884 bad_octets_received: 23335986 mac_trans_error: 0 broadcast_frames_received: 132 multicast_frames_received: 309 frames_64_octets: 658 frames_65_to_127_octets: 21191 frames_128_to_255_octets: 407 frames_256_to_511_octets: 1225 frames_512_to_1023_octets: 254374 frames_1024_to_max_octets: 6454 excessive_collision: 0 multicast_frames_sent: 17697 broadcast_frames_sent: 5165 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13736 fragments: 0 oversize: 14809 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7429 unicast_frames_sent: 253577 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 151751602 INFO asyncssh:logging.py:92 [conn=62, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=23] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=24] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=24] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 23301340 bad_octets_received: 23335986 mac_trans_error: 0 broadcast_frames_received: 123 multicast_frames_received: 309 frames_64_octets: 656 frames_65_to_127_octets: 21202 frames_128_to_255_octets: 409 frames_256_to_511_octets: 1210 frames_512_to_1023_octets: 253959 frames_1024_to_max_octets: 6454 excessive_collision: 0 multicast_frames_sent: 17385 broadcast_frames_sent: 5173 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13736 fragments: 0 oversize: 14809 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7015 unicast_frames_sent: 253885 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 151748618 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad66a7d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 13736 Rx 0 Frames Delta 13736 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 13736 Rx 0 Frames Delta 13736 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 13736 Rx 0 Frames Delta 13736 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 13736 Rx 0 Frames Delta 13736 Loss 100.000 INFO asyncssh:logging.py:92 [conn=62, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=25] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=62, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=26] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=62, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:60:27:23","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_packets_undersize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=62, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:36:12 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:36:12 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=62, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=62, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=62, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":113,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=62, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_remove_restore_from_vlan.py::test_bridging_remove_restore_from_vlan | 164.73 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_remove_restore_from_vlan">Starting testcase:test_bridging_remove_restore_from_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3132' coro=<test_bridging_remove_restore_from_vlan() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=62, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=63] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=63] Local address: 172.17.0.4, port 44512 INFO asyncssh:logging.py:92 [conn=63] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=63] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=63] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:36:13 UTC 2087 INFO asyncssh:logging.py:92 [conn=63, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=63, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=63, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=63, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=63, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=63, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=8] Command: bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=63, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp36 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=10] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp36 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master vlan 2 INFO asyncssh:logging.py:92 [conn=63, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=12] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master vlan 2 INFO asyncssh:logging.py:92 [conn=63, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=14] Command: bridge vlan delete dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=63, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=63, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","vlan":2,"flags":["offload"],"master":"br0","state":"static"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:fa:1b:dd","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=63, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=18] Command: bridge vlan add dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad54c460>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 203 Rx 203 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_remove_restore_from_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=63, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:38:56 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=63, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:38:57 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=63, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=63, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=63, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":114,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=63, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=26] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_robustness_macs.py::test_bridging_robustness_macs | 788.43 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_robustness_macs">Starting testcase:test_bridging_robustness_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3168' coro=<test_bridging_robustness_macs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py:43> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=63, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=64] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=64] Local address: 172.17.0.4, port 34418 INFO asyncssh:logging.py:92 [conn=64] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=64] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=64] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:38:57 UTC 2087 INFO asyncssh:logging.py:92 [conn=64, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=64, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=64, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=64, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=64, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=64, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=64, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6396f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 90804 Rx 90804 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=8] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=8] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6bd510>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 90418 Rx 90418 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 90418 Rx 90418 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=10] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6bc220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 88244 Rx 88244 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 88244 Rx 88244 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 88244 Rx 88244 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=12] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=12] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6bde40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 87711 Rx 87711 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 87711 Rx 87711 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 87711 Rx 87711 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 87711 Rx 87711 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=14] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=14] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad669150>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 87942 Rx 87942 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 87942 Rx 87942 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 87942 Rx 87942 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 87942 Rx 87942 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 87942 Rx 87942 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=16] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=16] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad54c2e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 88917 Rx 88917 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 88917 Rx 88917 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 88917 Rx 88917 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 88917 Rx 88917 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 88917 Rx 88917 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #5 Tx 88917 Rx 88917 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=18] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=18] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7c2bc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 88149 Rx 88149 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 88149 Rx 88149 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 88149 Rx 88149 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 88149 Rx 88149 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 88149 Rx 88149 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #5 Tx 88149 Rx 88149 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #6 Tx 88149 Rx 88149 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=20] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=20] Channel closed DEBUG infra1:Logger.py:156 16004 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_robustness_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=64, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:52:05 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=64, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:52:05 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=64, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=64, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=64, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":115,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=64, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=28] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_static_entries.py::test_bridging_static_entries | 197.65 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_static_entries">Starting testcase:test_bridging_static_entries from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3206' coro=<test_bridging_static_entries() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=64, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=65] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=65] Local address: 172.17.0.4, port 60754 INFO asyncssh:logging.py:92 [conn=65] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=65] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=65] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:52:06 UTC 2087 INFO asyncssh:logging.py:92 [conn=65, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=65, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=65, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=65, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=65, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=65, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=8] Command: bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=65, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=65, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=10] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=65, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad617070>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 212 Rx 212 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 212 Rx 212 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 212 Rx 212 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 212 Rx 212 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_static_entries from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=65, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:55:23 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=65, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:55:23 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=65, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=65, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=65, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":116,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=65, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_unreg_traffic_ipv6.py::test_bridging_unreg_traffic_ipv6 | 193.42 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_unreg_traffic_ipv6">Starting testcase:test_bridging_unreg_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3234' coro=<test_bridging_unreg_traffic_ipv6() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=65, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=66] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=66] Local address: 172.17.0.4, port 34652 INFO asyncssh:logging.py:92 [conn=66] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=66] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=66] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:55:23 UTC 2087 INFO asyncssh:logging.py:92 [conn=66, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=66, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=66, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=66, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=66, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=66, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=66, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1::2/64', 'count': 1, 'ip': '2001:1::2', 'gw': '2001:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3::2/64', 'count': 1, 'ip': '2001:3::2', 'gw': '2001:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7c3f10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 160170 Rx 160170 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 160170 Rx 160170 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 160170 Rx 160170 Loss 0.000 INFO asyncssh:logging.py:92 [conn=66, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=66, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=8] Command: bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=66, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7c3e80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 283397 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 283397 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 283397 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=66, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=66, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=10] Command: bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=66, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad7acb50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 286295 Rx 286295 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 286295 Rx 286295 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 286295 Rx 286295 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_unreg_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=66, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:58:35 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=66, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:58:35 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=66, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=66, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=66, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":117,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=66, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_acl_with_dyn_traps | 210.32 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3260' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_acl_with_dyn_traps">Starting testcase:test_devlink_interact_acl_with_dyn_traps from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=66, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=67] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=67] Local address: 172.17.0.4, port 55080 INFO asyncssh:logging.py:92 [conn=67] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=67] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=67] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:58:37 UTC 2087 INFO asyncssh:logging.py:92 [conn=67, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=67, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=67, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=67, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 13:58:37 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] policer rate: 3589Kbps, traffic frame size: 323, expected trap rate: 4000pps INFO asyncssh:logging.py:92 [conn=67, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=67, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=10] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=67, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=67, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=12] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=67, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=14] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 pref 6484 flower skip_sw src_mac 02:05:93:be:7b:fd dst_mac 02:16:3f:d7:6f:7a src_ip 108.16.185.5 dst_ip 22.80.141.134 ip_proto tcp src_port 47367 dst_port 48711 action trap action police rate 3589546bps burst 3590546 && tc filter add dev swp33 ingress protocol ipv4 pref 12968 flower skip_sw src_mac 02:05:93:be:7b:fd dst_mac 02:16:3f:d7:6f:7a src_ip 108.16.185.5 dst_ip 22.80.141.134 ip_proto tcp src_port 47367 dst_port 48711 action drop INFO asyncssh:logging.py:92 [conn=67, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=16] Command: tc filter add dev swp33 ingress protocol ipv4 pref 6484 flower skip_sw src_mac 02:05:93:be:7b:fd dst_mac 02:16:3f:d7:6f:7a src_ip 108.16.185.5 dst_ip 22.80.141.134 ip_proto tcp src_port 47367 dst_port 48711 action trap action police rate 3589546bps burst 3590546 && tc filter add dev swp33 ingress protocol ipv4 pref 12968 flower skip_sw src_mac 02:05:93:be:7b:fd dst_mac 02:16:3f:d7:6f:7a src_ip 108.16.185.5 dst_ip 22.80.141.134 ip_proto tcp src_port 47367 dst_port 48711 action drop INFO asyncssh:logging.py:92 [conn=67, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=67, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 6484 INFO asyncssh:logging.py:92 [conn=67, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=18] Command: tc -j filter show dev swp33 ingress pref 6484 INFO asyncssh:logging.py:92 [conn=67, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:16:3f:d7:6f:7a","src_mac":"02:05:93:be:7b:fd","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"22.80.141.134","src_ip":"108.16.185.5","dst_port":48711,"src_port":47367},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:16:3f:d7:6f:7a_src_mac_02:05:93:be:7b:fd_eth_type_ipv4_ip_proto_tcp_dst_ip_22.80.141.134_src_ip_108.16.185.5_dst_port_48711_src_port_47367 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=20] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=20] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=21] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=22] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=21] Channel closed DEBUG infra1:Logger.py:156 4036 INFO asyncssh:logging.py:92 [conn=67, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=22] Channel closed DEBUG infra1:Logger.py:156 4047 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad876aa0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:16:3f:d7:6f:7a_src_mac_02:05:93:be:7b:fd_eth_type_ipv4_ip_proto_tcp_dst_ip_22.80.141.134_src_ip_108.16.185.5_dst_port_48711_src_port_47367 Tx 8009687 Rx 88200 Frames Delta 7921487 Loss 98.899 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 6484 INFO asyncssh:logging.py:92 [conn=67, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=24] Command: tc filter delete dev swp33 ingress pref 6484 INFO asyncssh:logging.py:92 [conn=67, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 pref 6484 flower skip_sw src_mac 02:05:93:be:7b:fd dst_mac 02:16:3f:d7:6f:7a src_ip 108.16.185.5 dst_ip 22.80.141.134 ip_proto tcp src_port 47367 dst_port 48711 action trap action police rate 3589546bps burst 3590546 INFO asyncssh:logging.py:92 [conn=67, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=26] Command: tc filter add dev swp33 ingress protocol ipv4 pref 6484 flower skip_sw src_mac 02:05:93:be:7b:fd dst_mac 02:16:3f:d7:6f:7a src_ip 108.16.185.5 dst_ip 22.80.141.134 ip_proto tcp src_port 47367 dst_port 48711 action trap action police rate 3589546bps burst 3590546 INFO asyncssh:logging.py:92 [conn=67, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=28] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=28] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=29] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=30] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=29] Channel closed DEBUG infra1:Logger.py:156 4038 INFO asyncssh:logging.py:92 [conn=67, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=30] Channel closed DEBUG infra1:Logger.py:156 4046 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad66bca0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:16:3f:d7:6f:7a_src_mac_02:05:93:be:7b:fd_eth_type_ipv4_ip_proto_tcp_dst_ip_22.80.141.134_src_ip_108.16.185.5_dst_port_48711_src_port_47367 Tx 10198688 Rx 112256 Frames Delta 10086432 Loss 98.899 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 6484 INFO asyncssh:logging.py:92 [conn=67, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=32] Command: tc filter delete dev swp33 ingress pref 6484 INFO asyncssh:logging.py:92 [conn=67, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 pref 19452 flower skip_sw src_mac 02:05:93:be:7b:fd dst_mac 02:16:3f:d7:6f:7a src_ip 108.16.185.5 dst_ip 22.80.141.134 ip_proto tcp src_port 47367 dst_port 48711 action trap action police rate 3589546bps burst 3590546 INFO asyncssh:logging.py:92 [conn=67, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=34] Command: tc filter add dev swp33 ingress protocol ipv4 pref 19452 flower skip_sw src_mac 02:05:93:be:7b:fd dst_mac 02:16:3f:d7:6f:7a src_ip 108.16.185.5 dst_ip 22.80.141.134 ip_proto tcp src_port 47367 dst_port 48711 action trap action police rate 3589546bps burst 3590546 INFO asyncssh:logging.py:92 [conn=67, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=36] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=36] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=37] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=38] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=37] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=67, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=38] Channel closed DEBUG infra1:Logger.py:156 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6d00d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:16:3f:d7:6f:7a_src_mac_02:05:93:be:7b:fd_eth_type_ipv4_ip_proto_tcp_dst_ip_22.80.141.134_src_ip_108.16.185.5_dst_port_48711_src_port_47367 Tx 9468170 Rx 0 Frames Delta 9468170 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_acl_with_dyn_traps from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=40] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:02:02 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=41] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=42] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:02:06 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=67, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=67, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=44] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=67, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":118,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=67, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=46] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=47] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=48] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:02:07 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=67, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=67, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=50] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=67, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=67, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=67, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=52] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=67, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=67, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=54] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=67, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=64] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=66] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=68] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=70] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=67, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=72] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=67, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=74] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=74] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=67, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=76] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=67, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=67, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=78] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=67, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=67, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=80] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=67, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=81] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=82] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=82] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_dyn_traps_lag | 258.11 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3364' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_dyn_traps_lag">Starting testcase:test_devlink_interact_dyn_traps_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=68] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=68] Local address: 172.17.0.4, port 60634 INFO asyncssh:logging.py:92 [conn=68] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=68] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=68] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:02:07 UTC 2087 INFO asyncssh:logging.py:92 [conn=68, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=68, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=68, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=68, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:02:07 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] policer rate: 1603Kbps, traffic frame size: 1320, expected trap rate: 4000pps INFO asyncssh:logging.py:92 [conn=68, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link add name lag type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=68, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=10] Command: ip link add name lag type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=68, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master lag && ip link set dev swp34 master lag && ip link set dev swp35 master lag && ip link set dev swp36 master lag && ip link set dev lag up INFO asyncssh:logging.py:92 [conn=68, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=12] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master lag && ip link set dev swp34 master lag && ip link set dev swp35 master lag && ip link set dev swp36 master lag && ip link set dev lag up INFO asyncssh:logging.py:92 [conn=68, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress && tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=14] Command: tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress && tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:12:9d:27:91:6e dst_mac 02:b7:2a:85:6c:e4 src_ip 117.11.166.62 dst_ip 123.179.129.182 ip_proto tcp src_port 13800 dst_port 38109 action trap action police rate 1603339bps burst 1604339 && tc filter add dev swp34 ingress protocol 0x0800 flower skip_sw src_mac 02:12:9d:27:91:6e dst_mac 02:b7:2a:85:6c:e4 src_ip 117.11.166.62 dst_ip 123.179.129.182 ip_proto tcp src_port 13800 dst_port 38109 action trap action police rate 1603339bps burst 1604339 && tc filter add dev swp35 ingress protocol 0x0800 flower skip_sw src_mac 02:12:9d:27:91:6e dst_mac 02:b7:2a:85:6c:e4 src_ip 117.11.166.62 dst_ip 123.179.129.182 ip_proto tcp src_port 13800 dst_port 38109 action trap action police rate 1603339bps burst 1604339 && tc filter add dev swp36 ingress protocol 0x0800 flower skip_sw src_mac 02:12:9d:27:91:6e dst_mac 02:b7:2a:85:6c:e4 src_ip 117.11.166.62 dst_ip 123.179.129.182 ip_proto tcp src_port 13800 dst_port 38109 action trap action police rate 1603339bps burst 1604339 INFO asyncssh:logging.py:92 [conn=68, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=16] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:12:9d:27:91:6e dst_mac 02:b7:2a:85:6c:e4 src_ip 117.11.166.62 dst_ip 123.179.129.182 ip_proto tcp src_port 13800 dst_port 38109 action trap action police rate 1603339bps burst 1604339 && tc filter add dev swp34 ingress protocol 0x0800 flower skip_sw src_mac 02:12:9d:27:91:6e dst_mac 02:b7:2a:85:6c:e4 src_ip 117.11.166.62 dst_ip 123.179.129.182 ip_proto tcp src_port 13800 dst_port 38109 action trap action police rate 1603339bps burst 1604339 && tc filter add dev swp35 ingress protocol 0x0800 flower skip_sw src_mac 02:12:9d:27:91:6e dst_mac 02:b7:2a:85:6c:e4 src_ip 117.11.166.62 dst_ip 123.179.129.182 ip_proto tcp src_port 13800 dst_port 38109 action trap action police rate 1603339bps burst 1604339 && tc filter add dev swp36 ingress protocol 0x0800 flower skip_sw src_mac 02:12:9d:27:91:6e dst_mac 02:b7:2a:85:6c:e4 src_ip 117.11.166.62 dst_ip 123.179.129.182 ip_proto tcp src_port 13800 dst_port 38109 action trap action police rate 1603339bps burst 1604339 INFO asyncssh:logging.py:92 [conn=68, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=68, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=18] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:b7:2a:85:6c:e4","src_mac":"02:12:9d:27:91:6e","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"123.179.129.182","src_ip":"117.11.166.62","dst_port":38109,"src_port":13800},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:b7:2a:85:6c:e4_src_mac_02:12:9d:27:91:6e_eth_type_ipv4_ip_proto_tcp_dst_ip_123.179.129.182_src_ip_117.11.166.62_dst_port_38109_src_port_13800 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_dst_mac_02:b7:2a:85:6c:e4_src_mac_02:12:9d:27:91:6e_eth_type_ipv4_ip_proto_tcp_dst_ip_123.179.129.182_src_ip_117.11.166.62_dst_port_38109_src_port_13800 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp35_dst_mac_02:b7:2a:85:6c:e4_src_mac_02:12:9d:27:91:6e_eth_type_ipv4_ip_proto_tcp_dst_ip_123.179.129.182_src_ip_117.11.166.62_dst_port_38109_src_port_13800 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp36_dst_mac_02:b7:2a:85:6c:e4_src_mac_02:12:9d:27:91:6e_eth_type_ipv4_ip_proto_tcp_dst_ip_123.179.129.182_src_ip_117.11.166.62_dst_port_38109_src_port_13800 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=68, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=20] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=20] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=21] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=22] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=21] Channel closed DEBUG infra1:Logger.py:156 4033 INFO asyncssh:logging.py:92 [conn=68, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=22] Channel closed DEBUG infra1:Logger.py:156 4044 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_dyn_traps_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:06:18 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:06:24 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=68, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=68, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=68, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=28] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=68, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:06:24 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=68, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=68, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=68, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","options":{}},{"kind":"noqueue","handle":"0:","dev":"lag","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=68, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=68, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=68, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=68, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=68, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=68, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=54] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=68, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=56] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=68, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=58] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=68, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=68, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=60] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=68, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=68, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=68, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=68, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=64] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=68, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=68, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=66] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=68, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=68] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lag root INFO asyncssh:logging.py:92 [conn=68, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=70] Command: tc qdisc delete dev lag root INFO asyncssh:logging.py:92 [conn=68, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=71] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=73] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=74] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:06:25 UTC 2087 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=68, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=68, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=76] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=68, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=76] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:9d:56:71:01:29","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-rr","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:58","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:59","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":3,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":4,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":119,"ifname":"lag","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=68, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=78] Command: ip link delete bond0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=78] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip link delete lag INFO asyncssh:logging.py:92 [conn=68, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=80] Command: ip link delete lag INFO asyncssh:logging.py:92 [conn=68, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=80] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_static_traps_disabled | 155.26 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3463' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_static_traps_disabled">Starting testcase:test_devlink_interact_static_traps_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=69] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=69] Local address: 172.17.0.4, port 34672 INFO asyncssh:logging.py:92 [conn=69] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=69] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=69] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:06:25 UTC 2087 INFO asyncssh:logging.py:92 [conn=69, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=69, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=2] Command: cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=69, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=2] Channel closed DEBUG infra1:Logger.py:156 all_unspecified_cpu_opcodes: 100 (pps) sct_acl_trap_queue_0: 4000 (pps) sct_acl_trap_queue_1: 4000 (pps) sct_acl_trap_queue_2: 4000 (pps) sct_acl_trap_queue_3: 4000 (pps) sct_acl_trap_queue_4: 4000 (pps) sct_acl_trap_queue_5: 4000 (pps) sct_acl_trap_queue_6: 4000 (pps) sct_acl_trap_queue_7: 4000 (pps) sct_arp_intervention: 100 (pps) sct_arp_to_me: 300 (pps) sct_bgp: 1000 (pps) sct_bgp_all_routers_mc: 100 (pps) sct_cdp: 200 (pps) sct_default_route: 400 (pps) sct_dhcp: 100 (pps) sct_icmp: 100 (pps) sct_igmp: 400 (pps) sct_ip_bc: 100 (pps) sct_ip_to_me: 10000 (pps) sct_isis: 1000 (pps) sct_lacp: 200 (pps) sct_lldp: 200 (pps) sct_nat: 10000 (pps) sct_ospf: 1000 (pps) sct_special_ip4_icmp_redirect: 100 (pps) sct_special_ip4_mtu_exceed: 100 (pps) sct_special_ip4_options_in_ip_hdr: 100 (pps) sct_special_ip4_zero_ttl: 100 (pps) sct_ssh: 1000 (pps) sct_stp: 200 (pps) sct_telnet: 200 (pps) sct_vrrp: 200 (pps) INFO asyncssh:logging.py:92 [conn=69, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=3] Channel closed DEBUG infra1:Logger.py:156 for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=69, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=4] Command: for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=69, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:06:26 UTC 2087 INFO asyncssh:logging.py:92 [conn=69, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=7] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=8] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=69, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=9] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=69, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=10] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=69, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=12] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=12] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:06:26 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] policer rate: 2500Kbps, traffic frame size: 349, expected trap rate: 7166pps INFO asyncssh:logging.py:92 [conn=69, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=69, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=16] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=69, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=18] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:3d:12:a4:e4:f8 dst_mac 02:40:d6:2c:87:0e src_ip 14.188.171.143 dst_ip 51.17.6.235 ip_proto tcp src_port 6766 dst_port 24880 action trap action police rate 2500934bps burst 2501934 INFO asyncssh:logging.py:92 [conn=69, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=20] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:3d:12:a4:e4:f8 dst_mac 02:40:d6:2c:87:0e src_ip 14.188.171.143 dst_ip 51.17.6.235 ip_proto tcp src_port 6766 dst_port 24880 action trap action police rate 2500934bps burst 2501934 INFO asyncssh:logging.py:92 [conn=69, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=69, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=22] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:40:d6:2c:87:0e","src_mac":"02:3d:12:a4:e4:f8","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"51.17.6.235","src_ip":"14.188.171.143","dst_port":24880,"src_port":6766},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:40:d6:2c:87:0e_src_mac_02:3d:12:a4:e4:f8_eth_type_ipv4_ip_proto_tcp_dst_ip_51.17.6.235_src_ip_14.188.171.143_dst_port_24880_src_port_6766 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=69, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=69, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=24] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=69, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=24] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=69, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=25] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=69, chan=26] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=69, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=25] Channel closed DEBUG infra1:Logger.py:156 7207 INFO asyncssh:logging.py:92 [conn=69, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=26] Channel closed DEBUG infra1:Logger.py:156 7225 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_static_traps_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:08:55 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=69, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:09:00 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=69, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=69, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=69, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=32] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=69, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:09:00 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=69, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=69, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=36] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=69, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=69, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=69, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=38] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=69, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=69, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=40] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=69, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=69, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=58] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=69, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=60] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=69, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=62] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=69, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=69, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=64] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=69, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=69, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=66] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=69, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=67] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=68] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=69] Channel closed DEBUG infra1:Logger.py:156 echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=69, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=70] Command: echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=69, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=70] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_sct_lag | 314.78 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3554' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_sct_lag">Starting testcase:test_devlink_interact_sct_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=70] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=70] Local address: 172.17.0.4, port 60778 INFO asyncssh:logging.py:92 [conn=70] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=70] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=70] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:09:01 UTC 2087 INFO asyncssh:logging.py:92 [conn=70, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=70, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=70, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=70, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:09:01 UTC 2087 INFO asyncssh:logging.py:92 [conn=70, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=70, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=10] Command: ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=70, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=70, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=12] Command: ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=70, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=70, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=14] Command: ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=70, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=70, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=16] Command: ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=70, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=18] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=70, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=20] Command: bridge -j vlan show dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev bond1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=70, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show bond1 INFO asyncssh:logging.py:92 [conn=70, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=22] Command: ip -j address show bond1 INFO asyncssh:logging.py:92 [conn=70, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":120,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"bond1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show bond1 ', 'rc': 0, 'result': '[{"ifindex":120,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"bond1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custom_stream_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=70, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=29] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=70, chan=30] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=70, chan=31] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=70, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=26] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=29] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=70, chan=33] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=70, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=28] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=30] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=70, chan=31] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=70, chan=32] Command: get_cpu_traps_rate_code_avg 28 sw DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=70, chan=35] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=70, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=33] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=70, chan=34] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=70, chan=35] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=70, chan=36] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=70, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=30] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=70, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=31] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=70, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=32] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=70, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=35] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=70, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=34] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=70, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=36] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=33] Channel closed DEBUG infra1:Logger.py:156 306 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 306 expected 300 for stat_code 188 DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=70, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=44] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=70, chan=45] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=70, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=43] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=70, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=42] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=40] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=41] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=70, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=44] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=70, chan=49] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=70, chan=50] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=70, chan=51] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=70, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=45] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=70, chan=46] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=70, chan=47] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=70, chan=48] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=70, chan=49] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=70, chan=50] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=70, chan=51] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=70, chan=52] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=70, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=45] Channel closed DEBUG infra1:Logger.py:156 1002 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1002 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=70, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=48] Channel closed DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=70, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=47] Channel closed DEBUG infra1:Logger.py:156 1013 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1013 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=70, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=49] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=70, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=46] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=70, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=52] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=70, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=51] Received channel close DEBUG infra1:Logger.py:156 10115 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10115 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=70, chan=51] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=70, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=53] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=70, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=57] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=70, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=56] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=60] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=70, chan=58] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=57] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=70, chan=62] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=70, chan=63] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=70, chan=64] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=70, chan=65] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=61] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=70, chan=62] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=70, chan=63] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=70, chan=64] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=70, chan=65] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=70, chan=66] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=60] Channel closed DEBUG infra1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 203 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=70, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=61] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=70, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=63] Channel closed DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=70, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=62] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=70, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=66] Received channel close DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=70, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=64] Received channel close DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=64] Channel closed DEBUG infra1:Logger.py:156 306 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 306 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=70, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=67] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=70, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=75] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=70, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=69] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=70] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=74] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=70, chan=76] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=70, chan=77] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=70, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=72] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=73] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=74] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=79] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=80] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=70, chan=81] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=70, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=76] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=70, chan=77] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=70, chan=78] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=70, chan=79] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=80] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=81] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=70, chan=82] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=70, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=75] Channel closed DEBUG infra1:Logger.py:156 1006 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1006 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=70, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=76] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=70, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=79] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=81] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=70, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=77] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=82] Received channel close DEBUG infra1:Logger.py:156 1028 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1028 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=70, chan=82] Channel closed DEBUG infra1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 203 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=70, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=80] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=78] Received channel close DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=78] Channel closed DEBUG infra1:Logger.py:156 10242 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10242 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=70, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=84] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9100 flower skip_sw src_mac 02:9b:2e:d6:19:bc dst_mac 02:bf:0c:ff:d0:4d action trap INFO asyncssh:logging.py:92 [conn=70, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=86] Command: tc filter add dev swp33 ingress protocol 0x9100 flower skip_sw src_mac 02:9b:2e:d6:19:bc dst_mac 02:bf:0c:ff:d0:4d action trap INFO asyncssh:logging.py:92 [conn=70, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=87] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=88] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=70, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=88] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=70, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=89] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=70, chan=90] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=70, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=89] Channel closed DEBUG infra1:Logger.py:156 4035 INFO asyncssh:logging.py:92 [conn=70, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=90] Channel closed DEBUG infra1:Logger.py:156 4046 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_sct_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=91] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=92] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:14:09 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=70, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=93] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=94] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=94] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:14:14 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=70, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=95] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=70, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=96] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=70, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=96] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=70, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=97] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=98] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=98] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:14:14 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=70, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=70, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=100] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=70, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=100] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bond1","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=70, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=70, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=102] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=70, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=70, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=104] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=70, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=70, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=122] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=70, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=124] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=124] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=70, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=126] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=70, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=70, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=70, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=70, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=130] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=70, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bond1 root INFO asyncssh:logging.py:92 [conn=70, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=132] Command: tc qdisc delete dev bond1 root INFO asyncssh:logging.py:92 [conn=70, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=133] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=134] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=134] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=135] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=136] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=136] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:14:15 UTC 2087 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=70, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=137] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=70, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=138] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=70, chan=138] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=138] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":120,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=70, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=139] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=70, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=140] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=70, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=140] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=141] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=142] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=142] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:14:15 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=70, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=143] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=70, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=144] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=70, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=144] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=145] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=70, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=146] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=70, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=146] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=70, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=147] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=70, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=148] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=70, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=148] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[1] | 304.91 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3753' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[1]">Starting testcase:test_devlink_sct_basic_ports[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=71] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=71] Local address: 172.17.0.4, port 41518 INFO asyncssh:logging.py:92 [conn=71] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=71] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=71] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:14:15 UTC 2087 INFO asyncssh:logging.py:92 [conn=71, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=71, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=71, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=71, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:14:16 UTC 2087 INFO asyncssh:logging.py:92 [conn=71, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=71, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=14] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=14] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=71, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=71, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=16] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=71, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=71, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=18] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=23] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=71, chan=24] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=71, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=22] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=71, chan=26] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=71, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=21] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=71, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=23] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=71, chan=29] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=71, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=24] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=71, chan=25] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=71, chan=26] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=71, chan=27] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=71, chan=28] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=71, chan=29] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=71, chan=30] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=71, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=24] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=71, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=25] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=71, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=26] Received channel close DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=71, chan=26] Channel closed DEBUG infra1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 201 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=71, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=29] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=28] Received channel close DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=71, chan=28] Channel closed DEBUG infra1:Logger.py:156 305 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 305 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=71, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=30] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=71, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=32] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=34] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=37] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=71, chan=39] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=71, chan=40] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=71, chan=41] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=71, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=36] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=38] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=71, chan=43] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=71, chan=44] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=71, chan=45] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=71, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=39] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=71, chan=40] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=71, chan=41] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=71, chan=42] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=71, chan=43] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=71, chan=44] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=71, chan=45] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=71, chan=46] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=71, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=39] Channel closed DEBUG infra1:Logger.py:156 1016 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1016 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=71, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=40] Channel closed DEBUG infra1:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 206 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=71, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=44] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=71, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=45] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=42] Received channel close DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=71, chan=42] Channel closed DEBUG infra1:Logger.py:156 10112 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10112 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=71, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=43] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=71, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=41] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=46] Received channel close DEBUG infra1:Logger.py:156 1017 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1017 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=71, chan=46] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=71, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=48] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=71, chan=54] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=71, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=54] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=71, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=53] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=71, chan=56] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=71, chan=57] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=71, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=55] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=71, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=53] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=59] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=71, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=56] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=71, chan=57] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=71, chan=58] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=71, chan=59] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=60] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=71, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=54] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=71, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=56] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=55] Received channel close DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=71, chan=55] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=71, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=57] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=71, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=60] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=71, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=58] Received channel close DEBUG infra1:Logger.py:156 104 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 104 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=58] Channel closed DEBUG infra1:Logger.py:156 313 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 313 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=71, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=61] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=62] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=66] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=71, chan=69] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=71, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=64] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=63] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=68] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=71, chan=71] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=71, chan=72] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=73] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=69] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=71, chan=70] Command: get_devlink_cpu_traps_rate_avg telnet DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=71, chan=75] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=71, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=71] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=71, chan=72] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=71, chan=73] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=74] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=75] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=71, chan=76] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=71, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=69] Channel closed DEBUG infra1:Logger.py:156 1014 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1014 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=71, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=70] Channel closed DEBUG infra1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 201 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=71, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=76] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=71, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=72] Channel closed DEBUG infra1:Logger.py:156 1029 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1029 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=71, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=75] Received channel close DEBUG infra1:Logger.py:156 10222 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10222 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=71, chan=74] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=73] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=75] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code ip_bc_mac DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for trap_code mac_to_me DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=71, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=78] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=78] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9300 flower skip_sw src_mac 02:3e:20:2c:87:0c dst_mac 02:0f:07:c5:25:c0 action trap INFO asyncssh:logging.py:92 [conn=71, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=80] Command: tc filter add dev swp33 ingress protocol 0x9300 flower skip_sw src_mac 02:3e:20:2c:87:0c dst_mac 02:0f:07:c5:25:c0 action trap INFO asyncssh:logging.py:92 [conn=71, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=80] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=81] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=82] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=71, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=82] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=71, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=83] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=71, chan=84] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=71, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=83] Channel closed DEBUG infra1:Logger.py:156 4038 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4038 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=71, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=84] Channel closed DEBUG infra1:Logger.py:156 4054 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4054 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=85] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=86] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=86] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:19:19 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=71, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=71, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=88] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=71, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=88] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=71, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=90] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=71, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=90] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=71, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=91] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=92] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=92] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=93] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=94] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=94] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:19:20 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=71, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=71, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=96] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=71, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=96] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=71, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=71, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=98] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=71, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=71, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=100] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=71, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=102] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=104] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=71, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=118] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=71, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=120] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=120] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=71, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=122] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=71, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=71, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=124] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=71, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=71, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=126] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=71, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=127] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=128] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=128] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[2] | 380.01 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3926' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[2]">Starting testcase:test_devlink_sct_basic_ports[2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=72] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=72] Local address: 172.17.0.4, port 35698 INFO asyncssh:logging.py:92 [conn=72] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=72] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=72] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:19:20 UTC 2087 INFO asyncssh:logging.py:92 [conn=72, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=72, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=72, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=72, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:19:20 UTC 2087 INFO asyncssh:logging.py:92 [conn=72, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=14] Command: ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_192.168.2.5/24', 'count': 1, 'ip': '192.168.2.5', 'gw': '192.168.2.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=72, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=72, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=72, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=72, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=72, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_192.168.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=72, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=26] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=29] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=72, chan=30] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=72, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=28] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=72, chan=32] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=72, chan=33] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=72, chan=34] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=72, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=29] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=72, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=30] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=72, chan=31] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=72, chan=32] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=72, chan=33] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=72, chan=34] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=72, chan=35] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=72, chan=36] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=72, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=31] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=72, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=30] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=72, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=32] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=72, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=36] Received channel close DEBUG infra1:Logger.py:156 308 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 308 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=72, chan=34] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=36] Channel closed DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for stat_code 5 DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 33 DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=72, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=40] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=44] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=72, chan=45] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=72, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=41] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=42] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=72, chan=47] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=72, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=43] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=72, chan=49] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=72, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=44] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=72, chan=51] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=72, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=45] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=72, chan=46] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=72, chan=47] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=72, chan=48] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=72, chan=49] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=72, chan=50] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=72, chan=51] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=72, chan=52] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=72, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=46] Channel closed DEBUG infra1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 201 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=72, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=47] Channel closed DEBUG infra1:Logger.py:156 10117 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10117 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=72, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=50] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=72, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=51] Channel closed DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=72, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=45] Channel closed DEBUG infra1:Logger.py:156 1009 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1009 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=72, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=48] Channel closed DEBUG infra1:Logger.py:156 1009 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1009 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=72, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=52] Received channel close DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=72, chan=52] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=72, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=55] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=72, chan=60] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=72, chan=61] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=72, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=56] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=58] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=72, chan=63] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=64] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=72, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=59] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=72, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=60] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=72, chan=61] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=72, chan=62] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=72, chan=63] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=72, chan=64] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=65] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=72, chan=66] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=72, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=60] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=72, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=62] Channel closed DEBUG infra1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 203 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=72, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=63] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=72, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=65] Channel closed DEBUG infra1:Logger.py:156 305 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 305 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=72, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=64] Received channel close DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=72, chan=61] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=64] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code lacp DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=69] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=70] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=74] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=72, chan=75] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=72, chan=76] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=72, chan=77] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=72, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=72] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=73] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=74] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=79] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=80] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=72, chan=81] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=72, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=75] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=72, chan=76] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=72, chan=77] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=72, chan=78] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=72, chan=79] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=80] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=81] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=72, chan=82] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=72, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=76] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=72, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=82] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=72, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=79] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=75] Channel closed DEBUG infra1:Logger.py:156 1010 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1010 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=72, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=80] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=77] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=78] Received channel close DEBUG infra1:Logger.py:156 1010 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1010 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=72, chan=78] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=81] Received channel close DEBUG infra1:Logger.py:156 10216 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10216 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=72, chan=81] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=72, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=84] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:af:9f:af:db:e9 vlan_id 1487 action trap INFO asyncssh:logging.py:92 [conn=72, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=86] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:af:9f:af:db:e9 vlan_id 1487 action trap INFO asyncssh:logging.py:92 [conn=72, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=88] Command: tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=88] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp34 ingress protocol 802.1q flower skip_sw dst_mac 02:e0:0b:ce:71:1d vlan_id 3373 action trap INFO asyncssh:logging.py:92 [conn=72, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=90] Command: tc filter add dev swp34 ingress protocol 802.1q flower skip_sw dst_mac 02:e0:0b:ce:71:1d vlan_id 3373 action trap INFO asyncssh:logging.py:92 [conn=72, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=90] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=91] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=92] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=72, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=92] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=72, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=93] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=72, chan=94] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=72, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=93] Channel closed DEBUG infra1:Logger.py:156 4034 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4034 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=72, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=94] Channel closed DEBUG infra1:Logger.py:156 4050 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4050 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=95] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=96] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=96] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:25:39 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=72, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=97] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=72, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=98] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=72, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=98] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=99] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=72, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=100] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=72, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=100] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=72, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=101] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=102] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=102] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=103] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=104] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=104] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:25:40 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=72, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=72, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=106] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=72, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=106] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=72, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=72, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=108] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=72, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=72, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=110] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=72, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=124] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=126] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=72, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=128] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=72, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=130] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=130] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=72, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=132] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=72, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=134] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=134] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=72, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=72, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=72, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=72, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=139] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=140] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=140] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[4] | 579.36 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4111' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[4]">Starting testcase:test_devlink_sct_basic_ports[4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=73] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=73] Local address: 172.17.0.4, port 58418 INFO asyncssh:logging.py:92 [conn=73] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=73] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=73] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:25:40 UTC 2087 INFO asyncssh:logging.py:92 [conn=73, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=73, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=73, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=73, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:25:41 UTC 2087 INFO asyncssh:logging.py:92 [conn=73, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=14] Command: ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.3.4/24 broadcast 192.168.3.255 dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=16] Command: ip address add 192.168.3.4/24 broadcast 192.168.3.255 dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.4.4/24 broadcast 192.168.4.255 dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=18] Command: ip address add 192.168.4.4/24 broadcast 192.168.4.255 dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_192.168.2.5/24', 'count': 1, 'ip': '192.168.2.5', 'gw': '192.168.2.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_192.168.3.5/24', 'count': 1, 'ip': '192.168.3.5', 'gw': '192.168.3.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_192.168.4.5/24', 'count': 1, 'ip': '192.168.4.5', 'gw': '192.168.4.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=73, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=20] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=73, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=22] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=73, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=24] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=24] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=73, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=26] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=73, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=27] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=28] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=28] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=73, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=30] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=73, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.3.4","prefixlen":24,"broadcast":"192.168.3.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.3.4","prefixlen":24,"broadcast":"192.168.3.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=31] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=32] Command: bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=32] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp36 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=73, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=34] Command: ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=73, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.4.4","prefixlen":24,"broadcast":"192.168.4.255","scope":"global","label":"swp36","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp36 ', 'rc': 0, 'result': '[{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.4.4","prefixlen":24,"broadcast":"192.168.4.255","scope":"global","label":"swp36","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_192.168.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_192.168.3.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_192.168.4.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=73, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=36] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=41] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=73, chan=42] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=73, chan=43] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=73, chan=44] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=73, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=40] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=41] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=73, chan=46] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=73, chan=47] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=73, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=42] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=73, chan=43] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=73, chan=44] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=73, chan=45] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=73, chan=46] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=73, chan=47] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=73, chan=48] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=73, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=42] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=73, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=43] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=73, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=46] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=45] Received channel close DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=73, chan=45] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=73, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=48] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=47] Received channel close DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=73, chan=44] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=47] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for stat_code 28 DEBUG infra1:Logger.py:156 307 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 307 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=73, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=53] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=73, chan=57] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=73, chan=58] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=73, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=55] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=73, chan=60] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=73, chan=61] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=73, chan=62] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=73, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=56] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=73, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=57] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=73, chan=58] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=73, chan=59] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=73, chan=60] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=73, chan=61] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=73, chan=62] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=73, chan=63] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=73, chan=64] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=73, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=57] Channel closed DEBUG infra1:Logger.py:156 1028 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1028 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=73, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=60] Channel closed DEBUG infra1:Logger.py:156 10108 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10108 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=73, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=63] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=73, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=64] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=73, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=58] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=59] Received channel close DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=73, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=61] Received channel close DEBUG infra1:Logger.py:156 1030 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1030 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=73, chan=62] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=61] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 19 DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=73, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=69] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=73, chan=72] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=73, chan=73] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=73, chan=74] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=73, chan=75] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=70] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=73, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=71] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=73, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=72] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=73, chan=73] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=73, chan=74] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=73, chan=75] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=73, chan=76] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=77] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=73, chan=78] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=73, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=74] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=72] Received channel close DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=73, chan=72] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=73, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=73] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=73, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=77] Channel closed DEBUG infra1:Logger.py:156 304 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 304 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=73, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=75] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=73, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=76] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=78] Received channel close DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=78] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=73, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=80] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=84] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=86] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=80] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=81] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=84] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=73, chan=87] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=73, chan=88] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=73, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=85] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=84] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=86] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=73, chan=90] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=82] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=83] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=87] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=73, chan=88] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=73, chan=89] Command: get_devlink_cpu_traps_rate_avg ssh DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=73, chan=92] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=73, chan=93] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=90] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=73, chan=91] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=92] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=73, chan=93] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=73, chan=94] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=87] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=73, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=88] Channel closed DEBUG infra1:Logger.py:156 1020 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1020 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=73, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=90] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=92] Received channel close DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=73, chan=92] Channel closed DEBUG infra1:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 206 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=73, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=91] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=94] Received channel close DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=89] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=94] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=93] Received channel close DEBUG infra1:Logger.py:156 1022 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1022 expected 1000 for trap_code ssh DEBUG infra1:Logger.py:156 104 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 104 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=93] Channel closed DEBUG infra1:Logger.py:156 10260 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10260 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=73, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=96] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=96] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw dst_mac 02:64:05:9c:29:7e dst_ip 47.100.128.189 action trap INFO asyncssh:logging.py:92 [conn=73, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=98] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw dst_mac 02:64:05:9c:29:7e dst_ip 47.100.128.189 action trap INFO asyncssh:logging.py:92 [conn=73, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=98] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=100] Command: tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=100] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp34 ingress protocol ip flower skip_sw src_mac 02:ca:fb:ad:64:9a dst_ip 28.184.113.60 action trap INFO asyncssh:logging.py:92 [conn=73, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=102] Command: tc filter add dev swp34 ingress protocol ip flower skip_sw src_mac 02:ca:fb:ad:64:9a dst_ip 28.184.113.60 action trap INFO asyncssh:logging.py:92 [conn=73, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=102] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=104] Command: tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=104] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp35 ingress protocol 0x0800 flower skip_sw src_mac 02:45:db:96:43:99 src_ip 105.180.224.162 action trap INFO asyncssh:logging.py:92 [conn=73, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=106] Command: tc filter add dev swp35 ingress protocol 0x0800 flower skip_sw src_mac 02:45:db:96:43:99 src_ip 105.180.224.162 action trap INFO asyncssh:logging.py:92 [conn=73, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=106] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=108] Command: tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=108] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp36 ingress protocol ipv4 flower skip_sw dst_mac 02:48:9f:1b:66:5d dst_ip 25.224.12.99 action trap INFO asyncssh:logging.py:92 [conn=73, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=110] Command: tc filter add dev swp36 ingress protocol ipv4 flower skip_sw dst_mac 02:48:9f:1b:66:5d dst_ip 25.224.12.99 action trap INFO asyncssh:logging.py:92 [conn=73, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=110] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=112] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=111] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=112] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=73, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=112] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=73, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=113] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=73, chan=114] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=73, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=113] Channel closed DEBUG infra1:Logger.py:156 4035 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4035 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=73, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=114] Channel closed DEBUG infra1:Logger.py:156 4048 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4048 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=115] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=116] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=116] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:35:18 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=73, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=117] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=73, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=118] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=73, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=118] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=119] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=73, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=120] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=73, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=120] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=73, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=121] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=122] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=122] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=123] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=124] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=124] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:35:19 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=73, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=73, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=126] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=73, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=126] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","options":{}}] INFO asyncssh:logging.py:92 [conn=73, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=73, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=128] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=73, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=73, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=130] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=73, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=132] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=134] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=136] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=138] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=140] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=142] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=144] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=146] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=73, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=148] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=73, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=150] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=150] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=73, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=152] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=73, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=154] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=154] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=73, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=156] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=73, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=158] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=158] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=73, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=160] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=73, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=162] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=162] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=163] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=164] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=164] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_static_trap_disable | 1350.81 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4320' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_static_trap_disable">Starting testcase:test_devlink_static_trap_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=74] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=74] Local address: 172.17.0.4, port 43276 INFO asyncssh:logging.py:92 [conn=74] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=74] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=74] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:35:20 UTC 2087 INFO asyncssh:logging.py:92 [conn=74, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=74, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=2] Command: cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=74, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=2] Channel closed DEBUG infra1:Logger.py:156 all_unspecified_cpu_opcodes: 100 (pps) sct_acl_trap_queue_0: 4000 (pps) sct_acl_trap_queue_1: 4000 (pps) sct_acl_trap_queue_2: 4000 (pps) sct_acl_trap_queue_3: 4000 (pps) sct_acl_trap_queue_4: 4000 (pps) sct_acl_trap_queue_5: 4000 (pps) sct_acl_trap_queue_6: 4000 (pps) sct_acl_trap_queue_7: 4000 (pps) sct_arp_intervention: 100 (pps) sct_arp_to_me: 300 (pps) sct_bgp: 1000 (pps) sct_bgp_all_routers_mc: 100 (pps) sct_cdp: 200 (pps) sct_default_route: 400 (pps) sct_dhcp: 100 (pps) sct_icmp: 100 (pps) sct_igmp: 400 (pps) sct_ip_bc: 100 (pps) sct_ip_to_me: 10000 (pps) sct_isis: 1000 (pps) sct_lacp: 200 (pps) sct_lldp: 200 (pps) sct_nat: 10000 (pps) sct_ospf: 1000 (pps) sct_special_ip4_icmp_redirect: 100 (pps) sct_special_ip4_mtu_exceed: 100 (pps) sct_special_ip4_options_in_ip_hdr: 100 (pps) sct_special_ip4_zero_ttl: 100 (pps) sct_ssh: 1000 (pps) sct_stp: 200 (pps) sct_telnet: 200 (pps) sct_vrrp: 200 (pps) INFO asyncssh:logging.py:92 [conn=74, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=3] Channel closed DEBUG infra1:Logger.py:156 for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=74, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=4] Command: for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=74, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:35:20 UTC 2087 INFO asyncssh:logging.py:92 [conn=74, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=7] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=8] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=74, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=9] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=74, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=10] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=74, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=12] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=12] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:35:20 UTC 2087 INFO asyncssh:logging.py:92 [conn=74, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=18] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=74, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=20] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=74, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=74, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=22] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=74, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=24] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=74, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=24] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=74, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=25] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=74, chan=26] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=74, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=25] Channel closed DEBUG infra1:Logger.py:156 66061 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66061 expected 65000 for stat_code 26 INFO asyncssh:logging.py:92 [conn=74, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=26] Channel closed DEBUG infra1:Logger.py:156 66219 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66219 expected 65000 for trap_code stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=28] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=74, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=28] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=74, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=29] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=74, chan=30] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=74, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=29] Channel closed DEBUG infra1:Logger.py:156 66055 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66055 expected 65000 for stat_code 27 INFO asyncssh:logging.py:92 [conn=74, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=30] Channel closed DEBUG infra1:Logger.py:156 66298 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66298 expected 65000 for trap_code lacp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=32] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=74, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=32] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=74, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=33] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=74, chan=34] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=74, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=33] Channel closed DEBUG infra1:Logger.py:156 66805 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66805 expected 65000 for stat_code 28 INFO asyncssh:logging.py:92 [conn=74, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=34] Channel closed DEBUG infra1:Logger.py:156 67023 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 67023 expected 65000 for trap_code lldp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=36] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=74, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=36] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=74, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=37] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=74, chan=38] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=74, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=37] Channel closed DEBUG infra1:Logger.py:156 66090 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66090 expected 65000 for stat_code 33 INFO asyncssh:logging.py:92 [conn=74, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=38] Channel closed DEBUG infra1:Logger.py:156 66290 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66290 expected 65000 for trap_code dhcp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=40] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=74, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=40] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=74, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=41] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=74, chan=42] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=74, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=41] Channel closed DEBUG infra1:Logger.py:156 66073 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66073 expected 65000 for stat_code 5 INFO asyncssh:logging.py:92 [conn=74, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=42] Channel closed DEBUG infra1:Logger.py:156 66307 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66307 expected 65000 for trap_code arp_bc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=44] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=74, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=44] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=74, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=45] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=74, chan=46] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=74, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=45] Channel closed DEBUG infra1:Logger.py:156 66063 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66063 expected 65000 for stat_code 188 INFO asyncssh:logging.py:92 [conn=74, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=46] Channel closed DEBUG infra1:Logger.py:156 66220 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66220 expected 65000 for trap_code arp_response INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=48] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=74, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=48] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=74, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=49] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=74, chan=50] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=74, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=49] Channel closed DEBUG infra1:Logger.py:156 66042 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66042 expected 65000 for stat_code 29 INFO asyncssh:logging.py:92 [conn=74, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=50] Channel closed DEBUG infra1:Logger.py:156 66220 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66220 expected 65000 for trap_code router_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=52] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=74, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=52] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=74, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=53] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=74, chan=54] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=74, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=53] Channel closed DEBUG infra1:Logger.py:156 66062 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66062 expected 65000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=74, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=54] Channel closed DEBUG infra1:Logger.py:156 66336 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66336 expected 65000 for trap_code ssh INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=56] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=74, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=56] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=74, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=57] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=74, chan=58] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=74, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=57] Channel closed DEBUG infra1:Logger.py:156 66099 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66099 expected 65000 for stat_code 208 INFO asyncssh:logging.py:92 [conn=74, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=58] Channel closed DEBUG infra1:Logger.py:156 66244 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66244 expected 65000 for trap_code telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=60] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=74, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=60] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=74, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=61] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=74, chan=62] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=74, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=61] Channel closed DEBUG infra1:Logger.py:156 66042 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66042 expected 65000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=74, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=62] Channel closed DEBUG infra1:Logger.py:156 66311 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66311 expected 65000 for trap_code bgp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=63] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=64] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=74, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=64] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=74, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=65] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=74, chan=66] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=74, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=65] Channel closed DEBUG infra1:Logger.py:156 66049 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66049 expected 65000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=74, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=66] Channel closed DEBUG infra1:Logger.py:156 66238 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66238 expected 65000 for trap_code local_route INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=68] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=74, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=68] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=74, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=69] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=74, chan=70] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=74, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=69] Channel closed DEBUG infra1:Logger.py:156 66069 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66069 expected 65000 for stat_code 65 INFO asyncssh:logging.py:92 [conn=74, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=70] Channel closed DEBUG infra1:Logger.py:156 66209 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66209 expected 65000 for trap_code mac_to_me INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=72] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=74, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=72] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=74, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=73] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=74, chan=74] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=74, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=73] Channel closed DEBUG infra1:Logger.py:156 66044 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66044 expected 65000 for stat_code 19 INFO asyncssh:logging.py:92 [conn=74, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=74] Channel closed DEBUG infra1:Logger.py:156 66248 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66248 expected 65000 for trap_code ip_bc_mac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=76] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=74, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=76] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=74, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=77] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=74, chan=78] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=74, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=77] Channel closed DEBUG infra1:Logger.py:156 66050 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66050 expected 65000 for stat_code 209 INFO asyncssh:logging.py:92 [conn=74, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=78] Channel closed DEBUG infra1:Logger.py:156 66271 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66271 expected 65000 for trap_code icmp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=80] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=80] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=74, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=80] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=74, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=81] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=74, chan=82] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=74, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=81] Channel closed DEBUG infra1:Logger.py:156 66068 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66068 expected 65000 for stat_code 30 INFO asyncssh:logging.py:92 [conn=74, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=82] Channel closed DEBUG infra1:Logger.py:156 66230 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66230 expected 65000 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=84] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:21:40:ab:92:40 vlan_id 2242 vlan_ethtype ipv4 src_ip 107.5.162.55 action trap INFO asyncssh:logging.py:92 [conn=74, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=86] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:21:40:ab:92:40 vlan_id 2242 vlan_ethtype ipv4 src_ip 107.5.162.55 action trap INFO asyncssh:logging.py:92 [conn=74, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=87] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=88] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=74, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=88] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=74, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=89] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=74, chan=90] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=74, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=89] Channel closed DEBUG infra1:Logger.py:156 66065 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66065 expected 65000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=74, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=90] Channel closed DEBUG infra1:Logger.py:156 66189 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66189 expected 65000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_static_trap_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=91] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=92] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:57:49 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=74, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=93] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=74, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=94] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=74, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=94] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=95] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=74, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=96] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=74, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=96] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=74, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=97] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=98] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=98] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=99] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=100] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=100] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:57:50 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=74, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=74, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=102] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=74, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=102] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=74, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=74, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=104] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=74, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=74, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=106] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=74, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=74, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=124] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=74, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=126] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=126] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=74, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=128] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=74, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=74, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=130] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=74, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=74, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=132] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=74, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=133] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=134] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=134] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=135] Channel closed DEBUG infra1:Logger.py:156 echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=74, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=136] Command: echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=74, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=136] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_same_rule_pref[single_block] | 227.58 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4503' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_same_rule_pref[single_block]">Starting testcase:test_devlink_same_rule_pref[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=75] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=75] Local address: 172.17.0.4, port 35390 INFO asyncssh:logging.py:92 [conn=75] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=75] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=75] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:57:51 UTC 2087 INFO asyncssh:logging.py:92 [conn=75, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=75, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=75, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=75, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=75, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 14:57:51 UTC 2087 INFO asyncssh:logging.py:92 [conn=75, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=75, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=75, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=75, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 6043 flower skip_sw dst_mac 02:be:90:9d:e3:9e vlan_id 1524 action trap action police rate 134995bps burst 135995 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 6043 flower skip_sw dst_mac 02:be:90:9d:e3:9e vlan_id 1524 action trap action police rate 134995bps burst 135995 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 6043 flower skip_sw dst_mac 02:be:90:9d:e3:9e vlan_id 1524 src_mac 02:4a:ea:26:1b:ef action trap action police rate 33748bps burst 34748 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=16] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 6043 flower skip_sw dst_mac 02:be:90:9d:e3:9e vlan_id 1524 src_mac 02:4a:ea:26:1b:ef action trap action police rate 33748bps burst 34748 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=75, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=19] Channel closed DEBUG infra1:Logger.py:156 132 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 132 expected 132.86909448818898 for stat_code 195 INFO asyncssh:logging.py:92 [conn=75, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=20] Channel closed DEBUG infra1:Logger.py:156 133 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 133 expected 132.86909448818898 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress handle 0x1 pref 6043 flower INFO asyncssh:logging.py:92 [conn=75, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=22] Command: tc filter delete dev swp33 ingress handle 0x1 pref 6043 flower INFO asyncssh:logging.py:92 [conn=75, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 6043 flower skip_sw dst_mac 02:be:90:9d:e3:9e vlan_id 1524 action trap action police rate 134995bps burst 135995 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=24] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 6043 flower skip_sw dst_mac 02:be:90:9d:e3:9e vlan_id 1524 action trap action police rate 134995bps burst 135995 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=75, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=26] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=26] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=27] Channel closed DEBUG infra1:Logger.py:156 33 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 33 expected 33.21653543307087 for stat_code 195 INFO asyncssh:logging.py:92 [conn=75, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=28] Channel closed DEBUG infra1:Logger.py:156 33 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 33 expected 33.21653543307087 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_same_rule_pref[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=75, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:01:37 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=75, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=75, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=75, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=75, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=75, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=75, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=75, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=75, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=75, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=54] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=75, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=56] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=75, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=58] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=75, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=75, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=60] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=75, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=75, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=62] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=75, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=63] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=64] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=64] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_same_rule_pref[shared_block] | 226.79 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4581' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_same_rule_pref[shared_block]">Starting testcase:test_devlink_same_rule_pref[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=75, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=76] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=76] Local address: 172.17.0.4, port 43496 INFO asyncssh:logging.py:92 [conn=76] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=76] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=76] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:01:38 UTC 2087 INFO asyncssh:logging.py:92 [conn=76, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=76, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=76, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=76, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=76, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:01:38 UTC 2087 INFO asyncssh:logging.py:92 [conn=76, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=76, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=76, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=76, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 23400 flower skip_sw dst_mac 02:1e:9b:04:18:28 vlan_id 3593 action trap action police rate 135982bps burst 136982 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 23400 flower skip_sw dst_mac 02:1e:9b:04:18:28 vlan_id 3593 action trap action police rate 135982bps burst 136982 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 23400 flower skip_sw dst_mac 02:1e:9b:04:18:28 vlan_id 3593 src_mac 02:44:0f:48:c6:6f action trap action police rate 45327bps burst 46327 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=16] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 23400 flower skip_sw dst_mac 02:1e:9b:04:18:28 vlan_id 3593 src_mac 02:44:0f:48:c6:6f action trap action police rate 45327bps burst 46327 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=76, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=19] Channel closed DEBUG infra1:Logger.py:156 349 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 349 expected 350.46907216494844 for stat_code 195 INFO asyncssh:logging.py:92 [conn=76, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=20] Channel closed DEBUG infra1:Logger.py:156 350 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 350 expected 350.46907216494844 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress handle 0x1 pref 23400 flower INFO asyncssh:logging.py:92 [conn=76, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=22] Command: tc filter delete dev swp33 ingress handle 0x1 pref 23400 flower INFO asyncssh:logging.py:92 [conn=76, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 23400 flower skip_sw dst_mac 02:1e:9b:04:18:28 vlan_id 3593 action trap action police rate 135982bps burst 136982 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=24] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 23400 flower skip_sw dst_mac 02:1e:9b:04:18:28 vlan_id 3593 action trap action police rate 135982bps burst 136982 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=76, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=26] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=26] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=27] Channel closed DEBUG infra1:Logger.py:156 117 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 117 expected 116.8221649484536 for stat_code 195 INFO asyncssh:logging.py:92 [conn=76, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=28] Channel closed DEBUG infra1:Logger.py:156 117 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 117 expected 116.8221649484536 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_same_rule_pref[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=76, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:05:24 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=76, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=76, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=76, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=76, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=76, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=76, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=76, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=76, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=76, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=54] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=76, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=56] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=76, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=58] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=76, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=76, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=60] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=76, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=76, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=62] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=76, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=63] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=64] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=64] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_rule_priority[single_block] | 266.15 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4659' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_rule_priority[single_block]">Starting testcase:test_devlink_rule_priority[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=76, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=77] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=77] Local address: 172.17.0.4, port 40558 INFO asyncssh:logging.py:92 [conn=77] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=77] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=77] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:05:25 UTC 2087 INFO asyncssh:logging.py:92 [conn=77, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=77, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=77, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=77, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=77, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:05:25 UTC 2087 INFO asyncssh:logging.py:92 [conn=77, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=77, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=77, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=77, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9200 pref 20363 flower skip_sw src_mac 02:00:e6:68:a8:d2 action trap action police rate 1459372bps burst 1460372 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9200 pref 20363 flower skip_sw src_mac 02:00:e6:68:a8:d2 action trap action police rate 1459372bps burst 1460372 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9200 pref 21363 flower skip_sw src_mac 02:00:e6:68:a8:d2 action trap action police rate 729686bps burst 730686 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=16] Command: tc filter add dev swp33 ingress protocol 0x9200 pref 21363 flower skip_sw src_mac 02:00:e6:68:a8:d2 action trap action police rate 729686bps burst 730686 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=19] Channel closed DEBUG infra1:Logger.py:156 2839 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2839 expected 2839.2451361867707 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=20] Channel closed DEBUG infra1:Logger.py:156 2845 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2845 expected 2839.2451361867707 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 20363 INFO asyncssh:logging.py:92 [conn=77, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=22] Command: tc filter delete dev swp33 ingress pref 20363 INFO asyncssh:logging.py:92 [conn=77, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9200 pref 20363 flower skip_sw src_mac 02:00:e6:68:a8:d2 action trap action police rate 1459372bps burst 1460372 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=24] Command: tc filter add dev swp33 ingress protocol 0x9200 pref 20363 flower skip_sw src_mac 02:00:e6:68:a8:d2 action trap action police rate 1459372bps burst 1460372 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=26] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=26] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=27] Channel closed DEBUG infra1:Logger.py:156 2838 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2838 expected 2839.2451361867707 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=28] Channel closed DEBUG infra1:Logger.py:156 2844 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2844 expected 2839.2451361867707 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 20363 INFO asyncssh:logging.py:92 [conn=77, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=30] Command: tc filter delete dev swp33 ingress pref 20363 INFO asyncssh:logging.py:92 [conn=77, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9200 pref 22363 flower skip_sw src_mac 02:00:e6:68:a8:d2 action trap action police rate 1459372bps burst 1460372 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=32] Command: tc filter add dev swp33 ingress protocol 0x9200 pref 22363 flower skip_sw src_mac 02:00:e6:68:a8:d2 action trap action police rate 1459372bps burst 1460372 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=34] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=34] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=35] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=36] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=35] Channel closed DEBUG infra1:Logger.py:156 1418 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1418 expected 1419.6225680933853 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=36] Channel closed DEBUG infra1:Logger.py:156 1423 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1423 expected 1419.6225680933853 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_rule_priority[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=77, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=38] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:09:50 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=77, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=77, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=40] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=77, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=77, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=77, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=42] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=77, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=77, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=44] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=77, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=77, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=62] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=77, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=64] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=77, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=66] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=77, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=77, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=68] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=77, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=77, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=70] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=77, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=71] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=72] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_rule_priority[shared_block] | 261.80 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4747' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_rule_priority[shared_block]">Starting testcase:test_devlink_rule_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=77, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=78] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=78] Local address: 172.17.0.4, port 60704 INFO asyncssh:logging.py:92 [conn=78] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=78] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=78] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:09:51 UTC 2087 INFO asyncssh:logging.py:92 [conn=78, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=78, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=78, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=78, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=78, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:09:51 UTC 2087 INFO asyncssh:logging.py:92 [conn=78, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=78, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=78, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=78, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 21771 flower skip_sw dst_mac 02:c8:3c:55:2b:a9 vlan_id 814 action trap action police rate 4499256bps burst 4500256 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 21771 flower skip_sw dst_mac 02:c8:3c:55:2b:a9 vlan_id 814 action trap action police rate 4499256bps burst 4500256 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 22771 flower skip_sw dst_mac 02:c8:3c:55:2b:a9 vlan_id 814 action trap action police rate 1124814bps burst 1125814 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=16] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 22771 flower skip_sw dst_mac 02:c8:3c:55:2b:a9 vlan_id 814 action trap action police rate 1124814bps burst 1125814 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=19] Channel closed DEBUG infra1:Logger.py:156 3375 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3375 expected 3450.3496932515336 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=20] Channel closed DEBUG infra1:Logger.py:156 3385 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3385 expected 3450.3496932515336 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 21771 INFO asyncssh:logging.py:92 [conn=78, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=22] Command: tc filter delete dev swp33 ingress pref 21771 INFO asyncssh:logging.py:92 [conn=78, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 21771 flower skip_sw dst_mac 02:c8:3c:55:2b:a9 vlan_id 814 action trap action police rate 4499256bps burst 4500256 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=24] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 21771 flower skip_sw dst_mac 02:c8:3c:55:2b:a9 vlan_id 814 action trap action police rate 4499256bps burst 4500256 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=26] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=26] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=27] Channel closed DEBUG infra1:Logger.py:156 3374 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3374 expected 3450.3496932515336 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=28] Channel closed DEBUG infra1:Logger.py:156 3383 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3383 expected 3450.3496932515336 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 21771 INFO asyncssh:logging.py:92 [conn=78, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=30] Command: tc filter delete dev swp33 ingress pref 21771 INFO asyncssh:logging.py:92 [conn=78, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 23771 flower skip_sw dst_mac 02:c8:3c:55:2b:a9 vlan_id 814 action trap action police rate 4499256bps burst 4500256 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=32] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 23771 flower skip_sw dst_mac 02:c8:3c:55:2b:a9 vlan_id 814 action trap action police rate 4499256bps burst 4500256 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=34] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=34] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=35] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=36] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=35] Channel closed DEBUG infra1:Logger.py:156 858 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 858 expected 862.5874233128834 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=36] Channel closed DEBUG infra1:Logger.py:156 860 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 860 expected 862.5874233128834 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_rule_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=78, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=38] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:14:12 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=78, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=78, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=40] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=78, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=78, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=78, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=42] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=78, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=78, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=44] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=78, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=78, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=62] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=78, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=64] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=78, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=66] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=78, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=78, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=68] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=78, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=78, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=70] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=78, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=71] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=72] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_basic[l2] | 165.99 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4835' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l2]">Starting testcase:test_devlink_basic[l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=78, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=79] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=79] Local address: 172.17.0.4, port 53578 INFO asyncssh:logging.py:92 [conn=79] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=79] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=79] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:14:13 UTC 2087 INFO asyncssh:logging.py:92 [conn=79, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=79, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=79, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=79, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=79, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:14:13 UTC 2087 INFO asyncssh:logging.py:92 [conn=79, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=79, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=79, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=79, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac aa:aa:aa:aa:aa:00 dst_mac aa:00:00:00:00:55 vlan_id 1948 action trap action police rate 793541bps burst 794541 conform-exceed drop INFO asyncssh:logging.py:92 [conn=79, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=14] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac aa:aa:aa:aa:aa:00 dst_mac aa:00:00:00:00:55 vlan_id 1948 action trap action police rate 793541bps burst 794541 conform-exceed drop INFO asyncssh:logging.py:92 [conn=79, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1948,"dst_mac":"aa:00:00:00:00:55","src_mac":"aa:aa:aa:aa:aa:00"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1948_dst_mac_aa:00:00:00:00:55_src_mac_aa:aa:aa:aa:aa:00 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=79, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=79, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=79, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=79, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=79, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=79, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=19] Channel closed DEBUG infra1:Logger.py:156 3023 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3023 expected 3028.7824427480914 for stat_code 195 INFO asyncssh:logging.py:92 [conn=79, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=20] Channel closed DEBUG infra1:Logger.py:156 3030 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3030 expected 3028.7824427480914 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=79, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:16:58 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=79, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=79, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=79, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=79, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=79, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=79, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=79, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=79, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=79, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=79, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=79, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=79, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=79, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=79, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=79, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=79, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_basic[l3] | 165.09 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4903' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l3]">Starting testcase:test_devlink_basic[l3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=79, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=80] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=80] Local address: 172.17.0.4, port 34650 INFO asyncssh:logging.py:92 [conn=80] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=80] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=80] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:16:59 UTC 2087 INFO asyncssh:logging.py:92 [conn=80, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=80, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=80, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=80, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=80, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:16:59 UTC 2087 INFO asyncssh:logging.py:92 [conn=80, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=80, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=80, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=80, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 82.9.169.42 dst_ip 57.20.92.94 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 538053bps burst 539053 conform-exceed drop INFO asyncssh:logging.py:92 [conn=80, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=14] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 82.9.169.42 dst_ip 57.20.92.94 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 538053bps burst 539053 conform-exceed drop INFO asyncssh:logging.py:92 [conn=80, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"00:00:00:00:00:02","src_mac":"00:00:00:00:00:01","eth_type":"ipv4","dst_ip":"57.20.92.94","src_ip":"82.9.169.42"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_00:00:00:00:00:02_src_mac_00:00:00:00:00:01_eth_type_ipv4_dst_ip_57.20.92.94_src_ip_82.9.169.42 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=80, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=80, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=80, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=80, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=80, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=80, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=19] Channel closed DEBUG infra1:Logger.py:156 516 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 516 expected 514.3910133843212 for stat_code 195 INFO asyncssh:logging.py:92 [conn=80, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=20] Channel closed DEBUG infra1:Logger.py:156 518 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 518 expected 514.3910133843212 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=80, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:19:43 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=80, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=80, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=80, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=80, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=80, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=80, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=80, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=80, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=80, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=80, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=80, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=80, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=80, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=80, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=80, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=80, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_basic[l4] | 166.56 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4971' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l4]">Starting testcase:test_devlink_basic[l4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=80, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=81] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=81] Local address: 172.17.0.4, port 51746 INFO asyncssh:logging.py:92 [conn=81] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=81] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=81] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:19:44 UTC 2087 INFO asyncssh:logging.py:92 [conn=81, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=81, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=81, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=81, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=81, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:19:44 UTC 2087 INFO asyncssh:logging.py:92 [conn=81, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=81, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=81, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=81, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_ip 1.1.1.2 dst_ip 2.2.2.3 ip_proto tcp src_port 8250 dst_port 54566 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 2081053bps burst 2082053 conform-exceed drop INFO asyncssh:logging.py:92 [conn=81, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=14] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_ip 1.1.1.2 dst_ip 2.2.2.3 ip_proto tcp src_port 8250 dst_port 54566 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 2081053bps burst 2082053 conform-exceed drop INFO asyncssh:logging.py:92 [conn=81, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"00:00:00:00:00:02","src_mac":"00:00:00:00:00:01","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"2.2.2.3","src_ip":"1.1.1.2","dst_port":54566,"src_port":8250},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_00:00:00:00:00:02_src_mac_00:00:00:00:00:01_eth_type_ipv4_ip_proto_tcp_dst_ip_2.2.2.3_src_ip_1.1.1.2_dst_port_54566_src_port_8250 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=81, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=81, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=81, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=81, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=81, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=81, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=19] Channel closed DEBUG infra1:Logger.py:156 1625 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1625 expected 1620.7577881619939 for stat_code 195 INFO asyncssh:logging.py:92 [conn=81, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=20] Channel closed DEBUG infra1:Logger.py:156 1630 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1630 expected 1620.7577881619939 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=81, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:22:30 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=81, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=81, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=81, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=81, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=81, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=81, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=81, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=81, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=81, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=81, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=81, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=81, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=81, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=81, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=81, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=81, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_random | 162.67 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5039' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_random">Starting testcase:test_devlink_random from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=81, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=82] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=82] Local address: 172.17.0.4, port 42092 INFO asyncssh:logging.py:92 [conn=82] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=82] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=82] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:22:31 UTC 2087 INFO asyncssh:logging.py:92 [conn=82, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=82, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=82, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=82, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=82, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:22:31 UTC 2087 INFO asyncssh:logging.py:92 [conn=82, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=82, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=82, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=82, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9300 flower skip_sw src_mac 02:a1:93:f1:fa:f4 action trap action police rate 1557307bps burst 1558307 conform-exceed drop INFO asyncssh:logging.py:92 [conn=82, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9300 flower skip_sw src_mac 02:a1:93:f1:fa:f4 action trap action police rate 1557307bps burst 1558307 conform-exceed drop INFO asyncssh:logging.py:92 [conn=82, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"[37632]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37632]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"src_mac":"02:a1:93:f1:fa:f4","eth_type":"9300"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_src_mac_02:a1:93:f1:fa:f4_eth_type_9300 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=82, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=82, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=82, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=82, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=82, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=82, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=19] Channel closed DEBUG infra1:Logger.py:156 1492 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1492 expected 1490.245933014354 for stat_code 195 INFO asyncssh:logging.py:92 [conn=82, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=20] Channel closed DEBUG infra1:Logger.py:156 1495 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1495 expected 1490.245933014354 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_random from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=82, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:25:13 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=82, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=82, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=82, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=82, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=82, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=82, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=82, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=82, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=82, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=82, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=82, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=82, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=82, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=82, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=82, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=82, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_policer_log | 155.18 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5107' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_policer_log">Starting testcase:test_devlink_policer_log from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=82, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=83] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=83] Local address: 172.17.0.4, port 37778 INFO asyncssh:logging.py:92 [conn=83] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=83] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=83] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:25:13 UTC 2087 INFO asyncssh:logging.py:92 [conn=83, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=83, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=83, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=83, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=83, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:25:13 UTC 2087 INFO asyncssh:logging.py:92 [conn=83, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=83, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=83, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=83, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9100 flower skip_sw src_mac 02:0f:35:af:d7:a4 action trap action police rate 100kbit burst 6250 conform-exceed drop INFO asyncssh:logging.py:92 [conn=83, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9100 flower skip_sw src_mac 02:0f:35:af:d7:a4 action trap action police rate 100kbit burst 6250 conform-exceed drop INFO asyncssh:logging.py:92 [conn=83, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"src_mac":"02:0f:35:af:d7:a4","eth_type":"9100"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=83, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9100 flower src_mac 02:0f:35:af:d7:a4 action xt limit 3/sec -j LOG INFO asyncssh:logging.py:92 [conn=83, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=18] Command: tc filter add dev swp33 ingress protocol 0x9100 flower src_mac 02:0f:35:af:d7:a4 action xt limit 3/sec -j LOG INFO asyncssh:logging.py:92 [conn=83, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=18] Channel closed DEBUG infra1:Logger.py:156 tablename: mangle hook: NF_IP_POST_ROUTING target: LOG level warning index 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_src_mac_02:0f:35:af:d7:a4_eth_type_9100 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=83, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=19] Channel closed DEBUG infra1:Logger.py:156 tail -50 /var/log/messages | grep -Eo "IN=swp33" | wc -l INFO asyncssh:logging.py:92 [conn=83, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=20] Command: tail -50 /var/log/messages | grep -Eo "IN=swp33" | wc -l INFO asyncssh:logging.py:92 [conn=83, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=20] Channel closed DEBUG infra1:Logger.py:156 50 INFO asyncssh:logging.py:92 [conn=83, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=21] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=83, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=23] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=83, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=22] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=83, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=24] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=83, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=23] Channel closed DEBUG infra1:Logger.py:156 18 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 18 expected 18 for stat_code 195 INFO asyncssh:logging.py:92 [conn=83, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=24] Channel closed DEBUG infra1:Logger.py:156 18 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 18 expected 18 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_policer_log from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=83, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:27:48 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=83, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=83, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=83, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=83, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=83, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=83, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=83, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=83, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=83, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=50] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=83, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=52] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=83, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=83, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=83, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=56] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=83, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=83, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=58] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=83, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=59] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=60] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=60] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[bit] | 161.88 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5179' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[bit]">Starting testcase:test_devlink_diff_rate_units[bit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=83, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=84] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=84] Local address: 172.17.0.4, port 36926 INFO asyncssh:logging.py:92 [conn=84] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=84] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=84] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:27:48 UTC 2087 INFO asyncssh:logging.py:92 [conn=84, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=84, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=84, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=84, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=84, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:27:49 UTC 2087 INFO asyncssh:logging.py:92 [conn=84, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=84, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=84, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=84, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw dst_mac 02:a5:3d:40:7e:a1 vlan_id 2960 vlan_ethtype ip src_ip 12.230.61.139 dst_ip 84.62.191.137 ip_proto tcp dst_port 38449 action trap action police rate 8833524.0bit burst 8834524.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=84, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=14] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw dst_mac 02:a5:3d:40:7e:a1 vlan_id 2960 vlan_ethtype ip src_ip 12.230.61.139 dst_ip 84.62.191.137 ip_proto tcp dst_port 38449 action trap action police rate 8833524.0bit burst 8834524.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=84, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2960,"vlan_ethtype":"ip","dst_mac":"02:a5:3d:40:7e:a1","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"84.62.191.137","src_ip":"12.230.61.139","dst_port":38449},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2960_vlan_ethtype_ip_dst_mac_02:a5:3d:40:7e:a1_eth_type_ipv4_ip_proto_tcp_dst_ip_84.62.191.137_src_ip_12.230.61.139_dst_port_38449 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=84, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=84, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=84, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=84, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=84, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=84, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=19] Channel closed DEBUG infra1:Logger.py:156 2221 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2221 expected 2437.5066225165565 for stat_code 195 INFO asyncssh:logging.py:92 [conn=84, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=20] Channel closed DEBUG infra1:Logger.py:156 2227 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2227 expected 2437.5066225165565 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[bit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=84, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:30:30 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=84, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=84, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=84, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=84, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=84, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=84, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=84, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=84, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=84, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=84, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=84, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=84, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=84, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=84, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=84, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=84, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[kbit] | 159.13 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5247' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[kbit]">Starting testcase:test_devlink_diff_rate_units[kbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=84, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=85] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=85] Local address: 172.17.0.4, port 39666 INFO asyncssh:logging.py:92 [conn=85] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=85] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=85] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:30:30 UTC 2087 INFO asyncssh:logging.py:92 [conn=85, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=85, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=85, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=85, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=85, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:30:31 UTC 2087 INFO asyncssh:logging.py:92 [conn=85, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=85, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=85, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=85, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9200 flower skip_sw dst_mac 02:11:ab:a1:eb:28 action trap action police rate 3158.166kbit burst 4158.166 conform-exceed drop INFO asyncssh:logging.py:92 [conn=85, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9200 flower skip_sw dst_mac 02:11:ab:a1:eb:28 action trap action police rate 3158.166kbit burst 4158.166 conform-exceed drop INFO asyncssh:logging.py:92 [conn=85, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:11:ab:a1:eb:28","eth_type":"9200"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:11:ab:a1:eb:28_eth_type_9200 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=85, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=85, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=85, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=85, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=85, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=85, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=19] Channel closed DEBUG infra1:Logger.py:156 2448 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2448 expected 2436.8564814814813 for stat_code 195 INFO asyncssh:logging.py:92 [conn=85, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=20] Channel closed DEBUG infra1:Logger.py:156 2457 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2457 expected 2436.8564814814813 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[kbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=85, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:33:09 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=85, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=85, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=85, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=85, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=85, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=85, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=85, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=85, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=85, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=85, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=85, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=85, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=85, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=85, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=85, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=85, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[gbit] | 168.81 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5315' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[gbit]">Starting testcase:test_devlink_diff_rate_units[gbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=85, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=86] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=86] Local address: 172.17.0.4, port 34890 INFO asyncssh:logging.py:92 [conn=86] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=86] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=86] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:33:10 UTC 2087 INFO asyncssh:logging.py:92 [conn=86, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=86, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=86, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=86, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=86, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:33:10 UTC 2087 INFO asyncssh:logging.py:92 [conn=86, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=86, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=86, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=86, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9200 flower skip_sw src_mac 02:fc:3b:84:c2:56 action trap action police rate 0.002789224gbit burst 1000.002789224 conform-exceed drop INFO asyncssh:logging.py:92 [conn=86, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9200 flower skip_sw src_mac 02:fc:3b:84:c2:56 action trap action police rate 0.002789224gbit burst 1000.002789224 conform-exceed drop INFO asyncssh:logging.py:92 [conn=86, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"src_mac":"02:fc:3b:84:c2:56","eth_type":"9200"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_src_mac_02:fc:3b:84:c2:56_eth_type_9200 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=86, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=86, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=86, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=86, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=86, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=86, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=19] Channel closed DEBUG infra1:Logger.py:156 2080 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2080 expected 2075.315476190476 for stat_code 195 INFO asyncssh:logging.py:92 [conn=86, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=20] Channel closed DEBUG infra1:Logger.py:156 2086 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2086 expected 2075.315476190476 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[gbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=86, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:35:58 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=86, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=86, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=86, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=86, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=86, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=86, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=86, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=86, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=86, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=86, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=86, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=86, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=86, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=86, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=86, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=86, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[bps] | 160.29 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5383' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[bps]">Starting testcase:test_devlink_diff_rate_units[bps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=86, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=87] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=87] Local address: 172.17.0.4, port 43414 INFO asyncssh:logging.py:92 [conn=87] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=87] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=87] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:35:58 UTC 2087 INFO asyncssh:logging.py:92 [conn=87, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=87, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=87, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=87, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=87, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:35:58 UTC 2087 INFO asyncssh:logging.py:92 [conn=87, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=87, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=87, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=87, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:c1:ec:15:54:3f dst_mac 02:43:a4:64:1a:5d vlan_id 2784 action trap action police rate 863344.625bps burst 864344.625 conform-exceed drop INFO asyncssh:logging.py:92 [conn=87, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=14] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:c1:ec:15:54:3f dst_mac 02:43:a4:64:1a:5d vlan_id 2784 action trap action police rate 863344.625bps burst 864344.625 conform-exceed drop INFO asyncssh:logging.py:92 [conn=87, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2784,"dst_mac":"02:43:a4:64:1a:5d","src_mac":"02:c1:ec:15:54:3f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2784_dst_mac_02:43:a4:64:1a:5d_src_mac_02:c1:ec:15:54:3f INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=87, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=87, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=87, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=87, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=87, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=87, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=19] Channel closed DEBUG infra1:Logger.py:156 2583 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2583 expected 2569.478050595238 for stat_code 195 INFO asyncssh:logging.py:92 [conn=87, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=20] Channel closed DEBUG infra1:Logger.py:156 2589 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2589 expected 2569.478050595238 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[bps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=87, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:38:38 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=87, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=87, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=87, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=87, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=87, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=87, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=87, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=87, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=87, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=87, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=87, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=87, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=87, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=87, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=87, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=87, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[kbps] | 163.18 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5451' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[kbps]">Starting testcase:test_devlink_diff_rate_units[kbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=87, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=88] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=88] Local address: 172.17.0.4, port 37466 INFO asyncssh:logging.py:92 [conn=88] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=88] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=88] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:38:39 UTC 2087 INFO asyncssh:logging.py:92 [conn=88, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=88, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=88, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=88, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=88, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:38:39 UTC 2087 INFO asyncssh:logging.py:92 [conn=88, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=88, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=88, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=88, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:20:06:44:8d:c2 dst_mac 02:68:b3:f5:0a:69 vlan_id 1936 action trap action police rate 572.60375kbps burst 1572.60375 conform-exceed drop INFO asyncssh:logging.py:92 [conn=88, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:20:06:44:8d:c2 dst_mac 02:68:b3:f5:0a:69 vlan_id 1936 action trap action police rate 572.60375kbps burst 1572.60375 conform-exceed drop INFO asyncssh:logging.py:92 [conn=88, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1936,"dst_mac":"02:68:b3:f5:0a:69","src_mac":"02:20:06:44:8d:c2"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1936_dst_mac_02:68:b3:f5:0a:69_src_mac_02:20:06:44:8d:c2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=88, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=88, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=88, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=88, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=88, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=88, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=19] Channel closed DEBUG infra1:Logger.py:156 1381 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1381 expected 1373.150479616307 for stat_code 195 INFO asyncssh:logging.py:92 [conn=88, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=20] Channel closed DEBUG infra1:Logger.py:156 1384 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1384 expected 1373.150479616307 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[kbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=88, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:41:21 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=88, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=88, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=88, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=88, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=88, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=88, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=88, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=88, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=88, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=88, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=88, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=88, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=88, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=88, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=88, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=88, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[mbps] | 161.89 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5519' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[mbps]">Starting testcase:test_devlink_diff_rate_units[mbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=88, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=89] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=89] Local address: 172.17.0.4, port 59806 INFO asyncssh:logging.py:92 [conn=89] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=89] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=89] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:41:22 UTC 2087 INFO asyncssh:logging.py:92 [conn=89, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=89, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=89, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=89, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=89, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:41:22 UTC 2087 INFO asyncssh:logging.py:92 [conn=89, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=89, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=89, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=89, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:bc:bc:6f:be:0e vlan_id 1546 vlan_ethtype ipv4 src_ip 119.5.46.40 dst_ip 113.169.192.222 ip_proto udp src_port 1899 dst_port 53869 action trap action police rate 0.59622225mbps burst 1000.59622225 conform-exceed drop INFO asyncssh:logging.py:92 [conn=89, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:bc:bc:6f:be:0e vlan_id 1546 vlan_ethtype ipv4 src_ip 119.5.46.40 dst_ip 113.169.192.222 ip_proto udp src_port 1899 dst_port 53869 action trap action police rate 0.59622225mbps burst 1000.59622225 conform-exceed drop INFO asyncssh:logging.py:92 [conn=89, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1546,"vlan_ethtype":"ip","src_mac":"02:bc:bc:6f:be:0e","eth_type":"ipv4","ip_proto":"udp","dst_ip":"113.169.192.222","src_ip":"119.5.46.40","dst_port":53869,"src_port":1899},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1546_vlan_ethtype_ip_src_mac_02:bc:bc:6f:be:0e_eth_type_ipv4_ip_proto_udp_dst_ip_113.169.192.222_src_ip_119.5.46.40_dst_port_53869_src_port_1899 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=89, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=89, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=89, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=89, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=89, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=89, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=19] Channel closed DEBUG infra1:Logger.py:156 1546 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1546 expected 1540.625968992248 for stat_code 195 INFO asyncssh:logging.py:92 [conn=89, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=20] Channel closed DEBUG infra1:Logger.py:156 1550 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1550 expected 1540.625968992248 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[mbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=89, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:44:03 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=89, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=89, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=89, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=89, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=89, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=89, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=89, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=89, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=89, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=89, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=89, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=89, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=89, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=89, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=89, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=89, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[gbps] | 162.66 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5587' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[gbps]">Starting testcase:test_devlink_diff_rate_units[gbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=89, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=90] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=90] Local address: 172.17.0.4, port 38462 INFO asyncssh:logging.py:92 [conn=90] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=90] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=90] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:44:04 UTC 2087 INFO asyncssh:logging.py:92 [conn=90, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=90, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=90, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=90, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=90, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:44:04 UTC 2087 INFO asyncssh:logging.py:92 [conn=90, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=90, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=90, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=90, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9200 flower skip_sw dst_mac 02:ca:1a:ac:6d:8a action trap action police rate 0.001192631125gbps burst 1000.001192631125 conform-exceed drop INFO asyncssh:logging.py:92 [conn=90, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9200 flower skip_sw dst_mac 02:ca:1a:ac:6d:8a action trap action police rate 0.001192631125gbps burst 1000.001192631125 conform-exceed drop INFO asyncssh:logging.py:92 [conn=90, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ca:1a:ac:6d:8a","eth_type":"9200"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:ca:1a:ac:6d:8a_eth_type_9200 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=90, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=90, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=90, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=90, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=90, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=90, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=19] Channel closed DEBUG infra1:Logger.py:156 2653 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2653 expected 2638.564435840708 for stat_code 195 INFO asyncssh:logging.py:92 [conn=90, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=20] Channel closed DEBUG infra1:Logger.py:156 2660 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2660 expected 2638.564435840708 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[gbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=90, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:46:46 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=90, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=90, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=90, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=90, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=90, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=90, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=90, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=90, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=90, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=90, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=90, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=90, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=90, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=90, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=90, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=90, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[tbps] | 163.63 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5655' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[tbps]">Starting testcase:test_devlink_diff_rate_units[tbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=90, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=91] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=91] Local address: 172.17.0.4, port 44146 INFO asyncssh:logging.py:92 [conn=91] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=91] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=91] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:46:46 UTC 2087 INFO asyncssh:logging.py:92 [conn=91, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=91, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=91, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=91, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=91, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:46:47 UTC 2087 INFO asyncssh:logging.py:92 [conn=91, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=91, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=91, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=91, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:ce:76:4f:ad:12 dst_mac 02:42:3f:9c:18:f0 dst_ip 77.137.188.118 action trap action police rate 2.75358e-07tbps burst 1000.000000275358 conform-exceed drop INFO asyncssh:logging.py:92 [conn=91, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=14] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:ce:76:4f:ad:12 dst_mac 02:42:3f:9c:18:f0 dst_ip 77.137.188.118 action trap action police rate 2.75358e-07tbps burst 1000.000000275358 conform-exceed drop INFO asyncssh:logging.py:92 [conn=91, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:42:3f:9c:18:f0","src_mac":"02:ce:76:4f:ad:12","eth_type":"ipv4","dst_ip":"77.137.188.118"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:42:3f:9c:18:f0_src_mac_02:ce:76:4f:ad:12_eth_type_ipv4_dst_ip_77.137.188.118 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=91, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=91, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=91, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=91, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=91, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=91, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=19] Channel closed DEBUG infra1:Logger.py:156 811 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 811 expected 807.5014662756598 for stat_code 195 INFO asyncssh:logging.py:92 [conn=91, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=20] Channel closed DEBUG infra1:Logger.py:156 813 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 813 expected 807.5014662756598 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[tbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=91, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:49:29 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=91, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=91, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=91, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=91, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=91, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=91, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=91, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=91, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=91, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=91, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=91, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=91, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=91, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=91, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=91, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=91, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_nexthops_down[1] | 147.98 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5723' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_nexthops_down[1]">Starting testcase:test_ecmp_nexthops_down[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=91, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=92] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=92] Local address: 172.17.0.4, port 55446 INFO asyncssh:logging.py:92 [conn=92] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=92] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=92] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:49:30 UTC 2087 INFO asyncssh:logging.py:92 [conn=92, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=92, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=2] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=92, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 INFO asyncssh:logging.py:92 [conn=92, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=92, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=4] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=92, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:49:30 UTC 2087 INFO asyncssh:logging.py:92 [conn=92, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=92, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=92, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=8] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=92, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=92, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=92, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:49:30 UTC 2087 INFO asyncssh:logging.py:92 [conn=92, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=92, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=14] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=92, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=92, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=16] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=92, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=92, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=92, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=92, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=92, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=92, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=92, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=22] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=92, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=92, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=92, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=24] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=92, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=92, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=92, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=26] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=92, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad5e0460>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 7409288 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3704645 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3704645 INFO asyncssh:logging.py:92 [conn=92, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=92, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=28] Command: ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=92, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=28] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_nexthops_down[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=92, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=29] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=30] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=30] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=32] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:51:57 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:51:58 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=92, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=92, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=92, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=92, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=92, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=92, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=92, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=92, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=92, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=41] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=42] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=42] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_nexthops_down[3] | 146.35 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5779' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_nexthops_down[3]">Starting testcase:test_ecmp_nexthops_down[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=93] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=93] Local address: 172.17.0.4, port 34598 INFO asyncssh:logging.py:92 [conn=93] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=93] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=93] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:51:58 UTC 2087 INFO asyncssh:logging.py:92 [conn=93, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=93, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=2] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=93, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 INFO asyncssh:logging.py:92 [conn=93, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=93, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=4] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=93, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:51:58 UTC 2087 INFO asyncssh:logging.py:92 [conn=93, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=93, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=93, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=8] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=93, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=93, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=93, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:51:58 UTC 2087 INFO asyncssh:logging.py:92 [conn=93, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=93, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=14] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=93, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=93, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=16] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=93, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=93, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=93, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=93, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=93, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=93, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=93, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=22] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=93, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=93, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=93, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=24] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=93, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=93, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=93, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=26] Command: ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=93, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad5e00d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 6807529 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=93, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=93, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=28] Command: ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=93, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=28] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_nexthops_down[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=93, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=29] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=93, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=30] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=93, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=30] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=32] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:54:24 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:54:24 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=93, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=93, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=93, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=93, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=93, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=93, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=93, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=93, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=93, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=41] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=93, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=42] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=93, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=42] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_hash_policy | 294.56 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5835' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_hash_policy">Starting testcase:test_ecmp_hash_policy from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=94] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=94] Local address: 172.17.0.4, port 44964 INFO asyncssh:logging.py:92 [conn=94] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=94] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=94] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:54:24 UTC 2087 INFO asyncssh:logging.py:92 [conn=94, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy INFO asyncssh:logging.py:92 [conn=94, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=2] Command: sysctl net.ipv4.fib_multipath_hash_policy INFO asyncssh:logging.py:92 [conn=94, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 0 INFO asyncssh:logging.py:92 [conn=94, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy=1 INFO asyncssh:logging.py:92 [conn=94, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=4] Command: sysctl net.ipv4.fib_multipath_hash_policy=1 INFO asyncssh:logging.py:92 [conn=94, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:54:24 UTC 2087 INFO asyncssh:logging.py:92 [conn=94, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=94, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=94, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=8] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=94, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=94, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=94, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:54:25 UTC 2087 INFO asyncssh:logging.py:92 [conn=94, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=94, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=14] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=94, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=94, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=16] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=94, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=94, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=94, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=94, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=94, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=94, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=94, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=22] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=94, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=94, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=94, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=24] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=94, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_11 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_12 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_13 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_17 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_18 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_19 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad57fa90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 20000 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 5002 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 8003 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 7003 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_hash_policy from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=94, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=25] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=26] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=26] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:59:18 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:59:19 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=94, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=94, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=32] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=94, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=94, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=94, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=94, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=94, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=36] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=94, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=94, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=37] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy=0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=38] Command: sysctl net.ipv4.fib_multipath_hash_policy=0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=38] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 0 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[basic] | 148.72 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5889' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[basic]">Starting testcase:test_ecmp_traffic_distribution[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=95] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=95] Local address: 172.17.0.4, port 60112 INFO asyncssh:logging.py:92 [conn=95] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=95] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=95] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:59:19 UTC 2087 INFO asyncssh:logging.py:92 [conn=95, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=95, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=95, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=95, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=95, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=95, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 15:59:19 UTC 2087 INFO asyncssh:logging.py:92 [conn=95, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=95, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=95, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=95, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=95, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=95, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=95, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=12] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=95, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=95, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=14] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=95, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=95, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=95, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=95, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=95, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=95, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad5e3070>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 6791792 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2490326 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 2263933 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 2037538 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=95, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:01:47 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:01:47 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=95, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=95, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=95, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=95, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=95, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=95, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=95, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=95, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[nexthop_down] | 147.97 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5931' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[nexthop_down]">Starting testcase:test_ecmp_traffic_distribution[nexthop_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=96] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=96] Local address: 172.17.0.4, port 44264 INFO asyncssh:logging.py:92 [conn=96] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=96] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=96] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:01:48 UTC 2087 INFO asyncssh:logging.py:92 [conn=96, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=96, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=96, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=96, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=96, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=96, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:01:48 UTC 2087 INFO asyncssh:logging.py:92 [conn=96, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=96, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=96, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=96, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=96, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=96, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=96, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=12] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=96, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=96, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=14] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=96, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=96, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=96, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=96, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=96, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=96, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=96, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=96, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=20] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=96, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad57e050>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 6826671 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3413337 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3413337 INFO asyncssh:logging.py:92 [conn=96, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=96, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=22] Command: ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=96, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=22] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[nexthop_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=96, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=96, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=96, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:04:15 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:04:15 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=96, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=96, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=96, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=96, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=96, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=96, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=96, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=96, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[dynamic] | 148.19 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5977' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[dynamic]">Starting testcase:test_ecmp_traffic_distribution[dynamic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=97] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=97] Local address: 172.17.0.4, port 48456 INFO asyncssh:logging.py:92 [conn=97] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=97] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=97] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:04:16 UTC 2087 INFO asyncssh:logging.py:92 [conn=97, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=97, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=97, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=97, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=97, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=97, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:04:16 UTC 2087 INFO asyncssh:logging.py:92 [conn=97, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=97, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=97, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=97, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=97, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=97, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=97, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=12] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=97, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=97, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=14] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=97, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=14] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=97, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=97, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=16] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=97, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad408a90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 6789796 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 2263269 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 2036940 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 2489595 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[dynamic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=97, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=17] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=18] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=18] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:06:43 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:06:43 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=97, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=97, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=24] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=97, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=97, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=26] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=97, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=97, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=97, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=28] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=97, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=28] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3[1] | 682.58 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6074' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3[1]">Starting testcase:test_hw_drop_l3[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=99] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=99] Local address: 172.17.0.4, port 57066 INFO asyncssh:logging.py:92 [conn=99] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=99] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=99] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:08:16 UTC 2087 INFO asyncssh:logging.py:92 [conn=99, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=99, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=99, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=99, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:08:16 UTC 2087 INFO asyncssh:logging.py:92 [conn=99, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp33 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp34 INFO asyncssh:logging.py:92 [conn=99, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=12] Command: ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp33 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp34 INFO asyncssh:logging.py:92 [conn=99, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_0.0.0.0/24', 'count': 1, 'ip': '0.0.0.0', 'gw': '0.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=99, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 2.2.2.2 lladdr 02:73:ec:d8:5e:6a dev swp33 INFO asyncssh:logging.py:92 [conn=99, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=14] Command: ip neigh add 2.2.2.2 lladdr 02:73:ec:d8:5e:6a dev swp33 INFO asyncssh:logging.py:92 [conn=99, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=99, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=99, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=99, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=99, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=99, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=99, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=99, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=99, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"0.0.0.1","prefixlen":24,"broadcast":"0.0.0.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"0.0.0.1","prefixlen":24,"broadcast":"0.0.0.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad57d7e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2228962 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2 Rx 2036993 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 2 Rx 2489636 INFO asyncssh:logging.py:92 [conn=99, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=23] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=99, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=24] Command: get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=99, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=24] Channel closed DEBUG infra1:Logger.py:156 242547 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad42d4b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1936387 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2 Rx 2036997 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 2 Rx 2489638 INFO asyncssh:logging.py:92 [conn=99, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=25] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=26] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=26] Channel closed DEBUG infra1:Logger.py:156 242592 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad57e080>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1962282 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2 Rx 2037001 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 2 Rx 2489642 INFO asyncssh:logging.py:92 [conn=99, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=27] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=28] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=28] Channel closed DEBUG infra1:Logger.py:156 242642 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad093580>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2161551 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2 Rx 2037003 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 2 Rx 2489645 INFO asyncssh:logging.py:92 [conn=99, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=29] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=30] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=30] Channel closed DEBUG infra1:Logger.py:156 242682 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad42d360>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1925098 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2 Rx 2037006 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 2 Rx 2489649 INFO asyncssh:logging.py:92 [conn=99, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=31] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=32] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=32] Channel closed DEBUG infra1:Logger.py:156 242423 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad42ef50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2168501 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2 Rx 2037010 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 2 Rx 2489652 INFO asyncssh:logging.py:92 [conn=99, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=33] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=34] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=34] Channel closed DEBUG infra1:Logger.py:156 242446 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad090c10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1928763 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2 Rx 2037013 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 2 Rx 2489655 INFO asyncssh:logging.py:92 [conn=99, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=35] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=99, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=36] Command: get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=99, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=36] Channel closed DEBUG infra1:Logger.py:156 242569 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=38] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:19:38 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=99, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=99, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=40] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=99, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=99, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=99, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=99, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=44] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=45] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=46] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=46] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3[3] | 777.87 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6130' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3[3]">Starting testcase:test_hw_drop_l3[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=100] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=100] Local address: 172.17.0.4, port 49600 INFO asyncssh:logging.py:92 [conn=100] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=100] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=100] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:19:38 UTC 2087 INFO asyncssh:logging.py:92 [conn=100, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=100, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=100, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=100, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:19:39 UTC 2087 INFO asyncssh:logging.py:92 [conn=100, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp33 && ip address add 2.2.3.1/24 broadcast 2.2.3.255 dev swp34 && ip address add 2.2.4.1/24 broadcast 2.2.4.255 dev swp35 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp36 INFO asyncssh:logging.py:92 [conn=100, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=12] Command: ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp33 && ip address add 2.2.3.1/24 broadcast 2.2.3.255 dev swp34 && ip address add 2.2.4.1/24 broadcast 2.2.4.255 dev swp35 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp36 INFO asyncssh:logging.py:92 [conn=100, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.3.2/24', 'count': 1, 'ip': '2.2.3.2', 'gw': '2.2.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2.2.4.2/24', 'count': 1, 'ip': '2.2.4.2', 'gw': '2.2.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_0.0.0.0/24', 'count': 1, 'ip': '0.0.0.0', 'gw': '0.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=100, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 2.2.2.2 lladdr 02:36:01:5a:1d:41 dev swp33 && ip neigh add 2.2.3.2 lladdr 02:45:a7:81:59:52 dev swp34 && ip neigh add 2.2.4.2 lladdr 02:a5:e2:60:1f:30 dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=14] Command: ip neigh add 2.2.2.2 lladdr 02:36:01:5a:1d:41 dev swp33 && ip neigh add 2.2.3.2 lladdr 02:45:a7:81:59:52 dev swp34 && ip neigh add 2.2.4.2 lladdr 02:a5:e2:60:1f:30 dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=100, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=100, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=100, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=100, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=100, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=100, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=100, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=100, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.3.1","prefixlen":24,"broadcast":"2.2.3.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.3.1","prefixlen":24,"broadcast":"2.2.3.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=24] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=24] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=100, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=26] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=100, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.4.1","prefixlen":24,"broadcast":"2.2.4.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.4.1","prefixlen":24,"broadcast":"2.2.4.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad42d510>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1136343 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1136266 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1136191 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=27] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=100, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=28] Command: get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=100, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=28] Channel closed DEBUG infra1:Logger.py:156 617305 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad57ce20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1130145 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1130057 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1129979 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=29] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=30] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=30] Channel closed DEBUG infra1:Logger.py:156 617174 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad42e560>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1038021 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1037944 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1037864 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=31] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=32] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=32] Channel closed DEBUG infra1:Logger.py:156 617060 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad092f50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1241780 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1241707 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1241630 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=33] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=34] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=34] Channel closed DEBUG infra1:Logger.py:156 617791 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad42da20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1133315 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1133235 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1133161 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=35] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=36] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=36] Channel closed DEBUG infra1:Logger.py:156 617474 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad090be0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1257393 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1257320 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1257243 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1 INFO asyncssh:logging.py:92 [conn=100, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=37] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=38] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=38] Channel closed DEBUG infra1:Logger.py:156 617068 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad093df0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1028340 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1028260 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1028187 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=39] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=100, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=40] Command: get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=100, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=40] Channel closed DEBUG infra1:Logger.py:156 617593 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=41] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=42] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:32:36 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=100, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=100, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=44] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=100, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=100, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=46] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=100, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=100, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=48] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=49] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=50] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=50] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3_exp_counters | 157.16 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6190' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3_exp_counters">Starting testcase:test_hw_drop_l3_exp_counters from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=101] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=101] Local address: 172.17.0.4, port 38016 INFO asyncssh:logging.py:92 [conn=101] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=101] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=101] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:32:36 UTC 2087 INFO asyncssh:logging.py:92 [conn=101, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=101, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=101, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=101, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:32:36 UTC 2087 INFO asyncssh:logging.py:92 [conn=101, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=9] Channel closed DEBUG infra1:Logger.py:156 cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=10] Command: cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=10] Channel closed DEBUG infra1:Logger.py:156 62:78247010 136:84934752 137:56686440 138:28383026 145:28269792 INFO asyncssh:logging.py:92 [conn=101, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 3.3.3.3/24 broadcast 3.3.3.255 dev swp33 && ip address add 0.0.0.0/24 broadcast 0.0.0.255 dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=14] Command: ip address add 3.3.3.3/24 broadcast 3.3.3.255 dev swp33 && ip address add 0.0.0.0/24 broadcast 0.0.0.255 dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_3.3.3.1/24', 'count': 1, 'ip': '3.3.3.1', 'gw': '3.3.3.3', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_0.0.0.1/24', 'count': 1, 'ip': '0.0.0.1', 'gw': '0.0.0.0', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=101, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 3.3.3.1 lladdr 02:9a:23:f4:7f:e5 dev swp33 && ip neigh add 0.0.0.1 lladdr 02:a4:9d:ad:14:29 dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=16] Command: ip neigh add 3.3.3.1 lladdr 02:9a:23:f4:7f:e5 dev swp33 && ip neigh add 0.0.0.1 lladdr 02:a4:9d:ad:14:29 dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=101, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=18] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=101, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=18] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=101, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=20] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=101, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"3.3.3.3","prefixlen":24,"broadcast":"3.3.3.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"3.3.3.3","prefixlen":24,"broadcast":"3.3.3.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=22] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=101, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=24] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=101, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_3.3.3.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=101, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=25] Channel closed DEBUG infra1:Logger.py:156 cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=26] Command: cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=26] Channel closed DEBUG infra1:Logger.py:156 62:78247010 136:85135698 137:56820458 138:28450061 145:28337036 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3_exp_counters from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:35:13 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=101, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=101, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=101, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=101, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=101, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7a:ec:48:4f:f1:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=101, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=35] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=36] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=36] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ifupdown2/test_ifupdown2.py::test_ifupdown2_ipv4_ecmp | 396.89 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6236' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_ipv4_ecmp">Starting testcase:test_ifupdown2_ipv4_ecmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=102] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=102] Local address: 172.17.0.4, port 59836 INFO asyncssh:logging.py:92 [conn=102] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=102] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=102] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:35:14 UTC 2087 INFO asyncssh:logging.py:92 [conn=102, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=102, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=102, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=102, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=102, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=102, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=102, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:35:14 UTC 2087 INFO asyncssh:logging.py:92 [conn=102, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=7] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=102, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=8] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=102, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=8] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=102, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=9] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=102, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=10] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=102, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=102, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=12] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=102, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=12] Channel closed DEBUG infra1:Logger.py:156 ------------------------------Captured stdout call------------------------------ Connection made to 10.36.118.46 Authentication complete SSH connection closed SSH connection closed SSH connection closed Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=102, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:35:14 UTC 2087 INFO asyncssh:logging.py:92 [conn=102, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=15] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=102, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=16] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=102, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=17] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto swp33 iface swp33 inet static address 173.238.192.1/19 auto swp34 iface swp34 inet static address 101.0.0.1/10 auto swp35 iface swp35 inet static address 2.2.2.1/24 up ip route add 89.122.131.0/24 nexthop via 173.238.192.89 nexthop via 101.1.191.18 up ip neigh add 173.238.192.89 lladdr 02:7a:e6:00:d3:8f dev swp33 up ip neigh add 101.1.191.18 lladdr 02:2b:1a:5a:a4:b1 dev swp34 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=102, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=18] Command: echo -e ' auto swp33 iface swp33 inet static address 173.238.192.1/19 auto swp34 iface swp34 inet static address 101.0.0.1/10 auto swp35 iface swp35 inet static address 2.2.2.1/24 up ip route add 89.122.131.0/24 nexthop via 173.238.192.89 nexthop via 101.1.191.18 up ip neigh add 173.238.192.89 lladdr 02:7a:e6:00:d3:8f dev swp33 up ip neigh add 101.1.191.18 lladdr 02:2b:1a:5a:a4:b1 dev swp34 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=102, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=19] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=102, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=20] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=102, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=20] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback address 20.20.0.1/32 auto ma1 iface ma1 inet dhcp auto swp33 iface swp33 inet static address 173.238.192.1/19 auto swp34 iface swp34 inet static address 101.0.0.1/10 auto swp35 iface swp35 inet static address 2.2.2.1/24 up ip route add 89.122.131.0/24 nexthop via 173.238.192.89 nexthop via 101.1.191.18 up ip neigh add 173.238.192.89 lladdr 02:7a:e6:00:d3:8f dev swp33 up ip neigh add 101.1.191.18 lladdr 02:2b:1a:5a:a4:b1 dev swp34 INFO asyncssh:logging.py:92 [conn=102, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=21] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=102, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=22] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=102, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=22] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'swp33', 'swp34', 'swp35'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: swp33: netlink: ip link set dev swp33 up info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /bin/ip -force -batch - [addr add 173.238.192.1/19 dev swp33 ] info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: swp34: netlink: ip link set dev swp34 up info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /bin/ip -force -batch - [addr add 101.0.0.1/10 dev swp34 ] info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp35: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: swp35: netlink: ip link set dev swp35 up info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /bin/ip -force -batch - [addr add 2.2.2.1/24 dev swp35 ] info: executing ip route add 89.122.131.0/24 nexthop via 173.238.192.89 nexthop via 101.1.191.18 info: executing ip neigh add 173.238.192.89 lladdr 02:7a:e6:00:d3:8f dev swp33 info: executing ip neigh add 101.1.191.18 lladdr 02:2b:1a:5a:a4:b1 dev swp34 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO asyncssh:logging.py:92 [conn=102, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=23] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=102, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=24] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=102, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=24] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto swp33 iface swp33 inet static [pass] address 173.238.192.1/19 [pass] auto swp34 iface swp34 inet static [pass] address 101.0.0.1/10 [pass] auto swp35 iface swp35 inet static [pass] up ip route add 89.122.131.0/24 nexthop via 173.238.192.89 nexthop via 101.1.191.18 [] up ip neigh add 173.238.192.89 lladdr 02:7a:e6:00:d3:8f dev swp33 [] up ip neigh add 101.1.191.18 lladdr 02:2b:1a:5a:a4:b1 dev swp34 [] address 2.2.2.1/24 [pass] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_173.238.223.246/19', 'count': 1, 'ip': '173.238.223.246', 'gw': '173.238.192.1', 'plen': 19, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_101.63.255.246/10', 'count': 1, 'ip': '101.63.255.246', 'gw': '101.0.0.1', 'plen': 10, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': '24', 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=102, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=25] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=102, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=26] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=102, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=26] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=102, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=102, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=28] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=102, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bidirectional_stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_173.238.223.246/19 to 10.36.118.199:2:2_101.63.255.246/10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_173.238.223.246/19 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_101.63.255.246/10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=102, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=102, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=30] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=102, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"2.2.2.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"89.122.131.0/24","flags":["rt_offload"],"nexthops":[{"gateway":"173.238.192.89","dev":"swp33","weight":1,"flags":["offload"]},{"gateway":"101.1.191.18","dev":"swp34","weight":1,"flags":["offload"]}]},{"dst":"101.0.0.0/10","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"101.0.0.1","flags":["rt_trap"]},{"dst":"173.238.192.0/19","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"173.238.192.1","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=102, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 address show INFO asyncssh:logging.py:92 [conn=102, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=32] Command: ip -j -4 address show INFO asyncssh:logging.py:92 [conn=102, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"addr_info":[{"family":"inet","local":"173.238.192.1","prefixlen":19,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"addr_info":[{"family":"inet","local":"101.0.0.1","prefixlen":10,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad408340>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bidirectional_stream SIP-DIP 101.63.255.246-173.238.223.246 Tx 2320453 Rx 2320453 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI bidirectional_stream SIP-DIP 173.238.223.246-101.63.255.246 Tx 2320453 Rx 2320453 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bidirectional_stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_173.238.223.246/19 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_101.63.255.246/10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad093b20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 3758756 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1879379 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 5638134 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1 INFO asyncssh:logging.py:92 [conn=102, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=102] Closing connection INFO asyncssh:logging.py:92 [conn=102] Sending disconnect: Disconnected by application (11) INFO asyncssh:logging.py:92 [conn=102] Connection closed INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=103] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=103] Local address: 172.17.0.4, port 45852 INFO asyncssh:logging.py:92 [conn=103] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=103] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=103] Auth for user root succeeded DEBUG infra1:Logger.py:156 echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=103, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=0] Command: echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=103, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=0] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103] Connection lost INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 300 interval = 15 INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=104] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=104] Local address: 172.17.0.4, port 35878 INFO asyncssh:logging.py:92 [conn=104] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=104] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=104] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=104, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:40:06 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 51s INFO asyncssh:logging.py:92 [conn=104, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=1] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=104, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=2] Command: echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=104, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=2] Channel closed DEBUG infra1:Logger.py:156 System Information: = { Product Name: AS4224-52P-O-AC-F-EC Part Number: F0LEC4224004Z Serial Number: 422452P2103001 MAC: 90:3c:b3:8b:ef:32 MAC Range: 69 Manufacturer: Accton Manufacture Date: 02/03/2021 17:31:43 Vendor: Edgecore Platform Name: arm64-accton_as4224_52p-r0 Label Revision: R0CA Country Code: TW ONIE Version: 2020.02.00.09 } thermal @ 1 = { Description: Thermal 1 - U51_MGMT (0x48) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 2 = { Description: Thermal 2 - U25_MAC0 (0x49) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 35500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 3 = { Description: Thermal 3 - U33_CPLD (0x4B) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 27000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 4 = { Description: Thermal 4 - U5_A7K (0x4C) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 33500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 5 = { Description: CPU Core (A7K) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } led @ 1 = { Description: Chassis LED 1 (PSU LED) Status: 0x00000005 [ PRESENT,ON ] Caps: 0x00400001 [ ON_OFF,AUTO ] Mode: AUTO Char: } psu @ 1 = { Description: PSU-1 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } psu @ 2 = { Description: PSU-2 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } fan @ 1 = { Description: Chassis Fan - 1 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 2 = { Description: Chassis Fan - 2 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 3 = { Description: Chassis Fan - 3 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 4 = { Description: Chassis Fan - 4 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 5 = { Description: Chassis Fan - 5 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 6 = { Description: Chassis Fan - 6 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } SFPs: Presence Bitmap: 49 50 51 52 RX_LOS Bitmap: 49 50 51 52 Port 49: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 43 4c 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 38 20 20 68 f0 03 ec 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 50: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 46 30 44 44 54 20 20 20 20 20 0050: 20 20 20 20 31 31 30 34 30 37 20 20 68 f0 03 e0 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 51: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 36 4d 44 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 d3 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 52: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 35 4e 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 e1 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 60 interval = 15 INFO asyncssh:logging.py:92 [conn=104, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=3] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=104, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=4] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=104, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=4] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto swp33 iface swp33 inet static [pass] address 173.238.192.1/19 [pass] auto swp34 iface swp34 inet static [pass] address 101.0.0.1/10 [pass] auto swp35 iface swp35 inet static [pass] up ip route add 89.122.131.0/24 nexthop via 173.238.192.89 nexthop via 101.1.191.18 [] up ip neigh add 173.238.192.89 lladdr 02:7a:e6:00:d3:8f dev swp33 [] up ip neigh add 101.1.191.18 lladdr 02:2b:1a:5a:a4:b1 dev swp34 [] address 2.2.2.1/24 [pass] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 0s INFO asyncssh:logging.py:92 [conn=104, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=104, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=6] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=104, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=6] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"2.2.2.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"89.122.131.0/24","flags":["rt_offload"],"nexthops":[{"gateway":"173.238.192.89","dev":"swp33","weight":1,"flags":["offload"]},{"gateway":"101.1.191.18","dev":"swp34","weight":1,"flags":["offload"]}]},{"dst":"101.0.0.0/10","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"101.0.0.1","flags":["rt_trap"]},{"dst":"173.238.192.0/19","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"173.238.192.1","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=104, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 address show INFO asyncssh:logging.py:92 [conn=104, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=8] Command: ip -j -4 address show INFO asyncssh:logging.py:92 [conn=104, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"addr_info":[{"family":"inet","local":"173.238.192.1","prefixlen":19,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"addr_info":[{"family":"inet","local":"101.0.0.1","prefixlen":10,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad093e80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 4815255 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2407629 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 7222878 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: increment_ip_dst INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bidirectional_stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_173.238.223.246/19 to 10.36.118.199:2:2_101.63.255.246/10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_173.238.223.246/19 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_101.63.255.246/10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49accf4220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bidirectional_stream SIP-DIP 101.63.255.246-173.238.223.246 Tx 2297888 Rx 2297888 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI bidirectional_stream SIP-DIP 173.238.223.246-101.63.255.246 Tx 2297888 Rx 2297888 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_ipv4_ecmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py INFO asyncssh:logging.py:92 [conn=104, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=9] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=104, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=10] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=104, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=11] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=104, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=12] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=104, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=12] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['swp33', 'swp34', 'swp35'] info: swp33: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: swp33: netlink: ip link set dev swp33 down info: executing /bin/ip addr del 173.238.192.1/19 dev swp33 info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing /bin/ip addr del 101.0.0.1/10 dev swp34 info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp35: running ops ... info: swp35: netlink: ip link set dev swp35 down info: executing /bin/ip addr del 2.2.2.1/24 dev swp35 info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=104, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=104, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:41:48 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=104, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=104, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=104, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=104, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=104, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:2b:40:70:f7:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:8e:1b:57:49:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=104, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=104, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=104, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=21] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=104, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=104, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=22] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 | |||
| Passed | functional/ifupdown2/test_ifupdown2.py::test_ifupdown2_bridge | 361.73 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6312' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_bridge">Starting testcase:test_ifupdown2_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=104, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=105] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=105] Local address: 172.17.0.4, port 58248 INFO asyncssh:logging.py:92 [conn=105] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=105] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=105] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=105, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:41:49 UTC 2087 INFO asyncssh:logging.py:92 [conn=105, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=105, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=2] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=105, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=2] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=105, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=105, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=4] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=105, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=105, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=6] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=105, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=6] Channel closed DEBUG infra1:Logger.py:156 ------------------------------Captured stdout call------------------------------ Connection made to 10.36.118.46 Authentication complete SSH connection closed SSH connection closed SSH connection closed Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=105, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=105, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:41:49 UTC 2087 INFO asyncssh:logging.py:92 [conn=105, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=9] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=105, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=10] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=105, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-vlan-aware yes bridge-pvid 1 bridge-vids 100 101 102 up bridge fdb add 00:22:00:64:00:00 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:01 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:02 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:03 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:04 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:05 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:06 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:07 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:08 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:09 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0A dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0B dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0C dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0D dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0E dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0F dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:10 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:11 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:12 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:13 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:14 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:15 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:16 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:17 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:18 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:19 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1A dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1B dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1C dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1D dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1E dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1F dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:20 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:21 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:22 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:23 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:24 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:25 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:26 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:27 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:28 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:29 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:2A dev swp34 master static vlan 100 up bridge fdb add 00:23:00:65:00:00 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:01 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:02 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:03 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:04 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:05 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:06 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:07 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:08 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:09 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0A dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0B dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0C dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0D dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0E dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0F dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:10 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:11 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:12 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:13 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:14 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:15 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:16 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:17 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:18 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:19 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1A dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1B dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1C dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1D dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1E dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1F dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:20 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:21 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:22 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:23 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:24 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:25 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:26 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:27 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:28 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:29 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:2A dev swp35 master static vlan 101 up bridge fdb add 00:24:00:66:00:00 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:01 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:02 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:03 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:04 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:05 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:06 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:07 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:08 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:09 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0A dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0B dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0C dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0D dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0E dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0F dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:10 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:11 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:12 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:13 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:14 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:15 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:16 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:17 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:18 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:19 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1A dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1B dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1C dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1D dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1E dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1F dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:20 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:21 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:22 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:23 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:24 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:25 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:26 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:27 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:28 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:29 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:2A dev swp36 master static vlan 102 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=105, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=12] Command: echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-vlan-aware yes bridge-pvid 1 bridge-vids 100 101 102 up bridge fdb add 00:22:00:64:00:00 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:01 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:02 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:03 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:04 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:05 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:06 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:07 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:08 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:09 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0A dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0B dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0C dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0D dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0E dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0F dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:10 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:11 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:12 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:13 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:14 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:15 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:16 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:17 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:18 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:19 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1A dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1B dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1C dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1D dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1E dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1F dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:20 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:21 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:22 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:23 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:24 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:25 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:26 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:27 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:28 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:29 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:2A dev swp34 master static vlan 100 up bridge fdb add 00:23:00:65:00:00 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:01 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:02 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:03 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:04 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:05 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:06 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:07 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:08 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:09 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0A dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0B dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0C dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0D dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0E dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0F dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:10 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:11 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:12 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:13 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:14 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:15 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:16 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:17 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:18 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:19 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1A dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1B dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1C dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1D dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1E dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1F dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:20 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:21 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:22 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:23 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:24 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:25 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:26 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:27 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:28 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:29 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:2A dev swp35 master static vlan 101 up bridge fdb add 00:24:00:66:00:00 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:01 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:02 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:03 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:04 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:05 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:06 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:07 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:08 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:09 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0A dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0B dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0C dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0D dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0E dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0F dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:10 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:11 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:12 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:13 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:14 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:15 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:16 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:17 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:18 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:19 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1A dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1B dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1C dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1D dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1E dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1F dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:20 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:21 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:22 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:23 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:24 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:25 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:26 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:27 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:28 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:29 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:2A dev swp36 master static vlan 102 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=105, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=13] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=105, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=14] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=105, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=14] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback address 20.20.0.1/32 auto ma1 iface ma1 inet dhcp auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-vlan-aware yes bridge-pvid 1 bridge-vids 100 101 102 up bridge fdb add 00:22:00:64:00:00 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:01 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:02 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:03 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:04 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:05 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:06 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:07 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:08 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:09 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0A dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0B dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0C dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0D dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0E dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0F dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:10 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:11 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:12 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:13 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:14 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:15 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:16 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:17 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:18 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:19 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1A dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1B dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1C dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1D dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1E dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:1F dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:20 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:21 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:22 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:23 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:24 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:25 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:26 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:27 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:28 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:29 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:2A dev swp34 master static vlan 100 up bridge fdb add 00:23:00:65:00:00 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:01 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:02 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:03 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:04 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:05 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:06 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:07 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:08 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:09 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0A dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0B dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0C dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0D dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0E dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0F dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:10 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:11 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:12 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:13 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:14 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:15 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:16 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:17 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:18 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:19 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1A dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1B dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1C dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1D dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1E dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:1F dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:20 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:21 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:22 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:23 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:24 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:25 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:26 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:27 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:28 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:29 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:2A dev swp35 master static vlan 101 up bridge fdb add 00:24:00:66:00:00 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:01 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:02 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:03 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:04 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:05 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:06 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:07 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:08 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:09 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0A dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0B dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0C dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0D dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0E dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0F dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:10 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:11 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:12 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:13 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:14 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:15 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:16 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:17 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:18 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:19 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1A dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1B dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1C dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1D dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1E dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:1F dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:20 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:21 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:22 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:23 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:24 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:25 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:26 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:27 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:28 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:29 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:2A dev swp36 master static vlan 102 INFO asyncssh:logging.py:92 [conn=105, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=15] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=105, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=16] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=105, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=16] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp36: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp35: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: br0: running ops ... info: br0: netlink: ip link add br0 type bridge info: br0: apply bridge settings info: br0: set bridge-vlan-aware yes info: br0: set bridge-mcsnoop yes info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp33 master br0 addr flush dev swp33 link set dev swp34 master br0 addr flush dev swp34 link set dev swp35 master br0 addr flush dev swp35 link set dev swp36 master br0 addr flush dev swp36 ] info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: swp33: set bridge-arp-nd-suppress off info: br0: swp36: set bridge-arp-nd-suppress off info: br0: swp34: set bridge-arp-nd-suppress off info: br0: swp35: set bridge-arp-nd-suppress off info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: executing /sbin/bridge -c -json vlan show info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: executing /sbin/bridge -force -batch - [vlan add vid 100-102 dev swp33 vlan add vid 100-102 dev swp36 vlan add vid 100-102 dev swp34 vlan add vid 100-102 dev swp35 ] info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing bridge fdb add 00:22:00:64:00:00 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:01 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:02 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:03 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:04 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:05 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:06 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:07 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:08 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:09 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:0A dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:0B dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:0C dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:0D dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:0E dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:0F dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:10 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:11 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:12 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:13 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:14 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:15 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:16 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:17 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:18 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:19 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:1A dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:1B dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:1C dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:1D dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:1E dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:1F dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:20 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:21 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:22 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:23 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:24 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:25 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:26 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:27 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:28 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:29 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:2A dev swp34 master static vlan 100 info: executing bridge fdb add 00:23:00:65:00:00 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:01 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:02 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:03 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:04 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:05 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:06 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:07 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:08 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:09 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:0A dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:0B dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:0C dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:0D dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:0E dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:0F dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:10 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:11 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:12 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:13 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:14 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:15 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:16 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:17 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:18 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:19 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:1A dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:1B dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:1C dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:1D dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:1E dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:1F dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:20 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:21 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:22 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:23 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:24 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:25 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:26 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:27 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:28 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:29 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:2A dev swp35 master static vlan 101 info: executing bridge fdb add 00:24:00:66:00:00 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:01 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:02 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:03 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:04 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:05 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:06 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:07 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:08 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:09 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:0A dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:0B dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:0C dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:0D dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:0E dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:0F dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:10 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:11 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:12 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:13 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:14 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:15 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:16 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:17 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:18 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:19 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:1A dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:1B dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:1C dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:1D dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:1E dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:1F dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:20 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:21 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:22 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:23 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:24 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:25 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:26 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:27 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:28 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:29 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:2A dev swp36 master static vlan 102 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO asyncssh:logging.py:92 [conn=105, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=17] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=105, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=18] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=105, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=18] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] up bridge fdb add 00:22:00:64:00:00 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:01 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:02 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:03 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:04 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:05 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:06 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:07 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:08 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:09 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0A dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0B dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0C dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0D dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0E dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0F dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:10 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:11 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:12 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:13 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:14 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:15 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:16 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:17 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:18 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:19 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:1A dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:1B dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:1C dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:1D dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:1E dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:1F dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:20 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:21 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:22 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:23 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:24 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:25 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:26 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:27 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:28 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:29 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:2A dev swp34 master static vlan 100 [] up bridge fdb add 00:23:00:65:00:00 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:01 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:02 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:03 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:04 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:05 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:06 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:07 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:08 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:09 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0A dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0B dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0C dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0D dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0E dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0F dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:10 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:11 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:12 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:13 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:14 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:15 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:16 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:17 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:18 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:19 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:1A dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:1B dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:1C dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:1D dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:1E dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:1F dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:20 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:21 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:22 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:23 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:24 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:25 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:26 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:27 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:28 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:29 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:2A dev swp35 master static vlan 101 [] up bridge fdb add 00:24:00:66:00:00 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:01 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:02 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:03 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:04 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:05 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:06 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:07 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:08 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:09 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0A dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0B dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0C dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0D dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0E dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0F dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:10 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:11 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:12 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:13 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:14 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:15 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:16 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:17 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:18 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:19 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:1A dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:1B dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:1C dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:1D dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:1E dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:1F dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:20 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:21 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:22 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:23 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:24 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:25 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:26 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:27 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:28 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:29 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:2A dev swp36 master static vlan 102 [] bridge-ports swp33 swp34 swp35 swp36 [pass] bridge-vlan-aware yes [pass] bridge-pvid 1 bridge-vids 100 101 102 [] INFO asyncssh:logging.py:92 [conn=105, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=105, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=105, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ee:2b:40:70:f7:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:8e:1b:57:49:16","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":58,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=105, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show br0 INFO asyncssh:logging.py:92 [conn=105, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=22] Command: ip -j link show br0 INFO asyncssh:logging.py:92 [conn=105, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":58,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=105, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show master br0 INFO asyncssh:logging.py:92 [conn=105, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=24] Command: ip -j link show master br0 INFO asyncssh:logging.py:92 [conn=105, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=105, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=25] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show INFO asyncssh:logging.py:92 [conn=105, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=26] Command: bridge -j vlan show INFO asyncssh:logging.py:92 [conn=105, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifname":"swp33","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]},{"vlan":100},{"vlan":101},{"vlan":102}]},{"ifname":"swp34","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]},{"vlan":100},{"vlan":101},{"vlan":102}]},{"ifname":"swp35","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]},{"vlan":100},{"vlan":101},{"vlan":102}]},{"ifname":"swp36","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]},{"vlan":100},{"vlan":101},{"vlan":102}]},{"ifname":"br0","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]}]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for s1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vlan_100 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vlan_101 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vlan_102 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad0933d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI s1 SIP-DIP N/A Tx 797632 Rx 797632 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI s1 SIP-DIP N/A Tx 797632 Rx 797632 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI s1 SIP-DIP N/A Tx 797632 Rx 797632 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI vlan_100 SIP-DIP N/A Tx 797632 Rx 797632 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI vlan_101 SIP-DIP N/A Tx 797632 Rx 797632 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI vlan_102 SIP-DIP N/A Tx 797632 Rx 797632 Loss 0.000 INFO asyncssh:logging.py:92 [conn=105, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=105] Closing connection INFO asyncssh:logging.py:92 [conn=105] Sending disconnect: Disconnected by application (11) INFO asyncssh:logging.py:92 [conn=105] Connection closed INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=106] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=106] Local address: 172.17.0.4, port 58266 INFO asyncssh:logging.py:92 [conn=106] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=106] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=106] Auth for user root succeeded DEBUG infra1:Logger.py:156 echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=106, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=0] Command: echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=106, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=0] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106] Connection lost INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 300 interval = 15 INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=107] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=107] Local address: 172.17.0.4, port 50998 INFO asyncssh:logging.py:92 [conn=107] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=107] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=107] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=107, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:47:01 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 51s INFO asyncssh:logging.py:92 [conn=107, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=1] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=107, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=2] Command: echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=107, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=2] Channel closed DEBUG infra1:Logger.py:156 System Information: = { Product Name: AS4224-52P-O-AC-F-EC Part Number: F0LEC4224004Z Serial Number: 422452P2103001 MAC: 90:3c:b3:8b:ef:32 MAC Range: 69 Manufacturer: Accton Manufacture Date: 02/03/2021 17:31:43 Vendor: Edgecore Platform Name: arm64-accton_as4224_52p-r0 Label Revision: R0CA Country Code: TW ONIE Version: 2020.02.00.09 } thermal @ 1 = { Description: Thermal 1 - U51_MGMT (0x48) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 27000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 2 = { Description: Thermal 2 - U25_MAC0 (0x49) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 36500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 3 = { Description: Thermal 3 - U33_CPLD (0x4B) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 28500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 4 = { Description: Thermal 4 - U5_A7K (0x4C) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 34000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 5 = { Description: CPU Core (A7K) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 27000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } led @ 1 = { Description: Chassis LED 1 (PSU LED) Status: 0x00000005 [ PRESENT,ON ] Caps: 0x00400001 [ ON_OFF,AUTO ] Mode: AUTO Char: } psu @ 1 = { Description: PSU-1 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } psu @ 2 = { Description: PSU-2 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } fan @ 1 = { Description: Chassis Fan - 1 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 2 = { Description: Chassis Fan - 2 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8587 Per: 41 Model: NULL SN: NULL } fan @ 3 = { Description: Chassis Fan - 3 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 4 = { Description: Chassis Fan - 4 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 5 = { Description: Chassis Fan - 5 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 6 = { Description: Chassis Fan - 6 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } SFPs: Presence Bitmap: 49 50 51 52 RX_LOS Bitmap: 49 50 51 52 Port 49: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 43 4c 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 38 20 20 68 f0 03 ec 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 50: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 46 30 44 44 54 20 20 20 20 20 0050: 20 20 20 20 31 31 30 34 30 37 20 20 68 f0 03 e0 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 51: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 36 4d 44 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 d3 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 52: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 35 4e 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 e1 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 60 interval = 15 INFO asyncssh:logging.py:92 [conn=107, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=3] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=107, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=4] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=107, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=4] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] up bridge fdb add 00:22:00:64:00:00 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:01 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:02 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:03 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:04 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:05 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:06 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:07 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:08 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:09 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0A dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0B dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0C dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0D dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0E dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0F dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:10 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:11 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:12 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:13 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:14 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:15 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:16 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:17 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:18 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:19 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:1A dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:1B dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:1C dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:1D dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:1E dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:1F dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:20 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:21 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:22 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:23 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:24 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:25 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:26 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:27 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:28 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:29 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:2A dev swp34 master static vlan 100 [] up bridge fdb add 00:23:00:65:00:00 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:01 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:02 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:03 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:04 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:05 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:06 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:07 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:08 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:09 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0A dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0B dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0C dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0D dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0E dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0F dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:10 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:11 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:12 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:13 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:14 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:15 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:16 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:17 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:18 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:19 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:1A dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:1B dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:1C dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:1D dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:1E dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:1F dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:20 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:21 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:22 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:23 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:24 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:25 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:26 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:27 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:28 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:29 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:2A dev swp35 master static vlan 101 [] up bridge fdb add 00:24:00:66:00:00 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:01 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:02 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:03 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:04 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:05 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:06 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:07 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:08 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:09 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0A dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0B dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0C dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0D dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0E dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0F dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:10 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:11 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:12 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:13 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:14 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:15 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:16 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:17 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:18 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:19 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:1A dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:1B dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:1C dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:1D dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:1E dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:1F dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:20 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:21 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:22 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:23 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:24 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:25 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:26 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:27 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:28 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:29 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:2A dev swp36 master static vlan 102 [] bridge-ports swp33 swp34 swp35 swp36 [pass] bridge-vlan-aware yes [pass] bridge-pvid 1 bridge-vids 100 101 102 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 0s INFO asyncssh:logging.py:92 [conn=107, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=107, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=6] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=107, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=6] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"12:a4:36:17:87:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f2:64:98:89:dd:10","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":58,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=107, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show br0 INFO asyncssh:logging.py:92 [conn=107, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=8] Command: ip -j link show br0 INFO asyncssh:logging.py:92 [conn=107, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":58,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=107, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show master br0 INFO asyncssh:logging.py:92 [conn=107, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=10] Command: ip -j link show master br0 INFO asyncssh:logging.py:92 [conn=107, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=107, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show INFO asyncssh:logging.py:92 [conn=107, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=12] Command: bridge -j vlan show INFO asyncssh:logging.py:92 [conn=107, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifname":"swp33","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]},{"vlan":100},{"vlan":101},{"vlan":102}]},{"ifname":"swp34","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]},{"vlan":100},{"vlan":101},{"vlan":102}]},{"ifname":"swp35","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]},{"vlan":100},{"vlan":101},{"vlan":102}]},{"ifname":"swp36","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]},{"vlan":100},{"vlan":101},{"vlan":102}]},{"ifname":"br0","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]}]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad093b80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI s1 SIP-DIP N/A Tx 900909 Rx 900909 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI s1 SIP-DIP N/A Tx 900908 Rx 900908 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI s1 SIP-DIP N/A Tx 900908 Rx 900908 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI vlan_100 SIP-DIP N/A Tx 900908 Rx 900908 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI vlan_101 SIP-DIP N/A Tx 900909 Rx 900909 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI vlan_102 SIP-DIP N/A Tx 900908 Rx 900908 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py INFO asyncssh:logging.py:92 [conn=107, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=13] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=107, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=14] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=107, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=15] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=107, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=16] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=107, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=16] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['br0'] info: br0: running ops ... info: br0: netlink: ip link set dev br0 down info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: br0: netlink: ip link del br0 info: executing /etc/network/if-post-down.d/hostapd info: swp33: running ops ... info: swp33: netlink: ip link set dev swp33 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp36: running ops ... info: swp36: netlink: ip link set dev swp36 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp35: running ops ... info: swp35: netlink: ip link set dev swp35 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO asyncssh:logging.py:92 [conn=107, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=107, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:47:50 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=107, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=107, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=107, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] | |||
| Passed | functional/ifupdown2/test_ifupdown2.py::test_ifupdown2_acl_random[single_block-acl_random] | 348.16 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6425' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_acl_random[single_block-acl_random]">Starting testcase:test_ifupdown2_acl_random[single_block-acl_random] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=108, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=109] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=109] Local address: 172.17.0.4, port 50120 INFO asyncssh:logging.py:92 [conn=109] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=109] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=109] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:47:56 UTC 2087 INFO asyncssh:logging.py:92 [conn=109, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=109, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=109, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=109, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=109, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=109, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=109, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=109, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=109, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=109, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:47:56 UTC 2087 INFO asyncssh:logging.py:92 [conn=109, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=9] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=109, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=10] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=109, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=10] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=109, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=109, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=12] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=109, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=109, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=13] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=109, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=14] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=109, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=14] Channel closed DEBUG infra1:Logger.py:156 ------------------------------Captured stdout call------------------------------ Connection made to 10.36.118.46 Authentication complete SSH connection closed SSH connection closed SSH connection closed Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:47:56 UTC 2087 INFO asyncssh:logging.py:92 [conn=109, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=17] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=109, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=18] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=109, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=109, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress down tc qdisc del dev swp33 ingress post-up tc filter add dev swp33 ingress pref 2073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action pass post-up tc filter add dev swp33 ingress pref 12073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action drop auto swp36 iface swp36 inet static ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=109, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=20] Command: echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress down tc qdisc del dev swp33 ingress post-up tc filter add dev swp33 ingress pref 2073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action pass post-up tc filter add dev swp33 ingress pref 12073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action drop auto swp36 iface swp36 inet static ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=109, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=109, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=21] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=109, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=22] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=109, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=22] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback address 20.20.0.1/32 auto ma1 iface ma1 inet dhcp auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress post-up tc filter add dev swp33 ingress pref 2073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action pass post-up tc filter add dev swp33 ingress pref 12073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action drop down tc qdisc del dev swp33 ingress auto swp36 iface swp36 inet static INFO asyncssh:logging.py:92 [conn=109, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=23] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=109, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=24] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=109, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=24] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0', 'swp33', 'swp36'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: executing tc qdisc add dev swp33 ingress info: executing tc filter add dev swp33 ingress pref 2073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action pass info: executing tc filter add dev swp33 ingress pref 12073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action drop info: swp36: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp35: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: br0: running ops ... info: br0: netlink: ip link add br0 type bridge info: br0: apply bridge settings info: br0: set bridge-mcsnoop yes info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp33 master br0 addr flush dev swp33 link set dev swp34 master br0 addr flush dev swp34 link set dev swp35 master br0 addr flush dev swp35 link set dev swp36 master br0 addr flush dev swp36 ] info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO asyncssh:logging.py:92 [conn=109, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=25] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=109, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=26] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=109, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=26] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 2073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action pass [] post-up tc filter add dev swp33 ingress pref 12073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_11.1.1.2/24', 'count': 1, 'ip': '11.1.1.2', 'gw': '11.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_12.1.1.2/24', 'count': 1, 'ip': '12.1.1.2', 'gw': '12.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_13.1.1.2/24', 'count': 1, 'ip': '13.1.1.2', 'gw': '13.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_14.1.1.2/24', 'count': 1, 'ip': '14.1.1.2', 'gw': '14.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_11.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_12.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_13.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_14.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acd7f880>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2970629 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2970543 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 2970446 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 2970355 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=109, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=27] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S sed -i -e 's/.*post-up tc filter add dev swp33 ingress pref 2073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action pass //g' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=109, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=28] Command: echo onl | sudo -S sed -i -e 's/.*post-up tc filter add dev swp33 ingress pref 2073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action pass //g' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=109, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=109, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=29] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=109, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=30] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=109, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=30] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 12073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO asyncssh:logging.py:92 [conn=109, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=109] Closing connection INFO asyncssh:logging.py:92 [conn=109] Sending disconnect: Disconnected by application (11) INFO asyncssh:logging.py:92 [conn=109] Connection closed INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=110] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=110] Local address: 172.17.0.4, port 47684 INFO asyncssh:logging.py:92 [conn=110] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=110] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=110] Auth for user root succeeded DEBUG infra1:Logger.py:156 echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=110, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=0] Command: echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=110, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=0] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110] Connection lost INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 300 interval = 15 INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=111] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=111] Local address: 172.17.0.4, port 33220 INFO asyncssh:logging.py:92 [conn=111] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=111] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=111] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:52:39 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 51s INFO asyncssh:logging.py:92 [conn=111, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=1] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=111, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=2] Command: echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=111, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=2] Channel closed DEBUG infra1:Logger.py:156 System Information: = { Product Name: AS4224-52P-O-AC-F-EC Part Number: F0LEC4224004Z Serial Number: 422452P2103001 MAC: 90:3c:b3:8b:ef:32 MAC Range: 69 Manufacturer: Accton Manufacture Date: 02/03/2021 17:31:43 Vendor: Edgecore Platform Name: arm64-accton_as4224_52p-r0 Label Revision: R0CA Country Code: TW ONIE Version: 2020.02.00.09 } thermal @ 1 = { Description: Thermal 1 - U51_MGMT (0x48) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 2 = { Description: Thermal 2 - U25_MAC0 (0x49) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 36000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 3 = { Description: Thermal 3 - U33_CPLD (0x4B) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 27500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 4 = { Description: Thermal 4 - U5_A7K (0x4C) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 34000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 5 = { Description: CPU Core (A7K) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } led @ 1 = { Description: Chassis LED 1 (PSU LED) Status: 0x00000005 [ PRESENT,ON ] Caps: 0x00400001 [ ON_OFF,AUTO ] Mode: AUTO Char: } psu @ 1 = { Description: PSU-1 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } psu @ 2 = { Description: PSU-2 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } fan @ 1 = { Description: Chassis Fan - 1 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 2 = { Description: Chassis Fan - 2 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 3 = { Description: Chassis Fan - 3 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 4 = { Description: Chassis Fan - 4 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 5 = { Description: Chassis Fan - 5 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 6 = { Description: Chassis Fan - 6 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } SFPs: Presence Bitmap: 49 50 51 52 RX_LOS Bitmap: 49 50 51 52 Port 49: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 43 4c 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 38 20 20 68 f0 03 ec 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 50: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 46 30 44 44 54 20 20 20 20 20 0050: 20 20 20 20 31 31 30 34 30 37 20 20 68 f0 03 e0 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 51: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 36 4d 44 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 d3 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 52: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 35 4e 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 e1 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 120 interval = 15 INFO asyncssh:logging.py:92 [conn=111, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=3] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=4] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=4] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 12073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 0s INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acd7f670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 3242798 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=111, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S sed -i '/^post-up tc filter add dev swp33 ingress pref 12073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action drop /i post-up tc filter add dev swp33 ingress pref 2073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action pass ' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=6] Command: echo onl | sudo -S sed -i '/^post-up tc filter add dev swp33 ingress pref 12073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action drop /i post-up tc filter add dev swp33 ingress pref 2073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action pass ' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=7] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=111, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=8] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=111, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=8] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0', 'swp33', 'swp36'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp33: running ops ... info: br0: applying bridge port configuration: ['swp33'] info: br0: swp33: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp33: ignoring config (stp on bridge br0 is not on yet) info: vrf: syncing table map to /etc/iproute2/rt_tables.d/ifupdown2_vrf_map.conf info: vrf: dumping iproute2_vrf_map info: {} info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: executing tc qdisc add dev swp33 ingress warning: swp33: post-up cmd 'tc qdisc add dev swp33 ingress' failed: returned 2 (Error: Exclusivity flag on, cannot modify. ) info: executing tc filter add dev swp33 ingress pref 2073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action pass info: executing tc filter add dev swp33 ingress pref 12073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action drop info: swp36: running ops ... info: br0: applying bridge port configuration: ['swp36'] info: br0: swp36: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp36: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp34: running ops ... info: br0: applying bridge port configuration: ['swp34'] info: br0: swp34: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp34: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp35: running ops ... info: br0: applying bridge port configuration: ['swp35'] info: br0: swp35: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp35: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: br0: running ops ... info: br0: bridge already exists info: br0: apply bridge settings info: br0: reset bridge-hashel to default: 4 info: br0: reset bridge-hashmax to default: 512 info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: swp33: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp36: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp34: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp35: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO asyncssh:logging.py:92 [conn=111, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=9] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=10] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=10] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 2073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action pass [] post-up tc filter add dev swp33 ingress pref 12073 protocol ip flower skip_sw src_mac 02:45:c3:73:71:aa dst_mac 02:17:27:a1:50:51 src_ip 65.31.205.198 dst_ip 29.95.227.68 ip_proto udp src_port 3560 dst_port 56243 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad440700>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 3480000 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 3479906 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3479807 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3479698 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_acl_random[single_block-acl_random] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py INFO asyncssh:logging.py:92 [conn=111, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=11] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=111, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=12] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=111, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=13] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=111, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=14] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=111, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=14] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['swp36', 'br0', 'swp33'] info: br0: running ops ... info: br0: netlink: ip link set dev br0 down info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: br0: netlink: ip link del br0 info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp35: running ops ... info: swp35: netlink: ip link set dev swp35 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp33: running ops ... info: swp33: netlink: ip link set dev swp33 down info: executing tc qdisc del dev swp33 ingress info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp36: running ops ... info: swp36: netlink: ip link set dev swp36 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:53:44 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=111, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:53:44 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=111, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=111, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=20] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=111, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=111, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=111, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=22] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=111, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=111, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=22] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=111, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=111, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=24] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=111, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=111, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=111, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=111, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=111, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=111, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=111, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=111, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=111, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=111, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=111, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=111, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=111, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=111, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=111, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=111, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=111, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=111, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=111, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=111, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=111, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=111, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=111, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=111, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=111, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=111, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=111, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=111, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=111, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=111, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=111, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=111, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=111, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=111, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=111, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=111, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=42] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=111, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=111, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=111, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=111, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=44] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=111, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=111, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=111, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=111, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=46] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=111, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=111, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=111, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=111, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=48] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=111, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=111, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=111, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=49] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=50] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:53:45 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=111, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=111, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=52] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=111, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=52] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=111, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=53] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=111, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=54] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=111, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=54] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ifupdown2/test_ifupdown2.py::test_ifupdown2_acl_random[single_block-acl_and_trap_policer] | 366.68 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6535' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_acl_random[single_block-acl_and_trap_policer]">Starting testcase:test_ifupdown2_acl_random[single_block-acl_and_trap_policer] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=112] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=112] Local address: 172.17.0.4, port 54620 INFO asyncssh:logging.py:92 [conn=112] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=112] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=112] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:53:45 UTC 2087 INFO asyncssh:logging.py:92 [conn=112, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=112, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=112, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=112, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=112, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=112, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=112, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=112, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=112, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:53:45 UTC 2087 INFO asyncssh:logging.py:92 [conn=112, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=9] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=112, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=10] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=112, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=10] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=112, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=112, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=12] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=112, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=13] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=112, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=14] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=112, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=14] Channel closed DEBUG infra1:Logger.py:156 ------------------------------Captured stdout call------------------------------ Connection made to 10.36.118.46 Authentication complete SSH connection closed SSH connection closed SSH connection closed Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:53:45 UTC 2087 INFO asyncssh:logging.py:92 [conn=112, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=17] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=112, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=18] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=112, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress down tc qdisc del dev swp33 ingress post-up tc filter add dev swp33 ingress pref 2117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action police rate 2891655bps burst 2892655 conform-exceed drop action pass post-up tc filter add dev swp33 ingress pref 12117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action trap action police rate 607205bps burst 608205 conform-exceed drop auto swp36 iface swp36 inet static ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=112, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=20] Command: echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress down tc qdisc del dev swp33 ingress post-up tc filter add dev swp33 ingress pref 2117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action police rate 2891655bps burst 2892655 conform-exceed drop action pass post-up tc filter add dev swp33 ingress pref 12117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action trap action police rate 607205bps burst 608205 conform-exceed drop auto swp36 iface swp36 inet static ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=112, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=21] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=112, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=22] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=112, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=22] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback address 20.20.0.1/32 auto ma1 iface ma1 inet dhcp auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress post-up tc filter add dev swp33 ingress pref 2117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action police rate 2891655bps burst 2892655 conform-exceed drop action pass post-up tc filter add dev swp33 ingress pref 12117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action trap action police rate 607205bps burst 608205 conform-exceed drop down tc qdisc del dev swp33 ingress auto swp36 iface swp36 inet static INFO asyncssh:logging.py:92 [conn=112, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=23] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=112, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=24] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=112, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=24] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0', 'swp33', 'swp36'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: executing tc qdisc add dev swp33 ingress info: executing tc filter add dev swp33 ingress pref 2117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action police rate 2891655bps burst 2892655 conform-exceed drop action pass info: executing tc filter add dev swp33 ingress pref 12117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action trap action police rate 607205bps burst 608205 conform-exceed drop info: swp36: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp35: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: br0: running ops ... info: br0: netlink: ip link add br0 type bridge info: br0: apply bridge settings info: br0: set bridge-mcsnoop yes info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp33 master br0 addr flush dev swp33 link set dev swp34 master br0 addr flush dev swp34 link set dev swp35 master br0 addr flush dev swp35 link set dev swp36 master br0 addr flush dev swp36 ] info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO asyncssh:logging.py:92 [conn=112, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=25] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=112, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=26] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=112, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=26] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 2117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action police rate 2891655bps burst 2892655 conform-exceed drop action pass [] post-up tc filter add dev swp33 ingress pref 12117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action trap action police rate 607205bps burst 608205 conform-exceed drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_11.1.1.2/24', 'count': 1, 'ip': '11.1.1.2', 'gw': '11.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_12.1.1.2/24', 'count': 1, 'ip': '12.1.1.2', 'gw': '12.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_13.1.1.2/24', 'count': 1, 'ip': '13.1.1.2', 'gw': '13.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_14.1.1.2/24', 'count': 1, 'ip': '14.1.1.2', 'gw': '14.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_11.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_12.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_13.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_14.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acd7ece0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4214686 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 111266 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 111262 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 111259 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=112, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=27] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S sed -i -e 's/.*post-up tc filter add dev swp33 ingress pref 2117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action police rate 2891655bps burst 2892655 conform-exceed drop action pass //g' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=112, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=28] Command: echo onl | sudo -S sed -i -e 's/.*post-up tc filter add dev swp33 ingress pref 2117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action police rate 2891655bps burst 2892655 conform-exceed drop action pass //g' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=112, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=29] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=112, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=30] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=112, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=30] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 12117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action trap action police rate 607205bps burst 608205 conform-exceed drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO asyncssh:logging.py:92 [conn=112, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=112] Closing connection INFO asyncssh:logging.py:92 [conn=112] Sending disconnect: Disconnected by application (11) INFO asyncssh:logging.py:92 [conn=112] Connection closed INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=113] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=113] Local address: 172.17.0.4, port 60336 INFO asyncssh:logging.py:92 [conn=113] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=113] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=113] Auth for user root succeeded DEBUG infra1:Logger.py:156 echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=113, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=0] Command: echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=113, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=0] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113] Connection lost INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 300 interval = 15 INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=114] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=114] Local address: 172.17.0.4, port 50080 INFO asyncssh:logging.py:92 [conn=114] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=114] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=114] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:58:27 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 51s INFO asyncssh:logging.py:92 [conn=114, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=1] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=114, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=2] Command: echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=114, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=2] Channel closed DEBUG infra1:Logger.py:156 System Information: = { Product Name: AS4224-52P-O-AC-F-EC Part Number: F0LEC4224004Z Serial Number: 422452P2103001 MAC: 90:3c:b3:8b:ef:32 MAC Range: 69 Manufacturer: Accton Manufacture Date: 02/03/2021 17:31:43 Vendor: Edgecore Platform Name: arm64-accton_as4224_52p-r0 Label Revision: R0CA Country Code: TW ONIE Version: 2020.02.00.09 } thermal @ 1 = { Description: Thermal 1 - U51_MGMT (0x48) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 2 = { Description: Thermal 2 - U25_MAC0 (0x49) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 36000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 3 = { Description: Thermal 3 - U33_CPLD (0x4B) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 27500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 4 = { Description: Thermal 4 - U5_A7K (0x4C) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 34000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 5 = { Description: CPU Core (A7K) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } led @ 1 = { Description: Chassis LED 1 (PSU LED) Status: 0x00000005 [ PRESENT,ON ] Caps: 0x00400001 [ ON_OFF,AUTO ] Mode: AUTO Char: } psu @ 1 = { Description: PSU-1 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } psu @ 2 = { Description: PSU-2 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } fan @ 1 = { Description: Chassis Fan - 1 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 2 = { Description: Chassis Fan - 2 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 3 = { Description: Chassis Fan - 3 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 4 = { Description: Chassis Fan - 4 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 5 = { Description: Chassis Fan - 5 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8587 Per: 41 Model: NULL SN: NULL } fan @ 6 = { Description: Chassis Fan - 6 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } SFPs: Presence Bitmap: 49 50 51 52 RX_LOS Bitmap: 49 50 51 52 Port 49: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 43 4c 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 38 20 20 68 f0 03 ec 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 50: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 46 30 44 44 54 20 20 20 20 20 0050: 20 20 20 20 31 31 30 34 30 37 20 20 68 f0 03 e0 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 51: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 36 4d 44 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 d3 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 52: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 35 4e 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 e1 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 120 interval = 15 INFO asyncssh:logging.py:92 [conn=114, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=3] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=4] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=4] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 12117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action trap action police rate 607205bps burst 608205 conform-exceed drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 0s INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad092fe0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4839461 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 24599 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 24599 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 24598 INFO asyncssh:logging.py:92 [conn=114, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=5] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=114, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=6] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=114, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=6] Channel closed DEBUG infra1:Logger.py:156 1734 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=114, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=7] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S sed -i '/^post-up tc filter add dev swp33 ingress pref 12117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action trap action police rate 607205bps burst 608205 conform-exceed drop /i post-up tc filter add dev swp33 ingress pref 2117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action police rate 2891655bps burst 2892655 conform-exceed drop action pass ' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=8] Command: echo onl | sudo -S sed -i '/^post-up tc filter add dev swp33 ingress pref 12117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action trap action police rate 607205bps burst 608205 conform-exceed drop /i post-up tc filter add dev swp33 ingress pref 2117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action police rate 2891655bps burst 2892655 conform-exceed drop action pass ' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=9] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=114, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=10] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=114, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=10] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0', 'swp33', 'swp36'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp33: running ops ... info: br0: applying bridge port configuration: ['swp33'] info: br0: swp33: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp33: ignoring config (stp on bridge br0 is not on yet) info: vrf: syncing table map to /etc/iproute2/rt_tables.d/ifupdown2_vrf_map.conf info: vrf: dumping iproute2_vrf_map info: {} info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: executing tc qdisc add dev swp33 ingress warning: swp33: post-up cmd 'tc qdisc add dev swp33 ingress' failed: returned 2 (Error: Exclusivity flag on, cannot modify. ) info: executing tc filter add dev swp33 ingress pref 2117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action police rate 2891655bps burst 2892655 conform-exceed drop action pass info: executing tc filter add dev swp33 ingress pref 12117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action trap action police rate 607205bps burst 608205 conform-exceed drop info: swp36: running ops ... info: br0: applying bridge port configuration: ['swp36'] info: br0: swp36: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp36: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp34: running ops ... info: br0: applying bridge port configuration: ['swp34'] info: br0: swp34: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp34: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp35: running ops ... info: br0: applying bridge port configuration: ['swp35'] info: br0: swp35: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp35: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: br0: running ops ... info: br0: bridge already exists info: br0: apply bridge settings info: br0: reset bridge-hashel to default: 4 info: br0: reset bridge-hashmax to default: 512 info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: swp33: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp36: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp34: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp35: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO asyncssh:logging.py:92 [conn=114, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=11] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=12] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=12] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 2117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action police rate 2891655bps burst 2892655 conform-exceed drop action pass [] post-up tc filter add dev swp33 ingress pref 12117 protocol 0x9200 flower skip_sw src_mac 02:9a:e3:9b:60:25 dst_mac 02:63:fb:40:49:29 action trap action police rate 607205bps burst 608205 conform-exceed drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad090760>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 5544171 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 143743 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 143740 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 143737 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_acl_random[single_block-acl_and_trap_policer] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py INFO asyncssh:logging.py:92 [conn=114, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=13] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=114, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=14] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=114, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=15] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=114, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=16] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=114, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=16] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['swp36', 'br0', 'swp33'] info: br0: running ops ... info: br0: netlink: ip link set dev br0 down info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: br0: netlink: ip link del br0 info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp35: running ops ... info: swp35: netlink: ip link set dev swp35 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp33: running ops ... info: swp33: netlink: ip link set dev swp33 down info: executing tc qdisc del dev swp33 ingress info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp36: running ops ... info: swp36: netlink: ip link set dev swp36 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:59:50 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=114, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:59:50 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=114, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=114, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=114, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=114, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=114, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=114, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=114, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=114, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=114, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=114, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=114, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=114, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=114, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=114, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=114, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=114, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=114, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=114, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=114, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=114, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=114, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=114, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=114, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=114, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=114, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=114, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=114, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=114, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=114, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=114, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=114, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=114, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=114, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=114, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=114, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=114, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=114, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=114, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=114, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=114, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=114, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=114, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=114, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=114, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=114, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=44] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=114, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=114, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=114, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=114, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=46] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=114, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=114, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=114, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=114, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=48] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=114, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=114, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=114, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=114, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=50] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=114, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=114, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=114, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=51] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=52] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:59:51 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=114, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=114, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=54] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=114, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=54] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=114, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=114, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=114, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ifupdown2/test_ifupdown2.py::test_ifupdown2_acl_random[shared_block-acl_random] | 352.63 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6647' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_acl_random[shared_block-acl_random]">Starting testcase:test_ifupdown2_acl_random[shared_block-acl_random] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=115] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=115] Local address: 172.17.0.4, port 47604 INFO asyncssh:logging.py:92 [conn=115] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=115] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=115] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:59:51 UTC 2087 INFO asyncssh:logging.py:92 [conn=115, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=115, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=115, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=115, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=115, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=115, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=115, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=115, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=115, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=115, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:59:51 UTC 2087 INFO asyncssh:logging.py:92 [conn=115, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=9] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=115, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=10] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=115, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=10] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=115, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=115, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=12] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=115, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=115, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=13] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=115, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=14] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=115, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=14] Channel closed DEBUG infra1:Logger.py:156 ------------------------------Captured stdout call------------------------------ Connection made to 10.36.118.46 Authentication complete SSH connection closed SSH connection closed SSH connection closed Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 16:59:51 UTC 2087 INFO asyncssh:logging.py:92 [conn=115, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=17] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=115, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=18] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=115, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=115, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress_block 368 ingress down tc qdisc del dev swp33 ingress_block 368 ingress post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop auto swp34 iface swp34 inet static post-up tc qdisc add dev swp34 ingress_block 368 ingress down tc qdisc del dev swp34 ingress_block 368 ingress post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop auto swp35 iface swp35 inet static post-up tc qdisc add dev swp35 ingress_block 368 ingress down tc qdisc del dev swp35 ingress_block 368 ingress post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop auto swp36 iface swp36 inet static ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=115, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=20] Command: echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress_block 368 ingress down tc qdisc del dev swp33 ingress_block 368 ingress post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop auto swp34 iface swp34 inet static post-up tc qdisc add dev swp34 ingress_block 368 ingress down tc qdisc del dev swp34 ingress_block 368 ingress post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop auto swp35 iface swp35 inet static post-up tc qdisc add dev swp35 ingress_block 368 ingress down tc qdisc del dev swp35 ingress_block 368 ingress post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop auto swp36 iface swp36 inet static ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=115, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=115, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=21] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=115, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=22] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=115, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=22] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback address 20.20.0.1/32 auto ma1 iface ma1 inet dhcp auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress_block 368 ingress post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop down tc qdisc del dev swp33 ingress_block 368 ingress auto swp34 iface swp34 inet static post-up tc qdisc add dev swp34 ingress_block 368 ingress post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop down tc qdisc del dev swp34 ingress_block 368 ingress auto swp35 iface swp35 inet static post-up tc qdisc add dev swp35 ingress_block 368 ingress post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop down tc qdisc del dev swp35 ingress_block 368 ingress auto swp36 iface swp36 inet static INFO asyncssh:logging.py:92 [conn=115, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=23] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=115, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=24] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=115, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=24] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0', 'swp33', 'swp34', 'swp35', 'swp36'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: executing tc qdisc add dev swp33 ingress_block 368 ingress info: executing tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass info: executing tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop info: swp36: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: executing tc qdisc add dev swp34 ingress_block 368 ingress info: executing tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass info: executing tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop info: swp35: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: executing tc qdisc add dev swp35 ingress_block 368 ingress info: executing tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass info: executing tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop info: br0: running ops ... info: br0: netlink: ip link add br0 type bridge info: br0: apply bridge settings info: br0: set bridge-mcsnoop yes info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp33 master br0 addr flush dev swp33 link set dev swp34 master br0 addr flush dev swp34 link set dev swp35 master br0 addr flush dev swp35 link set dev swp36 master br0 addr flush dev swp36 ] info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO asyncssh:logging.py:92 [conn=115, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=25] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=115, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=26] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=115, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=26] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 368 ingress [] post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass [] post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop [] down tc qdisc del dev swp33 ingress_block 368 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 368 ingress [] post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass [] post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop [] down tc qdisc del dev swp34 ingress_block 368 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 368 ingress [] post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass [] post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop [] down tc qdisc del dev swp35 ingress_block 368 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_11.1.1.2/24', 'count': 1, 'ip': '11.1.1.2', 'gw': '11.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_12.1.1.2/24', 'count': 1, 'ip': '12.1.1.2', 'gw': '12.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_13.1.1.2/24', 'count': 1, 'ip': '13.1.1.2', 'gw': '13.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_14.1.1.2/24', 'count': 1, 'ip': '14.1.1.2', 'gw': '14.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_11.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_12.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_13.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_14.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad092aa0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 3468319 Rx 3468465 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 3468211 Rx 3468357 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 3468094 Rx 3468240 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3468117 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=115, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=27] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S sed -i -e 's/.*post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass //g' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=115, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=28] Command: echo onl | sudo -S sed -i -e 's/.*post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass //g' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=115, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=115, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=29] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=115, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=30] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=115, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=30] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 368 ingress [] post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop [] down tc qdisc del dev swp33 ingress_block 368 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 368 ingress [] post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop [] down tc qdisc del dev swp34 ingress_block 368 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 368 ingress [] post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop [] down tc qdisc del dev swp35 ingress_block 368 ingress [] auto swp36 iface swp36 inet static INFO asyncssh:logging.py:92 [conn=115, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=115] Closing connection INFO asyncssh:logging.py:92 [conn=115] Sending disconnect: Disconnected by application (11) INFO asyncssh:logging.py:92 [conn=115] Connection closed INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=116] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=116] Local address: 172.17.0.4, port 47306 INFO asyncssh:logging.py:92 [conn=116] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=116] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=116] Auth for user root succeeded DEBUG infra1:Logger.py:156 echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=116, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=0] Command: echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=116, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=0] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=116] Connection lost INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 300 interval = 15 INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=117] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=117] Local address: 172.17.0.4, port 52668 INFO asyncssh:logging.py:92 [conn=117] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=117] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=117] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:04:37 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 51s INFO asyncssh:logging.py:92 [conn=117, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=1] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=117, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=2] Command: echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=117, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=2] Channel closed DEBUG infra1:Logger.py:156 System Information: = { Product Name: AS4224-52P-O-AC-F-EC Part Number: F0LEC4224004Z Serial Number: 422452P2103001 MAC: 90:3c:b3:8b:ef:32 MAC Range: 69 Manufacturer: Accton Manufacture Date: 02/03/2021 17:31:43 Vendor: Edgecore Platform Name: arm64-accton_as4224_52p-r0 Label Revision: R0CA Country Code: TW ONIE Version: 2020.02.00.09 } thermal @ 1 = { Description: Thermal 1 - U51_MGMT (0x48) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 27000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 2 = { Description: Thermal 2 - U25_MAC0 (0x49) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 36000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 3 = { Description: Thermal 3 - U33_CPLD (0x4B) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 28000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 4 = { Description: Thermal 4 - U5_A7K (0x4C) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 34000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 5 = { Description: CPU Core (A7K) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 27000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } led @ 1 = { Description: Chassis LED 1 (PSU LED) Status: 0x00000005 [ PRESENT,ON ] Caps: 0x00400001 [ ON_OFF,AUTO ] Mode: AUTO Char: } psu @ 1 = { Description: PSU-1 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } psu @ 2 = { Description: PSU-2 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } fan @ 1 = { Description: Chassis Fan - 1 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 2 = { Description: Chassis Fan - 2 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8587 Per: 41 Model: NULL SN: NULL } fan @ 3 = { Description: Chassis Fan - 3 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 4 = { Description: Chassis Fan - 4 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 5 = { Description: Chassis Fan - 5 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 6 = { Description: Chassis Fan - 6 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } SFPs: Presence Bitmap: 49 50 51 52 RX_LOS Bitmap: 49 50 51 52 Port 49: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 43 4c 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 38 20 20 68 f0 03 ec 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 50: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 46 30 44 44 54 20 20 20 20 20 0050: 20 20 20 20 31 31 30 34 30 37 20 20 68 f0 03 e0 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 51: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 36 4d 44 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 d3 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 52: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 35 4e 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 e1 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 120 interval = 15 INFO asyncssh:logging.py:92 [conn=117, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=3] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=4] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=4] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 368 ingress [] post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop [] down tc qdisc del dev swp33 ingress_block 368 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 368 ingress [] post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop [] down tc qdisc del dev swp34 ingress_block 368 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 368 ingress [] post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop [] down tc qdisc del dev swp35 ingress_block 368 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 0s INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acd7ef20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4404223 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 4404097 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 4403989 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=117, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S sed -i '/^post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop /i post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass ' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=6] Command: echo onl | sudo -S sed -i '/^post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop /i post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass ' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=7] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=117, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=8] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=117, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=8] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0', 'swp33', 'swp34', 'swp35', 'swp36'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp33: running ops ... info: br0: applying bridge port configuration: ['swp33'] info: br0: swp33: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp33: ignoring config (stp on bridge br0 is not on yet) info: vrf: syncing table map to /etc/iproute2/rt_tables.d/ifupdown2_vrf_map.conf info: vrf: dumping iproute2_vrf_map info: {} info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: executing tc qdisc add dev swp33 ingress_block 368 ingress warning: swp33: post-up cmd 'tc qdisc add dev swp33 ingress_block 368 ingress' failed: returned 2 (Error: Exclusivity flag on, cannot modify. ) info: executing tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass info: executing tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop info: swp36: running ops ... info: br0: applying bridge port configuration: ['swp36'] info: br0: swp36: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp36: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp34: running ops ... info: br0: applying bridge port configuration: ['swp34'] info: br0: swp34: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp34: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: executing tc qdisc add dev swp34 ingress_block 368 ingress warning: swp34: post-up cmd 'tc qdisc add dev swp34 ingress_block 368 ingress' failed: returned 2 (Error: Exclusivity flag on, cannot modify. ) info: executing tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass info: executing tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop info: swp35: running ops ... info: br0: applying bridge port configuration: ['swp35'] info: br0: swp35: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp35: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: executing tc qdisc add dev swp35 ingress_block 368 ingress warning: swp35: post-up cmd 'tc qdisc add dev swp35 ingress_block 368 ingress' failed: returned 2 (Error: Exclusivity flag on, cannot modify. ) info: executing tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass info: executing tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop info: br0: running ops ... info: br0: bridge already exists info: br0: apply bridge settings info: br0: reset bridge-hashel to default: 4 info: br0: reset bridge-hashmax to default: 512 info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: swp33: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp36: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp34: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp35: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO asyncssh:logging.py:92 [conn=117, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=9] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=10] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=10] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 368 ingress [] post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass [] post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop [] down tc qdisc del dev swp33 ingress_block 368 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 368 ingress [] post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass [] post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop [] down tc qdisc del dev swp34 ingress_block 368 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 368 ingress [] post-up tc filter add block 368 ingress pref 7334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action pass [] post-up tc filter add block 368 ingress pref 17334 protocol 0x9300 flower skip_sw src_mac 02:4b:c4:48:c3:a0 dst_mac 02:2f:83:c9:ec:bd action drop [] down tc qdisc del dev swp35 ingress_block 368 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acd7dc60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4571564 Rx 4571758 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 4571457 Rx 4571650 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 4571338 Rx 4571532 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 4571418 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_acl_random[shared_block-acl_random] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py INFO asyncssh:logging.py:92 [conn=117, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=11] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=117, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=12] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=117, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=13] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=117, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=14] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=117, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=14] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['swp36', 'br0', 'swp33', 'swp34', 'swp35'] info: br0: running ops ... info: br0: netlink: ip link set dev br0 down info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: br0: netlink: ip link del br0 info: executing /etc/network/if-post-down.d/hostapd info: swp33: running ops ... info: swp33: netlink: ip link set dev swp33 down info: executing tc qdisc del dev swp33 ingress_block 368 ingress info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp36: running ops ... info: swp36: netlink: ip link set dev swp36 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing tc qdisc del dev swp34 ingress_block 368 ingress info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp35: running ops ... info: swp35: netlink: ip link set dev swp35 down info: executing tc qdisc del dev swp35 ingress_block 368 ingress info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:05:42 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=117, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:05:43 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=117, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=117, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=20] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=117, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=117, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=117, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=22] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=117, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=117, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=22] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=117, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=117, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=24] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=117, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=117, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=117, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=117, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=117, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=117, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=117, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=117, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=117, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=117, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=117, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=117, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=117, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=117, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=117, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=117, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=117, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=117, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=117, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=117, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=117, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=117, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=117, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=117, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=117, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=117, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=117, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=117, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=117, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=117, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=117, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=117, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=117, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=117, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=117, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=117, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=42] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=117, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=117, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=117, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=117, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=44] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=117, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=117, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=117, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=117, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=46] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=117, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=117, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=117, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=117, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=48] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=117, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=117, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=117, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=49] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=50] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:05:44 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=117, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=117, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=52] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=117, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=52] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=117, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=53] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=117, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=54] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=117, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=54] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ifupdown2/test_ifupdown2.py::test_ifupdown2_acl_random[shared_block-acl_and_trap_policer] | 355.01 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6757' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_acl_random[shared_block-acl_and_trap_policer]">Starting testcase:test_ifupdown2_acl_random[shared_block-acl_and_trap_policer] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=118] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=118] Local address: 172.17.0.4, port 39034 INFO asyncssh:logging.py:92 [conn=118] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=118] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=118] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:05:44 UTC 2087 INFO asyncssh:logging.py:92 [conn=118, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=118, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=118, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=118, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=118, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=118, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=118, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=118, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=118, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=118, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:05:44 UTC 2087 INFO asyncssh:logging.py:92 [conn=118, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=9] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=118, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=10] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=118, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=10] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=118, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=118, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=12] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=118, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=118, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=13] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=118, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=14] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=118, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=14] Channel closed DEBUG infra1:Logger.py:156 ------------------------------Captured stdout call------------------------------ Connection made to 10.36.118.46 Authentication complete SSH connection closed SSH connection closed SSH connection closed Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:05:44 UTC 2087 INFO asyncssh:logging.py:92 [conn=118, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=17] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=118, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=18] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=118, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=118, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress_block 55 ingress down tc qdisc del dev swp33 ingress_block 55 ingress post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop auto swp34 iface swp34 inet static post-up tc qdisc add dev swp34 ingress_block 55 ingress down tc qdisc del dev swp34 ingress_block 55 ingress post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop auto swp35 iface swp35 inet static post-up tc qdisc add dev swp35 ingress_block 55 ingress down tc qdisc del dev swp35 ingress_block 55 ingress post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop auto swp36 iface swp36 inet static ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=118, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=20] Command: echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress_block 55 ingress down tc qdisc del dev swp33 ingress_block 55 ingress post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop auto swp34 iface swp34 inet static post-up tc qdisc add dev swp34 ingress_block 55 ingress down tc qdisc del dev swp34 ingress_block 55 ingress post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop auto swp35 iface swp35 inet static post-up tc qdisc add dev swp35 ingress_block 55 ingress down tc qdisc del dev swp35 ingress_block 55 ingress post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop auto swp36 iface swp36 inet static ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=118, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=118, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=21] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=118, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=22] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=118, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=22] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback address 20.20.0.1/32 auto ma1 iface ma1 inet dhcp auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress_block 55 ingress post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop down tc qdisc del dev swp33 ingress_block 55 ingress auto swp34 iface swp34 inet static post-up tc qdisc add dev swp34 ingress_block 55 ingress post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop down tc qdisc del dev swp34 ingress_block 55 ingress auto swp35 iface swp35 inet static post-up tc qdisc add dev swp35 ingress_block 55 ingress post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop down tc qdisc del dev swp35 ingress_block 55 ingress auto swp36 iface swp36 inet static INFO asyncssh:logging.py:92 [conn=118, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=23] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=118, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=24] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=118, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=24] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0', 'swp33', 'swp34', 'swp35', 'swp36'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: executing tc qdisc add dev swp33 ingress_block 55 ingress info: executing tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass info: executing tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop info: swp36: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: executing tc qdisc add dev swp34 ingress_block 55 ingress info: executing tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass info: executing tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop info: swp35: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: executing tc qdisc add dev swp35 ingress_block 55 ingress info: executing tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass info: executing tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop info: br0: running ops ... info: br0: netlink: ip link add br0 type bridge info: br0: apply bridge settings info: br0: set bridge-mcsnoop yes info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp33 master br0 addr flush dev swp33 link set dev swp34 master br0 addr flush dev swp34 link set dev swp35 master br0 addr flush dev swp35 link set dev swp36 master br0 addr flush dev swp36 ] info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO asyncssh:logging.py:92 [conn=118, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=25] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=118, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=26] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=118, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=26] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 55 ingress [] post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass [] post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop [] down tc qdisc del dev swp33 ingress_block 55 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 55 ingress [] post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass [] post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop [] down tc qdisc del dev swp34 ingress_block 55 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 55 ingress [] post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass [] post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop [] down tc qdisc del dev swp35 ingress_block 55 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_11.1.1.2/24', 'count': 1, 'ip': '11.1.1.2', 'gw': '11.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_12.1.1.2/24', 'count': 1, 'ip': '12.1.1.2', 'gw': '12.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_13.1.1.2/24', 'count': 1, 'ip': '13.1.1.2', 'gw': '13.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_14.1.1.2/24', 'count': 1, 'ip': '14.1.1.2', 'gw': '14.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_11.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_12.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_13.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_14.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad5811b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 3528819 Rx 48937 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 3528726 Rx 47615 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 3528632 Rx 47736 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 71151 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=118, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=27] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S sed -i -e 's/.*post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass //g' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=118, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=28] Command: echo onl | sudo -S sed -i -e 's/.*post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass //g' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=118, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=118, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=29] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=118, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=30] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=118, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=30] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 55 ingress [] post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop [] down tc qdisc del dev swp33 ingress_block 55 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 55 ingress [] post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop [] down tc qdisc del dev swp34 ingress_block 55 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 55 ingress [] post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop [] down tc qdisc del dev swp35 ingress_block 55 ingress [] auto swp36 iface swp36 inet static INFO asyncssh:logging.py:92 [conn=118, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=118] Closing connection INFO asyncssh:logging.py:92 [conn=118] Sending disconnect: Disconnected by application (11) INFO asyncssh:logging.py:92 [conn=118] Connection closed INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=119] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=119] Local address: 172.17.0.4, port 54418 INFO asyncssh:logging.py:92 [conn=119] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=119] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=119] Auth for user root succeeded DEBUG infra1:Logger.py:156 echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=119, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=0] Command: echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=119, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=0] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=119] Connection lost INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 300 interval = 15 INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=120] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=120] Local address: 172.17.0.4, port 46784 INFO asyncssh:logging.py:92 [conn=120] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=120] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=120] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:10:34 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 51s INFO asyncssh:logging.py:92 [conn=120, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=1] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=120, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=2] Command: echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=120, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=2] Channel closed DEBUG infra1:Logger.py:156 System Information: = { Product Name: AS4224-52P-O-AC-F-EC Part Number: F0LEC4224004Z Serial Number: 422452P2103001 MAC: 90:3c:b3:8b:ef:32 MAC Range: 69 Manufacturer: Accton Manufacture Date: 02/03/2021 17:31:43 Vendor: Edgecore Platform Name: arm64-accton_as4224_52p-r0 Label Revision: R0CA Country Code: TW ONIE Version: 2020.02.00.09 } thermal @ 1 = { Description: Thermal 1 - U51_MGMT (0x48) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 2 = { Description: Thermal 2 - U25_MAC0 (0x49) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 36500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 3 = { Description: Thermal 3 - U33_CPLD (0x4B) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 28000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 4 = { Description: Thermal 4 - U5_A7K (0x4C) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 34500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 5 = { Description: CPU Core (A7K) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } led @ 1 = { Description: Chassis LED 1 (PSU LED) Status: 0x00000005 [ PRESENT,ON ] Caps: 0x00400001 [ ON_OFF,AUTO ] Mode: AUTO Char: } psu @ 1 = { Description: PSU-1 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } psu @ 2 = { Description: PSU-2 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } fan @ 1 = { Description: Chassis Fan - 1 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 2 = { Description: Chassis Fan - 2 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 3 = { Description: Chassis Fan - 3 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 4 = { Description: Chassis Fan - 4 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 5 = { Description: Chassis Fan - 5 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8587 Per: 41 Model: NULL SN: NULL } fan @ 6 = { Description: Chassis Fan - 6 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } SFPs: Presence Bitmap: 49 50 51 52 RX_LOS Bitmap: 49 50 51 52 Port 49: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 43 4c 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 38 20 20 68 f0 03 ec 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 50: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 46 30 44 44 54 20 20 20 20 20 0050: 20 20 20 20 31 31 30 34 30 37 20 20 68 f0 03 e0 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 51: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 36 4d 44 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 d3 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 52: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 35 4e 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 e1 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 120 interval = 15 INFO asyncssh:logging.py:92 [conn=120, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=3] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=4] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=4] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 55 ingress [] post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop [] down tc qdisc del dev swp33 ingress_block 55 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 55 ingress [] post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop [] down tc qdisc del dev swp34 ingress_block 55 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 55 ingress [] post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop [] down tc qdisc del dev swp35 ingress_block 55 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 0s INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acd7fcd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4516071 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 4515977 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 4515868 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=120, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S sed -i '/^post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop /i post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass ' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=6] Command: echo onl | sudo -S sed -i '/^post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop /i post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass ' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=7] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=120, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=8] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=120, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=8] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0', 'swp33', 'swp34', 'swp35', 'swp36'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp33: running ops ... info: br0: applying bridge port configuration: ['swp33'] info: br0: swp33: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp33: ignoring config (stp on bridge br0 is not on yet) info: vrf: syncing table map to /etc/iproute2/rt_tables.d/ifupdown2_vrf_map.conf info: vrf: dumping iproute2_vrf_map info: {} info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: executing tc qdisc add dev swp33 ingress_block 55 ingress warning: swp33: post-up cmd 'tc qdisc add dev swp33 ingress_block 55 ingress' failed: returned 2 (Error: Exclusivity flag on, cannot modify. ) info: executing tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass info: executing tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop info: swp36: running ops ... info: br0: applying bridge port configuration: ['swp36'] info: br0: swp36: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp36: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp34: running ops ... info: br0: applying bridge port configuration: ['swp34'] info: br0: swp34: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp34: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: executing tc qdisc add dev swp34 ingress_block 55 ingress warning: swp34: post-up cmd 'tc qdisc add dev swp34 ingress_block 55 ingress' failed: returned 2 (Error: Exclusivity flag on, cannot modify. ) info: executing tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass info: executing tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop info: swp35: running ops ... info: br0: applying bridge port configuration: ['swp35'] info: br0: swp35: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp35: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: executing tc qdisc add dev swp35 ingress_block 55 ingress warning: swp35: post-up cmd 'tc qdisc add dev swp35 ingress_block 55 ingress' failed: returned 2 (Error: Exclusivity flag on, cannot modify. ) info: executing tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass info: executing tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop info: br0: running ops ... info: br0: bridge already exists info: br0: apply bridge settings info: br0: reset bridge-hashel to default: 4 info: br0: reset bridge-hashmax to default: 512 info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: swp33: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp36: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp34: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp35: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO asyncssh:logging.py:92 [conn=120, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=9] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=10] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=10] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 55 ingress [] post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass [] post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop [] down tc qdisc del dev swp33 ingress_block 55 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 55 ingress [] post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass [] post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop [] down tc qdisc del dev swp34 ingress_block 55 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 55 ingress [] post-up tc filter add block 55 ingress pref 13657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action police rate 2357776bps burst 2358776 conform-exceed drop action pass [] post-up tc filter add block 55 ingress pref 23657 protocol ipv4 flower skip_sw src_mac 02:43:e7:97:a0:9e dst_mac 02:7c:02:6f:4f:f9 src_ip 48.213.16.229 dst_ip 104.205.4.164 action drop [] down tc qdisc del dev swp35 ingress_block 55 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acd7fa60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4220735 Rx 57114 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 4220642 Rx 57258 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 4220541 Rx 57056 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 84723 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_acl_random[shared_block-acl_and_trap_policer] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py INFO asyncssh:logging.py:92 [conn=120, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=11] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=120, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=12] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=120, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=13] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=120, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=14] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=120, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=14] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['swp36', 'br0', 'swp33', 'swp34', 'swp35'] info: br0: running ops ... info: br0: netlink: ip link set dev br0 down info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: br0: netlink: ip link del br0 info: executing /etc/network/if-post-down.d/hostapd info: swp33: running ops ... info: swp33: netlink: ip link set dev swp33 down info: executing tc qdisc del dev swp33 ingress_block 55 ingress info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp36: running ops ... info: swp36: netlink: ip link set dev swp36 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing tc qdisc del dev swp34 ingress_block 55 ingress info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp35: running ops ... info: swp35: netlink: ip link set dev swp35 down info: executing tc qdisc del dev swp35 ingress_block 55 ingress info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:11:38 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=120, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:11:38 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=120, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=120, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=20] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=120, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=120, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=120, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=22] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=120, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=120, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=22] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=120, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=120, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=24] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=120, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=120, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=120, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=120, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=120, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=120, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=120, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=120, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=120, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=120, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=120, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=120, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=120, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=120, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=120, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=120, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=120, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=120, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=120, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=120, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=120, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=120, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=120, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=120, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=120, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=120, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=120, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=120, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=120, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=120, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=120, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=120, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=120, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=120, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=120, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=120, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=42] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=120, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=120, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=120, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=120, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=44] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=120, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=120, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=120, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=120, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=46] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=120, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=120, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=120, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=120, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=48] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=120, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=120, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=120, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=49] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=50] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:11:39 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=120, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=120, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=52] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=120, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=52] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=120, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=53] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=120, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=54] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=120, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=54] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ifupdown2/test_ifupdown_stp.py::test_ifupdown2_stp[stp] | 413.72 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6867' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_stp[stp]">Starting testcase:test_ifupdown2_stp[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown_stp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=121] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=121] Local address: 172.17.0.4, port 46934 INFO asyncssh:logging.py:92 [conn=121] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=121] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=121] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:11:39 UTC 2087 INFO asyncssh:logging.py:92 [conn=121, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=121, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=2] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=121, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=2] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=121, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=121, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=4] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=121, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=121, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=121, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=6] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=121, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=6] Channel closed DEBUG infra1:Logger.py:156 ------------------------------Captured stdout call------------------------------ Connection made to 10.36.118.46 Authentication complete SSH connection closed SSH connection closed SSH connection closed Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:11:39 UTC 2087 INFO asyncssh:logging.py:92 [conn=121, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=9] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=121, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=10] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=121, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=121, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=11] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=121, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=12] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=121, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=121, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=13] Channel closed DEBUG infra1:Logger.py:156 if [ ! -z "$(pidof mstpd)" ]; then killall mstpd; fi INFO asyncssh:logging.py:92 [conn=121, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=14] Command: if [ ! -z "$(pidof mstpd)" ]; then killall mstpd; fi INFO asyncssh:logging.py:92 [conn=121, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=121, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=15] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-stp yes hwaddress 22:7c:2e:0c:a6:d8 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=121, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=16] Command: echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-stp yes hwaddress 22:7c:2e:0c:a6:d8 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=121, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=121, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=17] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=121, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=18] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=121, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=18] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback address 20.20.0.1/32 auto ma1 iface ma1 inet dhcp auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-stp yes hwaddress 22:7c:2e:0c:a6:d8 INFO asyncssh:logging.py:92 [conn=121, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=19] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=121, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=20] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=121, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=20] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp36: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp35: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: br0: running ops ... info: br0: netlink: ip link add br0 type bridge info: br0: apply bridge settings info: br0: set bridge-mcsnoop yes info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: stp state reset, reapplying port settings info: br0: netlink: ip link set br0 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp33 master br0 addr flush dev swp33 link set dev swp34 master br0 addr flush dev swp34 link set dev swp35 master br0 addr flush dev swp35 link set dev swp36 master br0 addr flush dev swp36 ] info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: br0: netlink: ip link set dev br0 down info: executing /bin/ip link set dev br0 down info: executing /bin/ip link set dev br0 address 22:7c:2e:0c:a6:d8 info: executing /bin/ip link set dev br0 up info: br0: netlink: ip link set dev br0 up info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO asyncssh:logging.py:92 [conn=121, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=21] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=121, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=22] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=121, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=22] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] bridge-stp yes [pass] hwaddress 22:7c:2e:0c:a6:d8 [pass] INFO asyncssh:logging.py:92 [conn=121, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=121, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=24] Command: ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=121, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:7c:2e:0c:a6:d8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:7c:2e:c:a6:d8","root_id":"8000.22:7c:2e:c:a6:d8","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.50,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":299.61,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=121, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=121, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=26] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=121, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:7c:fa:bb:21:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"2e:3a:c7:e2:15:c3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:7c:2e:0c:a6:d8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=121, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show br0 INFO asyncssh:logging.py:92 [conn=121, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=28] Command: ip -j link show br0 INFO asyncssh:logging.py:92 [conn=121, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:7c:2e:0c:a6:d8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=121, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show master br0 INFO asyncssh:logging.py:92 [conn=121, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=30] Command: ip -j link show master br0 INFO asyncssh:logging.py:92 [conn=121, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=121, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=121, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=32] Command: ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=121, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:7c:2e:0c:a6:d8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:7c:2e:c:a6:d8","root_id":"8000.22:7c:2e:c:a6:d8","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.97,"tcn_timer":0.00,"topology_change_timer":27.14,"gc_timer":259.48,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2 traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=121, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=121, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=34] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=121, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.0:2:8:2a:bc:31","root_id":"8000.0:0:a2:76:b3:c9","hold_timer":0.00,"message_age_timer":18.93,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad5e0280>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 stp SIP-DIP Tx 52 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 stp SIP-DIP Tx 52 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 3804831 Rx 3804830 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 3804831 Rx 1085 Loss 99.971 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 3804831 Rx 3804830 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=121, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=121] Closing connection INFO asyncssh:logging.py:92 [conn=121] Sending disconnect: Disconnected by application (11) INFO asyncssh:logging.py:92 [conn=121] Connection closed INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=122] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=122] Local address: 172.17.0.4, port 33428 INFO asyncssh:logging.py:92 [conn=122] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=122] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=122] Auth for user root succeeded DEBUG infra1:Logger.py:156 echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=122, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=0] Command: echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=122, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=0] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=122] Connection lost INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 300 interval = 15 INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=123] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=123] Local address: 172.17.0.4, port 60954 INFO asyncssh:logging.py:92 [conn=123] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=123] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=123] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:17:47 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 51s INFO asyncssh:logging.py:92 [conn=123, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=1] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=123, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=2] Command: echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=123, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=2] Channel closed DEBUG infra1:Logger.py:156 System Information: = { Product Name: AS4224-52P-O-AC-F-EC Part Number: F0LEC4224004Z Serial Number: 422452P2103001 MAC: 90:3c:b3:8b:ef:32 MAC Range: 69 Manufacturer: Accton Manufacture Date: 02/03/2021 17:31:43 Vendor: Edgecore Platform Name: arm64-accton_as4224_52p-r0 Label Revision: R0CA Country Code: TW ONIE Version: 2020.02.00.09 } thermal @ 1 = { Description: Thermal 1 - U51_MGMT (0x48) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 2 = { Description: Thermal 2 - U25_MAC0 (0x49) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 36000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 3 = { Description: Thermal 3 - U33_CPLD (0x4B) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 28000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 4 = { Description: Thermal 4 - U5_A7K (0x4C) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 34000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 5 = { Description: CPU Core (A7K) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } led @ 1 = { Description: Chassis LED 1 (PSU LED) Status: 0x00000005 [ PRESENT,ON ] Caps: 0x00400001 [ ON_OFF,AUTO ] Mode: AUTO Char: } psu @ 1 = { Description: PSU-1 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } psu @ 2 = { Description: PSU-2 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } fan @ 1 = { Description: Chassis Fan - 1 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 2 = { Description: Chassis Fan - 2 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 3 = { Description: Chassis Fan - 3 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 4 = { Description: Chassis Fan - 4 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 5 = { Description: Chassis Fan - 5 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 6 = { Description: Chassis Fan - 6 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } SFPs: Presence Bitmap: 49 50 51 52 RX_LOS Bitmap: 49 50 51 52 Port 49: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 43 4c 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 38 20 20 68 f0 03 ec 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 50: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 46 30 44 44 54 20 20 20 20 20 0050: 20 20 20 20 31 31 30 34 30 37 20 20 68 f0 03 e0 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 51: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 36 4d 44 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 d3 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 52: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 35 4e 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 e1 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 60 interval = 15 INFO asyncssh:logging.py:92 [conn=123, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=3] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=123, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=4] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=123, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=4] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] bridge-stp yes [pass] hwaddress 22:7c:2e:0c:a6:d8 [pass] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 0s INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acd7fca0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 stp SIP-DIP Tx 36 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 stp SIP-DIP Tx 36 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 2633382 Rx 1058838 Loss 59.792 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 2633382 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 2633381 Rx 1058837 Loss 59.792 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_stp[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown_stp.py INFO asyncssh:logging.py:92 [conn=123, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=5] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=123, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=6] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=123, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=123, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=7] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=123, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=8] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=123, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=8] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['br0'] info: br0: running ops ... info: br0: netlink: ip link set dev br0 down info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: br0: netlink: ip link del br0 info: executing /etc/network/if-post-down.d/hostapd info: swp33: running ops ... info: swp33: netlink: ip link set dev swp33 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp36: running ops ... info: swp36: netlink: ip link set dev swp36 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp35: running ops ... info: swp35: netlink: ip link set dev swp35 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf | |||
| Passed | functional/ifupdown2/test_ifupdown_stp.py::test_ifupdown2_stp[rstp] | 423.27 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6925' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_stp[rstp]">Starting testcase:test_ifupdown2_stp[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown_stp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=124] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=124] Local address: 172.17.0.4, port 59834 INFO asyncssh:logging.py:92 [conn=124] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=124] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=124] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:18:32 UTC 2087 INFO asyncssh:logging.py:92 [conn=124, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=124, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=2] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=124, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=2] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=124, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=124, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=4] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=124, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=124, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=6] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=124, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=6] Channel closed DEBUG infra1:Logger.py:156 ------------------------------Captured stdout call------------------------------ Connection made to 10.36.118.46 Authentication complete SSH connection closed SSH connection closed SSH connection closed Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:18:33 UTC 2087 INFO asyncssh:logging.py:92 [conn=124, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=9] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=124, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=10] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=124, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=11] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=124, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=12] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=124, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpd INFO asyncssh:logging.py:92 [conn=124, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=14] Command: mstpd INFO asyncssh:logging.py:92 [conn=124, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=15] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=124, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=16] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=124, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=17] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-stp yes hwaddress 22:6f:6c:15:9c:e5 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=124, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=18] Command: echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-stp yes hwaddress 22:6f:6c:15:9c:e5 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=124, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=19] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=124, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=20] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=124, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=20] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback address 20.20.0.1/32 auto ma1 iface ma1 inet dhcp auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-stp yes hwaddress 22:6f:6c:15:9c:e5 INFO asyncssh:logging.py:92 [conn=124, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=21] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=124, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=22] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=124, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=22] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp36: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: swp35: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: br0: running ops ... info: br0: netlink: ip link add br0 type bridge info: br0: apply bridge settings info: br0: set bridge-mcsnoop yes info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: stp state reset, reapplying port settings info: br0: netlink: ip link set br0 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp33 master br0 addr flush dev swp33 link set dev swp34 master br0 addr flush dev swp34 link set dev swp35 master br0 addr flush dev swp35 link set dev swp36 master br0 addr flush dev swp36 ] info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /sbin/mstpctl showportdetail br0 json info: cmd '/sbin/mstpctl showportdetail br0 json' failed: returned 255 (Can't find index for port json. Not a valid interface. ) info: executing /sbin/mstpctl showportdetail br0 json info: cmd '/sbin/mstpctl showportdetail br0 json' failed: returned 255 (Can't find index for port json. Not a valid interface. ) info: executing /sbin/mstpctl settreeprio br0 0 10 info: executing /sbin/mstpctl showportdetail br0 json info: cmd '/sbin/mstpctl showportdetail br0 json' failed: returned 255 (Can't find index for port json. Not a valid interface. ) info: executing /sbin/mstpctl setageing br0 300 info: executing /sbin/mstpctl setfdelay br0 15 info: executing /sbin/mstpctl setmaxage br0 20 info: executing /sbin/mstpctl setmaxhops br0 20 info: executing /sbin/mstpctl settxholdcount br0 6 info: executing /sbin/mstpctl setforcevers br0 rstp info: executing /sbin/mstpctl sethello br0 2 info: executing /sbin/mstpctl setportpathcost br0 swp33 0 info: executing /sbin/mstpctl setportpathcost br0 swp36 0 info: executing /sbin/mstpctl setportpathcost br0 swp34 0 info: executing /sbin/mstpctl setportpathcost br0 swp35 0 info: executing /sbin/mstpctl setportautoedge br0 swp33 yes info: executing /sbin/mstpctl setportautoedge br0 swp36 yes info: executing /sbin/mstpctl setportautoedge br0 swp34 yes info: executing /sbin/mstpctl setportautoedge br0 swp35 yes info: executing /sbin/mstpctl settreeportprio br0 swp33 0 10 info: executing /sbin/mstpctl settreeportprio br0 swp36 0 10 info: executing /sbin/mstpctl settreeportprio br0 swp34 0 10 info: executing /sbin/mstpctl settreeportprio br0 swp35 0 10 info: executing /sbin/mstpctl setportp2p br0 swp33 auto info: executing /sbin/mstpctl setportp2p br0 swp36 auto info: executing /sbin/mstpctl setportp2p br0 swp34 auto info: executing /sbin/mstpctl setportp2p br0 swp35 auto info: br0: applying mstp configuration specific to ports info: br0: processing mstp config for port swp35 info: br0: processing mstp config for port swp33 info: br0: processing mstp config for port swp36 info: br0: processing mstp config for port swp34 info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: br0: netlink: ip link set dev br0 down info: executing /bin/ip link set dev br0 down info: executing /bin/ip link set dev br0 address 22:6f:6c:15:9c:e5 info: executing /bin/ip link set dev br0 up info: br0: netlink: ip link set dev br0 up info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf INFO asyncssh:logging.py:92 [conn=124, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=23] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=124, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=24] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=124, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=24] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] bridge-stp yes [pass] hwaddress 22:6f:6c:15:9c:e5 [pass] INFO asyncssh:logging.py:92 [conn=124, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=124, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=26] Command: ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=124, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:6f:6c:15:9c:e5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":2,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:6f:6c:15:9c:e5","root_id":"8000.22:6f:6c:15:9c:e5","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":299.61,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=124, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=124, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=124, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ea:91:c5:42:f1:15","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f2:bd:8d:fd:07:e0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:6f:6c:15:9c:e5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=124, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show br0 INFO asyncssh:logging.py:92 [conn=124, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=30] Command: ip -j link show br0 INFO asyncssh:logging.py:92 [conn=124, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:6f:6c:15:9c:e5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=124, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show master br0 INFO asyncssh:logging.py:92 [conn=124, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=32] Command: ip -j link show master br0 INFO asyncssh:logging.py:92 [conn=124, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=124, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=124, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=34] Command: ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=124, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:6f:6c:15:9c:e5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":2,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:6f:6c:15:9c:e5","root_id":"8000.22:6f:6c:15:9c:e5","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.45,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2 traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=124, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=124, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=36] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=124, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.22:6f:6c:15:9c:e5","root_id":"8000.22:6f:6c:15:9c:e5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad583c70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 rstp SIP-DIP Tx 52 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 rstp SIP-DIP Tx 52 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 3804827 Rx 3804825 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 3804826 Rx 740 Loss 99.981 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 3804826 Rx 3804825 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=124, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=124] Closing connection INFO asyncssh:logging.py:92 [conn=124] Sending disconnect: Disconnected by application (11) INFO asyncssh:logging.py:92 [conn=124] Connection closed INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=125] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=125] Local address: 172.17.0.4, port 60378 INFO asyncssh:logging.py:92 [conn=125] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=125] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=125] Auth for user root succeeded DEBUG infra1:Logger.py:156 echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=125, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=0] Command: echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=125, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=0] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125] Connection lost INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 300 interval = 15 INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 76, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 201, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=126] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=126] Local address: 172.17.0.4, port 33516 INFO asyncssh:logging.py:92 [conn=126] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=126] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=126] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:24:51 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 51s INFO asyncssh:logging.py:92 [conn=126, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=1] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=126, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=2] Command: echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=126, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=2] Channel closed DEBUG infra1:Logger.py:156 System Information: = { Product Name: AS4224-52P-O-AC-F-EC Part Number: F0LEC4224004Z Serial Number: 422452P2103001 MAC: 90:3c:b3:8b:ef:32 MAC Range: 69 Manufacturer: Accton Manufacture Date: 02/03/2021 17:31:43 Vendor: Edgecore Platform Name: arm64-accton_as4224_52p-r0 Label Revision: R0CA Country Code: TW ONIE Version: 2020.02.00.09 } thermal @ 1 = { Description: Thermal 1 - U51_MGMT (0x48) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 2 = { Description: Thermal 2 - U25_MAC0 (0x49) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 36000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 3 = { Description: Thermal 3 - U33_CPLD (0x4B) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 27500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 4 = { Description: Thermal 4 - U5_A7K (0x4C) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 33500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 5 = { Description: CPU Core (A7K) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } led @ 1 = { Description: Chassis LED 1 (PSU LED) Status: 0x00000005 [ PRESENT,ON ] Caps: 0x00400001 [ ON_OFF,AUTO ] Mode: AUTO Char: } psu @ 1 = { Description: PSU-1 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } psu @ 2 = { Description: PSU-2 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } fan @ 1 = { Description: Chassis Fan - 1 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 2 = { Description: Chassis Fan - 2 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 3 = { Description: Chassis Fan - 3 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 4 = { Description: Chassis Fan - 4 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 5 = { Description: Chassis Fan - 5 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 6 = { Description: Chassis Fan - 6 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } SFPs: Presence Bitmap: 49 50 51 52 RX_LOS Bitmap: 49 50 51 52 Port 49: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 43 4c 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 38 20 20 68 f0 03 ec 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 50: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 46 30 44 44 54 20 20 20 20 20 0050: 20 20 20 20 31 31 30 34 30 37 20 20 68 f0 03 e0 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 51: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 36 4d 44 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 d3 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 52: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 35 4e 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 e1 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 60 interval = 15 INFO asyncssh:logging.py:92 [conn=126, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=3] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=126, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=4] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=126, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=4] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback [pass] address 20.20.0.1/32 [pass] auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] bridge-stp yes [pass] hwaddress 22:6f:6c:15:9c:e5 [pass] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 0s INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad580a90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 rstp SIP-DIP Tx 34 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 rstp SIP-DIP Tx 34 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 2486095 Rx 2486093 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 2486094 Rx 1665 Loss 99.933 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 2486094 Rx 2486093 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_stp[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown_stp.py INFO asyncssh:logging.py:92 [conn=126, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=5] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=126, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=6] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=126, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=7] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=126, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=8] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=126, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=8] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['br0'] info: br0: running ops ... info: br0: netlink: ip link set dev br0 down info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: br0: netlink: ip link del br0 info: executing /etc/network/if-post-down.d/hostapd info: swp33: running ops ... info: swp33: netlink: ip link set dev swp33 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp36: running ops ... info: swp36: netlink: ip link set dev swp36 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp35: running ops ... info: swp35: netlink: ip link set dev swp35 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/000resolvconf | |||
| Passed | functional/ipv4/test_ipv4_addr.py::test_ipv4_addr | 144.49 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7169' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_addr">Starting testcase:test_ipv4_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_addr.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=134] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=134] Local address: 172.17.0.4, port 57356 INFO asyncssh:logging.py:92 [conn=134] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=134] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=134] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:49:28 UTC 2087 INFO asyncssh:logging.py:92 [conn=134, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=134, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=134, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=134, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=134, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=134, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:49:28 UTC 2087 INFO asyncssh:logging.py:92 [conn=134, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=134, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=8] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=134, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=134, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=134, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=134, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=134, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=134, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=13] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 10 1.1.1.2 INFO asyncssh:logging.py:92 [conn=134, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=134, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=134, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=14] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 10 2.2.2.2 INFO asyncssh:logging.py:92 [conn=134, chan=16] Requesting new SSH session DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 10 3.3.3.2 INFO asyncssh:logging.py:92 [conn=134, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=134, chan=15] Command: echo onl | sudo -S ping -c 10 1.1.1.2 DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 10 4.4.4.2 INFO asyncssh:logging.py:92 [conn=134, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=16] Command: echo onl | sudo -S ping -c 10 2.2.2.2 INFO asyncssh:logging.py:92 [conn=134, chan=17] Command: echo onl | sudo -S ping -c 10 3.3.3.2 INFO asyncssh:logging.py:92 [conn=134, chan=18] Command: echo onl | sudo -S ping -c 10 4.4.4.2 INFO asyncssh:logging.py:92 [conn=134, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=15] Channel closed DEBUG infra1:Logger.py:156 PING 1.1.1.2 (1.1.1.2) 56(84) bytes of data. 64 bytes from 1.1.1.2: icmp_seq=1 ttl=64 time=0.299 ms 64 bytes from 1.1.1.2: icmp_seq=2 ttl=64 time=0.191 ms 64 bytes from 1.1.1.2: icmp_seq=3 ttl=64 time=0.171 ms 64 bytes from 1.1.1.2: icmp_seq=4 ttl=64 time=0.180 ms 64 bytes from 1.1.1.2: icmp_seq=5 ttl=64 time=0.181 ms 64 bytes from 1.1.1.2: icmp_seq=6 ttl=64 time=0.190 ms 64 bytes from 1.1.1.2: icmp_seq=7 ttl=64 time=0.161 ms 64 bytes from 1.1.1.2: icmp_seq=8 ttl=64 time=0.160 ms 64 bytes from 1.1.1.2: icmp_seq=9 ttl=64 time=0.162 ms 64 bytes from 1.1.1.2: icmp_seq=10 ttl=64 time=0.172 ms --- 1.1.1.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9171ms rtt min/avg/max/mdev = 0.160/0.186/0.299/0.042 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 10 1.1.1.2 on infra1 with rc 0 and out PING 1.1.1.2 (1.1.1.2) 56(84) bytes of data. 64 bytes from 1.1.1.2: icmp_seq=1 ttl=64 time=0.299 ms 64 bytes from 1.1.1.2: icmp_seq=2 ttl=64 time=0.191 ms 64 bytes from 1.1.1.2: icmp_seq=3 ttl=64 time=0.171 ms 64 bytes from 1.1.1.2: icmp_seq=4 ttl=64 time=0.180 ms 64 bytes from 1.1.1.2: icmp_seq=5 ttl=64 time=0.181 ms 64 bytes from 1.1.1.2: icmp_seq=6 ttl=64 time=0.190 ms 64 bytes from 1.1.1.2: icmp_seq=7 ttl=64 time=0.161 ms 64 bytes from 1.1.1.2: icmp_seq=8 ttl=64 time=0.160 ms 64 bytes from 1.1.1.2: icmp_seq=9 ttl=64 time=0.162 ms 64 bytes from 1.1.1.2: icmp_seq=10 ttl=64 time=0.172 ms --- 1.1.1.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9171ms rtt min/avg/max/mdev = 0.160/0.186/0.299/0.042 ms INFO asyncssh:logging.py:92 [conn=134, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=134, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=18] Received channel close DEBUG infra1:Logger.py:156 PING 3.3.3.2 (3.3.3.2) 56(84) bytes of data. 64 bytes from 3.3.3.2: icmp_seq=1 ttl=64 time=0.256 ms 64 bytes from 3.3.3.2: icmp_seq=2 ttl=64 time=0.144 ms 64 bytes from 3.3.3.2: icmp_seq=3 ttl=64 time=0.145 ms 64 bytes from 3.3.3.2: icmp_seq=4 ttl=64 time=0.158 ms 64 bytes from 3.3.3.2: icmp_seq=5 ttl=64 time=0.151 ms 64 bytes from 3.3.3.2: icmp_seq=6 ttl=64 time=0.109 ms 64 bytes from 3.3.3.2: icmp_seq=7 ttl=64 time=0.133 ms 64 bytes from 3.3.3.2: icmp_seq=8 ttl=64 time=0.161 ms 64 bytes from 3.3.3.2: icmp_seq=9 ttl=64 time=0.123 ms 64 bytes from 3.3.3.2: icmp_seq=10 ttl=64 time=0.172 ms --- 3.3.3.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9198ms rtt min/avg/max/mdev = 0.109/0.155/0.256/0.038 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 10 3.3.3.2 on infra1 with rc 0 and out PING 3.3.3.2 (3.3.3.2) 56(84) bytes of data. 64 bytes from 3.3.3.2: icmp_seq=1 ttl=64 time=0.256 ms 64 bytes from 3.3.3.2: icmp_seq=2 ttl=64 time=0.144 ms 64 bytes from 3.3.3.2: icmp_seq=3 ttl=64 time=0.145 ms 64 bytes from 3.3.3.2: icmp_seq=4 ttl=64 time=0.158 ms 64 bytes from 3.3.3.2: icmp_seq=5 ttl=64 time=0.151 ms 64 bytes from 3.3.3.2: icmp_seq=6 ttl=64 time=0.109 ms 64 bytes from 3.3.3.2: icmp_seq=7 ttl=64 time=0.133 ms 64 bytes from 3.3.3.2: icmp_seq=8 ttl=64 time=0.161 ms 64 bytes from 3.3.3.2: icmp_seq=9 ttl=64 time=0.123 ms 64 bytes from 3.3.3.2: icmp_seq=10 ttl=64 time=0.172 ms --- 3.3.3.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9198ms rtt min/avg/max/mdev = 0.109/0.155/0.256/0.038 ms INFO asyncssh:logging.py:92 [conn=134, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=134, chan=18] Channel closed DEBUG infra1:Logger.py:156 PING 2.2.2.2 (2.2.2.2) 56(84) bytes of data. 64 bytes from 2.2.2.2: icmp_seq=1 ttl=64 time=0.257 ms 64 bytes from 2.2.2.2: icmp_seq=2 ttl=64 time=0.151 ms 64 bytes from 2.2.2.2: icmp_seq=3 ttl=64 time=0.152 ms 64 bytes from 2.2.2.2: icmp_seq=4 ttl=64 time=0.165 ms 64 bytes from 2.2.2.2: icmp_seq=5 ttl=64 time=0.159 ms 64 bytes from 2.2.2.2: icmp_seq=6 ttl=64 time=0.141 ms 64 bytes from 2.2.2.2: icmp_seq=7 ttl=64 time=0.142 ms 64 bytes from 2.2.2.2: icmp_seq=8 ttl=64 time=0.154 ms 64 bytes from 2.2.2.2: icmp_seq=9 ttl=64 time=0.136 ms 64 bytes from 2.2.2.2: icmp_seq=10 ttl=64 time=0.172 ms --- 2.2.2.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9200ms rtt min/avg/max/mdev = 0.136/0.162/0.257/0.037 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 10 2.2.2.2 on infra1 with rc 0 and out PING 2.2.2.2 (2.2.2.2) 56(84) bytes of data. 64 bytes from 2.2.2.2: icmp_seq=1 ttl=64 time=0.257 ms 64 bytes from 2.2.2.2: icmp_seq=2 ttl=64 time=0.151 ms 64 bytes from 2.2.2.2: icmp_seq=3 ttl=64 time=0.152 ms 64 bytes from 2.2.2.2: icmp_seq=4 ttl=64 time=0.165 ms 64 bytes from 2.2.2.2: icmp_seq=5 ttl=64 time=0.159 ms 64 bytes from 2.2.2.2: icmp_seq=6 ttl=64 time=0.141 ms 64 bytes from 2.2.2.2: icmp_seq=7 ttl=64 time=0.142 ms 64 bytes from 2.2.2.2: icmp_seq=8 ttl=64 time=0.154 ms 64 bytes from 2.2.2.2: icmp_seq=9 ttl=64 time=0.136 ms 64 bytes from 2.2.2.2: icmp_seq=10 ttl=64 time=0.172 ms --- 2.2.2.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9200ms rtt min/avg/max/mdev = 0.136/0.162/0.257/0.037 ms DEBUG infra1:Logger.py:156 PING 4.4.4.2 (4.4.4.2) 56(84) bytes of data. 64 bytes from 4.4.4.2: icmp_seq=1 ttl=64 time=0.262 ms 64 bytes from 4.4.4.2: icmp_seq=2 ttl=64 time=0.146 ms 64 bytes from 4.4.4.2: icmp_seq=3 ttl=64 time=0.152 ms 64 bytes from 4.4.4.2: icmp_seq=4 ttl=64 time=0.165 ms 64 bytes from 4.4.4.2: icmp_seq=5 ttl=64 time=0.159 ms 64 bytes from 4.4.4.2: icmp_seq=6 ttl=64 time=0.109 ms 64 bytes from 4.4.4.2: icmp_seq=7 ttl=64 time=0.138 ms 64 bytes from 4.4.4.2: icmp_seq=8 ttl=64 time=0.154 ms 64 bytes from 4.4.4.2: icmp_seq=9 ttl=64 time=0.127 ms 64 bytes from 4.4.4.2: icmp_seq=10 ttl=64 time=0.171 ms --- 4.4.4.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9192ms rtt min/avg/max/mdev = 0.109/0.158/0.262/0.039 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 10 4.4.4.2 on infra1 with rc 0 and out PING 4.4.4.2 (4.4.4.2) 56(84) bytes of data. 64 bytes from 4.4.4.2: icmp_seq=1 ttl=64 time=0.262 ms 64 bytes from 4.4.4.2: icmp_seq=2 ttl=64 time=0.146 ms 64 bytes from 4.4.4.2: icmp_seq=3 ttl=64 time=0.152 ms 64 bytes from 4.4.4.2: icmp_seq=4 ttl=64 time=0.165 ms 64 bytes from 4.4.4.2: icmp_seq=5 ttl=64 time=0.159 ms 64 bytes from 4.4.4.2: icmp_seq=6 ttl=64 time=0.109 ms 64 bytes from 4.4.4.2: icmp_seq=7 ttl=64 time=0.138 ms 64 bytes from 4.4.4.2: icmp_seq=8 ttl=64 time=0.154 ms 64 bytes from 4.4.4.2: icmp_seq=9 ttl=64 time=0.127 ms 64 bytes from 4.4.4.2: icmp_seq=10 ttl=64 time=0.171 ms --- 4.4.4.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9192ms rtt min/avg/max/mdev = 0.109/0.158/0.262/0.039 ms -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_addr.py INFO asyncssh:logging.py:92 [conn=134, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=134, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=134, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:51:52 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:51:52 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=134, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=134, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=134, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=134, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=134, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=134, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=134, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=134, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=134, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_dynamic_arp | 138.05 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7215' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_dynamic_arp">Starting testcase:test_ipv4_dynamic_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=135] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=135] Local address: 172.17.0.4, port 45518 INFO asyncssh:logging.py:92 [conn=135] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=135] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=135] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:51:52 UTC 2087 INFO asyncssh:logging.py:92 [conn=135, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=135, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=135, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=135, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=135, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=135, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:51:53 UTC 2087 INFO asyncssh:logging.py:92 [conn=135, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=135, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=135, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=135, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=135, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6385e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 10146 Rx 10146 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 10146 Rx 10146 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=135, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=135, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=12] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=135, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=135, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=135, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=135, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=135, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=135, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=16] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=135, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=135, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=18] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=135, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=135, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=20] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=135, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_dynamic_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=135, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=21] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=135, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=135, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=22] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:54:10 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:54:10 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=135, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=135, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=135, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=135, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=135, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=135, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=135, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=135, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=32] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_static_arp | 1.08 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7259' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_arp">Starting testcase:test_ipv4_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=136] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=136] Local address: 172.17.0.4, port 37498 INFO asyncssh:logging.py:92 [conn=136] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=136] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=136] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:54:11 UTC 2087 INFO asyncssh:logging.py:92 [conn=136, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=136, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=136, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=136, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=136, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=136, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:54:11 UTC 2087 INFO asyncssh:logging.py:92 [conn=136, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=136, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=136, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=136, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=136, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=136, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=136, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=136, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=136, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=136, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=136, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=136, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=136, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=136, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=18] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=136, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=136, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=20] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=136, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=136, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=136, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=136, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=136, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=136, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:54:11 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:54:11 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=136, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=136, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=136, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=136, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=136, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=136, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=136, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=136, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_replace_dyn_stat_arp | 136.84 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7305' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_replace_dyn_stat_arp">Starting testcase:test_ipv4_replace_dyn_stat_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=137] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=137] Local address: 172.17.0.4, port 37514 INFO asyncssh:logging.py:92 [conn=137] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=137] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=137] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:54:12 UTC 2087 INFO asyncssh:logging.py:92 [conn=137, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=137, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=137, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=137, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=137, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=137, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:54:12 UTC 2087 INFO asyncssh:logging.py:92 [conn=137, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=137, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=18] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=20] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49accfb4f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 10254 Rx 10254 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 10254 Rx 10254 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=137, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=24] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=26] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=28] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=30] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=32] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=34] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=36] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=38] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=40] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=42] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=44] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_replace_dyn_stat_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=137, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=45] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=137, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=46] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=137, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=46] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=47] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=48] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:56:28 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=49] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=50] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:56:28 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=137, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=137, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=52] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=137, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=137, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=54] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=137, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=137, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=56] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=56] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_static_arp_with_traffic | 136.71 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7373' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_arp_with_traffic">Starting testcase:test_ipv4_static_arp_with_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=138] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=138] Local address: 172.17.0.4, port 53242 INFO asyncssh:logging.py:92 [conn=138] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=138] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=138] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:56:28 UTC 2087 INFO asyncssh:logging.py:92 [conn=138, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=138, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=138, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=138, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=138, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=138, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:56:29 UTC 2087 INFO asyncssh:logging.py:92 [conn=138, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=138, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=138, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=138, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=138, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=138, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=138, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=138, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=138, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=138, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49accf8f70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 10212 Rx 10212 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 10212 Rx 10212 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=138, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=138, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=138, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=18] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=20] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=138, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=138, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_arp_with_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=138, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=138, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=138, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:58:45 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:58:45 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=138, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=138, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=138, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=138, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=138, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=138, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=138, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=138, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_static_route_over_static_arp | 141.42 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7419' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_route_over_static_arp">Starting testcase:test_ipv4_static_route_over_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=139] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=139] Local address: 172.17.0.4, port 36416 INFO asyncssh:logging.py:92 [conn=139] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=139] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=139] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:58:45 UTC 2087 INFO asyncssh:logging.py:92 [conn=139, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=139, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=139, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=139, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=139, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=139, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 17:58:45 UTC 2087 INFO asyncssh:logging.py:92 [conn=139, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=139, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=139, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=139, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=139, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=139, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=12] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=12] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=139, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=139, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=14] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=139, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=139, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=139, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=16] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=139, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=139, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=139, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=18] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=139, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=139, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=139, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=20] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=139, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=139, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip route add 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=139, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=24] Command: ip route add 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=139, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=139, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=139, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"20.0.0.1","gateway":"1.1.1.2","dev":"swp33","flags":["offload","rt_offload"]},{"dst":"21.0.0.1","gateway":"2.2.2.2","dev":"swp34","flags":["offload","rt_offload"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 21.0.0.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 -> 20.0.0.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad42ec50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 -> 21.0.0.1 Tx 5216 Rx 5216 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:2 -> 20.0.0.1 Tx 5216 Rx 5216 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 10432 Rx 10432 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=139, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=28] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=139, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip route delete 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route delete 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=139, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=30] Command: ip route delete 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route delete 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=139, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=139, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=32] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=139, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=139, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=34] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=139, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=36] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=38] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=40] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_route_over_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=139, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=41] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=139, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=139, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=42] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=43] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=44] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:01:06 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=45] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=46] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:01:06 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=139, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=139, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=48] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=139, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=139, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=50] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=139, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=139, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=139, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=52] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=139, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=52] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_arp_reachable_timeout | 154.18 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7483' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_arp_reachable_timeout">Starting testcase:test_ipv4_arp_reachable_timeout from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=140] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=140] Local address: 172.17.0.4, port 59078 INFO asyncssh:logging.py:92 [conn=140] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=140] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=140] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:01:07 UTC 2087 INFO asyncssh:logging.py:92 [conn=140, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=140, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=140, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=140, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=140, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=140, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:01:07 UTC 2087 INFO asyncssh:logging.py:92 [conn=140, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=140, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=140, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=140, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=140, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=140, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=140, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=12] Command: sysctl net.ipv4.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=140, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.swp33.base_reachable_time_ms = 30000 net.ipv4.neigh.swp34.base_reachable_time_ms = 30000 net.ipv4.neigh.swp35.base_reachable_time_ms = 30000 net.ipv4.neigh.swp36.base_reachable_time_ms = 30000 INFO asyncssh:logging.py:92 [conn=140, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=1000 INFO asyncssh:logging.py:92 [conn=140, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=14] Command: sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=1000 INFO asyncssh:logging.py:92 [conn=140, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.swp33.base_reachable_time_ms = 1000 net.ipv4.neigh.swp34.base_reachable_time_ms = 1000 net.ipv4.neigh.swp35.base_reachable_time_ms = 1000 net.ipv4.neigh.swp36.base_reachable_time_ms = 1000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad42d8a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 10246 Rx 10246 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 10246 Rx 10246 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=140, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=140, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=140, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=140, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=17] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=140, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=18] Command: sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=140, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=18] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.swp33.base_reachable_time_ms = 30000 net.ipv4.neigh.swp34.base_reachable_time_ms = 30000 net.ipv4.neigh.swp35.base_reachable_time_ms = 30000 net.ipv4.neigh.swp36.base_reachable_time_ms = 30000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49accfa8c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 11844 Rx 11844 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 11844 Rx 11844 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=140, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=140, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=20] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=140, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=140, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=140, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=140, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_arp_reachable_timeout from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=140, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:03:40 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:03:40 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=140, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=140, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=140, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=140, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=140, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=140, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=140, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=140, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_arp_ageing | 225.63 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7529' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_arp_ageing">Starting testcase:test_ipv4_arp_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=141] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=141] Local address: 172.17.0.4, port 42010 INFO asyncssh:logging.py:92 [conn=141] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=141] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=141] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:03:41 UTC 2087 INFO asyncssh:logging.py:92 [conn=141, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=141, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=141, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=141, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=141, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=141, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:03:41 UTC 2087 INFO asyncssh:logging.py:92 [conn=141, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=141, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=141, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=141, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=141, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=141, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1&& sysctl net.ipv4.neigh.default.gc_stale_time INFO asyncssh:logging.py:92 [conn=141, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=12] Command: sysctl net.ipv4.neigh.default.gc_thresh1&& sysctl net.ipv4.neigh.default.gc_stale_time INFO asyncssh:logging.py:92 [conn=141, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_stale_time = 60 INFO asyncssh:logging.py:92 [conn=141, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1=0&& sysctl net.ipv4.neigh.default.gc_stale_time=1 INFO asyncssh:logging.py:92 [conn=141, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=14] Command: sysctl net.ipv4.neigh.default.gc_thresh1=0&& sysctl net.ipv4.neigh.default.gc_stale_time=1 INFO asyncssh:logging.py:92 [conn=141, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 0 net.ipv4.neigh.default.gc_stale_time = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49accf8c70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 10346 Rx 10346 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 10346 Rx 10346 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=141, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=141, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=141, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=141, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=17] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1=128&& sysctl net.ipv4.neigh.default.gc_stale_time=60 INFO asyncssh:logging.py:92 [conn=141, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=18] Command: sysctl net.ipv4.neigh.default.gc_thresh1=128&& sysctl net.ipv4.neigh.default.gc_stale_time=60 INFO asyncssh:logging.py:92 [conn=141, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=18] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_stale_time = 60 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_arp_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=141, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=141, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=141, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:07:26 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:07:26 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=141, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=141, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=141, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=141, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=141, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=141, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=141, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=141, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_best_match.py::test_ipv4_bm_traffic_forwarding | 132.13 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7571' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_bm_traffic_forwarding">Starting testcase:test_ipv4_bm_traffic_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_best_match.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=142] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=142] Local address: 172.17.0.4, port 40742 INFO asyncssh:logging.py:92 [conn=142] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=142] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=142] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:07:26 UTC 2087 INFO asyncssh:logging.py:92 [conn=142, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=142, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=142, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=142, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=142, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=142, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:07:27 UTC 2087 INFO asyncssh:logging.py:92 [conn=142, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=142, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=8] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=142, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=8] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=142, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=142, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=10] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=142, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=142, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=142, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=12] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=142, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=12] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=142, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=142, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=14] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=142, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=142, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=142, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=142, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=142, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=18] Command: ip address add 192.168.1.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=142, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_20.1.1.2/24', 'count': 1, 'ip': '20.1.1.2', 'gw': '20.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_192.168.1.3/24', 'count': 1, 'ip': '192.168.1.3', 'gw': '192.168.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=142, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip address add 20.1.1.1/24 dev swp33 metric 20 && ip address add 20.1.1.1/24 dev lo metric 10 INFO asyncssh:logging.py:92 [conn=142, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=20] Command: ip address add 20.1.1.1/24 dev swp33 metric 20 && ip address add 20.1.1.1/24 dev lo metric 10 INFO asyncssh:logging.py:92 [conn=142, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=142, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=22] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=142, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"20.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"20.1.1.1","metric":20,"flags":[]},{"dst":"192.168.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"192.168.1.1","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_20.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_192.168.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49accfaf50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:2 -> 10.36.118.199:2:1 Tx 6015 Rx 0 Frames Delta 6015 Loss 100.000 INFO asyncssh:logging.py:92 [conn=142, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address delete 20.1.1.1/24 dev lo INFO asyncssh:logging.py:92 [conn=142, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=24] Command: ip address delete 20.1.1.1/24 dev lo INFO asyncssh:logging.py:92 [conn=142, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=142, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=142, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"20.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"20.1.1.1","metric":20,"flags":["rt_trap"]},{"dst":"192.168.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"192.168.1.1","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49accfb520>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:2 -> 10.36.118.199:2:1 Tx 9677 Rx 9677 Frames Delta 0 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_bm_traffic_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_best_match.py INFO asyncssh:logging.py:92 [conn=142, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=142, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=142, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:09:38 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=32] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:09:38 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=142, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=142, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=142, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=142, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=142, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=142, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=142, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=142, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=38] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_a_dis | 116.32 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7621' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_a_dis">Starting testcase:test_ipv4_class_a_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=143] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=143] Local address: 172.17.0.4, port 53200 INFO asyncssh:logging.py:92 [conn=143] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=143] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=143] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:09:39 UTC 2087 INFO asyncssh:logging.py:92 [conn=143, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=143, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=143, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=143, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=143, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=143, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:09:39 UTC 2087 INFO asyncssh:logging.py:92 [conn=143, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=143, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=143, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/8 dev swp33 && ip address add 0.0.0.1/8 dev swp34 INFO asyncssh:logging.py:92 [conn=143, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=10] Command: ip address add 1.1.1.1/8 dev swp33 && ip address add 0.0.0.1/8 dev swp34 INFO asyncssh:logging.py:92 [conn=143, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/8', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_0.0.0.2/8', 'count': 1, 'ip': '0.0.0.2', 'gw': '0.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/8 to 10.36.118.199:2:2_0.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad57d7e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 10.36.118.199:2:2 SIP-DIP 1.1.1.2-0.0.0.2 Tx 6047 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_a_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=143, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=143, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=143, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:11:34 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:11:35 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=143, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=143, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=143, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=143, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=143, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=143, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=143, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=143, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_b_dis | 116.34 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7655' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_b_dis">Starting testcase:test_ipv4_class_b_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=144] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=144] Local address: 172.17.0.4, port 58646 INFO asyncssh:logging.py:92 [conn=144] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=144] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=144] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:11:35 UTC 2087 INFO asyncssh:logging.py:92 [conn=144, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=144, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=144, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=144, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=144, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=144, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:11:35 UTC 2087 INFO asyncssh:logging.py:92 [conn=144, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=144, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=144, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 128.1.1.1/16 dev swp33 && ip address add 191.255.1.1/16 dev swp34 INFO asyncssh:logging.py:92 [conn=144, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=10] Command: ip address add 128.1.1.1/16 dev swp33 && ip address add 191.255.1.1/16 dev swp34 INFO asyncssh:logging.py:92 [conn=144, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_128.1.1.2/16', 'count': 1, 'ip': '128.1.1.2', 'gw': '128.1.1.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_191.255.1.2/16', 'count': 1, 'ip': '191.255.1.2', 'gw': '191.255.1.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_128.1.1.2/16 to 10.36.118.199:2:2_191.255.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_128.1.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_191.255.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6388b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 10.36.118.199:2:2 SIP-DIP 128.1.1.2-191.255.1.2 Tx 6023 Rx 6023 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_b_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=144, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=144, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=144, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:13:31 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:13:31 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=144, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=144, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=144, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=144, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=144, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=144, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=144, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=144, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_c_dis | 112.55 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7689' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_c_dis">Starting testcase:test_ipv4_class_c_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=145] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=145] Local address: 172.17.0.4, port 55908 INFO asyncssh:logging.py:92 [conn=145] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=145] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=145] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:13:31 UTC 2087 INFO asyncssh:logging.py:92 [conn=145, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=145, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=145, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=145, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=145, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=145, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:13:31 UTC 2087 INFO asyncssh:logging.py:92 [conn=145, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=145, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=145, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.1.1.1/24 dev swp33 && ip address add 223.255.255.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=145, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=10] Command: ip address add 192.1.1.1/24 dev swp33 && ip address add 223.255.255.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=145, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.1.1.2/24', 'count': 1, 'ip': '192.1.1.2', 'gw': '192.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_223.255.255.2/24', 'count': 1, 'ip': '223.255.255.2', 'gw': '223.255.255.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_192.1.1.2/24 to 10.36.118.199:2:2_223.255.255.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_223.255.255.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad57ea40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 10.36.118.199:2:2 SIP-DIP 192.1.1.2-223.255.255.2 Tx 6083 Rx 6083 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_c_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=145, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=145, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=145, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:15:23 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:15:23 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=145, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=145, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=145, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=145, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=145, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=145, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_d_dis | 0.74 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7723' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_d_dis">Starting testcase:test_ipv4_class_d_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=146] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=146] Local address: 172.17.0.4, port 37100 INFO asyncssh:logging.py:92 [conn=146] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=146] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=146] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:15:24 UTC 2087 INFO asyncssh:logging.py:92 [conn=146, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=146, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=146, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=146, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=146, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=146, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:15:24 UTC 2087 INFO asyncssh:logging.py:92 [conn=146, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip address add 224.0.0.1/8 dev swp33 INFO asyncssh:logging.py:92 [conn=146, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=8] Command: ip address add 224.0.0.1/8 dev swp33 INFO asyncssh:logging.py:92 [conn=146, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=146, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=8] Channel closed DEBUG infra1:Logger.py:156 RTNETLINK answers: Invalid argument -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_d_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=146, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=146, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=10] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=146, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:15:24 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:15:24 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=146, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=146, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=146, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=146, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=146, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=146, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_e_dis | 113.02 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7755' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_e_dis">Starting testcase:test_ipv4_class_e_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=147] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=147] Local address: 172.17.0.4, port 37116 INFO asyncssh:logging.py:92 [conn=147] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=147] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=147] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:15:25 UTC 2087 INFO asyncssh:logging.py:92 [conn=147, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=147, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=147, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=147, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=147, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=147, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:15:25 UTC 2087 INFO asyncssh:logging.py:92 [conn=147, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=147, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=147, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 240.0.0.0/32 dev swp33 && ip address add 223.255.254.1/32 dev swp34 INFO asyncssh:logging.py:92 [conn=147, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=10] Command: ip address add 240.0.0.0/32 dev swp33 && ip address add 223.255.254.1/32 dev swp34 INFO asyncssh:logging.py:92 [conn=147, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_240.0.0.1/32', 'count': 1, 'ip': '240.0.0.1', 'gw': '240.0.0.0', 'plen': 32, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_223.255.254.2/32', 'count': 1, 'ip': '223.255.254.2', 'gw': '223.255.254.1', 'plen': 32, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_240.0.0.1/32 to 10.36.118.199:2:2_223.255.254.2/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_240.0.0.1/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_223.255.254.2/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad57eb30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 10.36.118.199:2:2 SIP-DIP 240.0.0.1-223.255.254.2 Tx 6038 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_e_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=147, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=147, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=147, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:17:17 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:17:17 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=147, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=147, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=147, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=147, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=147, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=147, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=147, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=147, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_crc.py::test_ipv4_checksum | 138.24 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7789' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_checksum">Starting testcase:test_ipv4_checksum from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_crc.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=148] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=148] Local address: 172.17.0.4, port 50186 INFO asyncssh:logging.py:92 [conn=148] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=148] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=148] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:17:18 UTC 2087 INFO asyncssh:logging.py:92 [conn=148, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=148, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=148, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=148, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=148, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=148, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:17:18 UTC 2087 INFO asyncssh:logging.py:92 [conn=148, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=148, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=148, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=148, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=148, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 bad crc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 good crc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=148, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=11] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=148, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=12] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=148, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=12] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 3975679158 bad_octets_received: 0 mac_trans_error: 0 broadcast_frames_received: 97 multicast_frames_received: 7701264 frames_64_octets: 391 frames_65_to_127_octets: 397 frames_128_to_255_octets: 135 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 13858809 frames_1024_to_max_octets: 0 excessive_collision: 0 multicast_frames_sent: 540 broadcast_frames_sent: 179 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 63771 unicast_frames_sent: 6093881 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3120125676 INFO asyncssh:logging.py:92 [conn=148, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=13] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=148, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=14] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=148, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=14] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 28306340 bad_octets_received: 0 mac_trans_error: 0 broadcast_frames_received: 100 multicast_frames_received: 49 frames_64_octets: 395 frames_65_to_127_octets: 395 frames_128_to_255_octets: 130 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 6924834 frames_1024_to_max_octets: 0 excessive_collision: 0 multicast_frames_sent: 6816758 broadcast_frames_sent: 177 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 55274 unicast_frames_sent: 53396 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3517302530 INFO asyncssh:logging.py:92 [conn=148, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=148, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=16] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=148, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=16] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 4745775740 bad_octets_received: 389 mac_trans_error: 0 broadcast_frames_received: 84 multicast_frames_received: 7 frames_64_octets: 340 frames_65_to_127_octets: 321 frames_128_to_255_octets: 124 frames_256_to_511_octets: 1 frames_512_to_1023_octets: 15920512 frames_1024_to_max_octets: 0 excessive_collision: 0 multicast_frames_sent: 6612337 broadcast_frames_sent: 179 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 1 collisions: 0 late_collision: 0 unicast_frames_received: 9269089 unicast_frames_sent: 39601 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3405607738 INFO asyncssh:logging.py:92 [conn=148, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=148, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=18] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=148, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=18] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 20266620 bad_octets_received: 0 mac_trans_error: 0 broadcast_frames_received: 84 multicast_frames_received: 7 frames_64_octets: 338 frames_65_to_127_octets: 333 frames_128_to_255_octets: 124 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 12534254 frames_1024_to_max_octets: 0 excessive_collision: 0 multicast_frames_sent: 6412268 broadcast_frames_sent: 179 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 39579 unicast_frames_sent: 6082932 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 6397353678 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=148, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=148, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=20] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=148, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=20] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 3975679158 bad_octets_received: 2622464 mac_trans_error: 0 broadcast_frames_received: 97 multicast_frames_received: 7701264 frames_64_octets: 391 frames_65_to_127_octets: 398 frames_128_to_255_octets: 136 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 13863931 frames_1024_to_max_octets: 0 excessive_collision: 0 multicast_frames_sent: 542 broadcast_frames_sent: 179 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 5122 collisions: 0 late_collision: 0 unicast_frames_received: 63771 unicast_frames_sent: 6093881 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3120125998 INFO asyncssh:logging.py:92 [conn=148, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=148, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=22] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=148, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=22] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 28306340 bad_octets_received: 2622464 mac_trans_error: 0 broadcast_frames_received: 100 multicast_frames_received: 49 frames_64_octets: 395 frames_65_to_127_octets: 395 frames_128_to_255_octets: 131 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 6929956 frames_1024_to_max_octets: 0 excessive_collision: 0 multicast_frames_sent: 6816759 broadcast_frames_sent: 177 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 5122 collisions: 0 late_collision: 0 unicast_frames_received: 55274 unicast_frames_sent: 53396 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3517302778 INFO asyncssh:logging.py:92 [conn=148, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=23] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=148, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=24] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=148, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=24] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 4748398204 bad_octets_received: 389 mac_trans_error: 0 broadcast_frames_received: 84 multicast_frames_received: 7 frames_64_octets: 340 frames_65_to_127_octets: 322 frames_128_to_255_octets: 125 frames_256_to_511_octets: 1 frames_512_to_1023_octets: 15930756 frames_1024_to_max_octets: 0 excessive_collision: 0 multicast_frames_sent: 6612339 broadcast_frames_sent: 179 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 1 collisions: 0 late_collision: 0 unicast_frames_received: 9274211 unicast_frames_sent: 44723 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3408230524 INFO asyncssh:logging.py:92 [conn=148, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=148, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=26] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=148, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=26] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 22889084 bad_octets_received: 0 mac_trans_error: 0 broadcast_frames_received: 84 multicast_frames_received: 7 frames_64_octets: 338 frames_65_to_127_octets: 333 frames_128_to_255_octets: 125 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 12544498 frames_1024_to_max_octets: 0 excessive_collision: 0 multicast_frames_sent: 6412269 broadcast_frames_sent: 179 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 44701 unicast_frames_sent: 6088054 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 6399976390 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad54f1c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 bad crc SIP-DIP 1.1.1.2-2.2.2.2 Tx 5122 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 bad crc SIP-DIP 2.2.2.2-1.1.1.2 Tx 5122 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 good crc SIP-DIP 3.3.3.2-4.4.4.2 Tx 5122 Rx 5122 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 good crc SIP-DIP 4.4.4.2-3.3.3.2 Tx 5122 Rx 5122 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_checksum from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_crc.py INFO asyncssh:logging.py:92 [conn=148, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=148, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=148, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:19:35 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=32] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:19:35 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=148, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=148, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=148, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=148, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=148, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=148, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=148, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=148, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=38] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_en_dis_fwd.py::test_ipv4_en_dis_fwd | 154.23 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7839' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_en_dis_fwd">Starting testcase:test_ipv4_en_dis_fwd from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_en_dis_fwd.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=149] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=149] Local address: 172.17.0.4, port 40570 INFO asyncssh:logging.py:92 [conn=149] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=149] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=149] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:19:36 UTC 2087 INFO asyncssh:logging.py:92 [conn=149, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=149, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=149, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=149, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=149, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=149, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:19:36 UTC 2087 INFO asyncssh:logging.py:92 [conn=149, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=149, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=149, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=149, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=149, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad57dde0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 1.1.1.2-2.2.2.2 Tx 5127 Rx 5127 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2.2.2.2-1.1.1.2 Tx 5127 Rx 5127 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 SIP-DIP 3.3.3.2-4.4.4.2 Tx 5127 Rx 5127 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 SIP-DIP 4.4.4.2-3.3.3.2 Tx 5127 Rx 5127 Loss 0.000 INFO asyncssh:logging.py:92 [conn=149, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=149, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=12] Command: sysctl -n net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=149, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=12] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=149, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 && ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=149, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=14] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 && ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=149, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad581fc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 1.1.1.2-2.2.2.2 Tx 8750 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2.2.2.2-1.1.1.2 Tx 8750 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 SIP-DIP 3.3.3.2-4.4.4.2 Tx 8750 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 SIP-DIP 4.4.4.2-3.3.3.2 Tx 8750 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_en_dis_fwd from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_en_dis_fwd.py INFO asyncssh:logging.py:92 [conn=149, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=15] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=149, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=16] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=149, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=16] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:22:09 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:22:10 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=149, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=149, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=22] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=149, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=24] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=149, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=149, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=26] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=149, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=26] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_gw.py::test_ipv4_default_gw | 158.65 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7875' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_default_gw">Starting testcase:test_ipv4_default_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=150] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=150] Local address: 172.17.0.4, port 36538 INFO asyncssh:logging.py:92 [conn=150] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=150] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=150] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:22:10 UTC 2087 INFO asyncssh:logging.py:92 [conn=150, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=2] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=150, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=4] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=4] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=150, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=150, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=6] Command: ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=150, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:22:10 UTC 2087 INFO asyncssh:logging.py:92 [conn=150, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=150, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=150, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=10] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=150, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=150, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=150, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:22:10 UTC 2087 INFO asyncssh:logging.py:92 [conn=150, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=150, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=150, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=150, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=150, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=150, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=150, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=150, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=150, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=150, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=150, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=150, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=150, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=150, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=24] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=150, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=24] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=150, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=150, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=26] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=150, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=150, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=27] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=150, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=28] Command: bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=150, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=28] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp36 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=150, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=150, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=30] Command: ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=150, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp36 ', 'rc': 0, 'result': '[{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=150, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=150, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=32] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=150, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=150, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=34] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=150, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:1 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:2 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:3 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=150, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip route add default metric 100 via 1.1.1.2 dev swp33 && ip route add default metric 200 via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=150, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=36] Command: ip route add default metric 100 via 1.1.1.2 dev swp33 && ip route add default metric 200 via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=150, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad6d1000>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:1 5.5.5.5 Tx 5314 Rx 5314 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:2 5.5.5.5 Tx 5314 Rx 0 Frames Delta 5314 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:3 5.5.5.5 Tx 5314 Rx 0 Frames Delta 5314 Loss 100.000 INFO asyncssh:logging.py:92 [conn=150, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=150, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=38] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=150, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"1.1.1.2","dev":"swp33","metric":100,"flags":["offload","rt_offload"]},{"dst":"default","gateway":"2.2.2.2","dev":"swp34","metric":200,"flags":[]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=150, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip route add default via 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=150, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=40] Command: ip route add default via 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=150, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49accf82e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:1 5.5.5.5 Tx 9228 Rx 0 Frames Delta 9228 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:2 5.5.5.5 Tx 9228 Rx 0 Frames Delta 9228 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:3 5.5.5.5 Tx 9228 Rx 9228 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=150, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=150, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=42] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=150, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"3.3.3.2","dev":"swp35","flags":["offload","rt_offload"]},{"dst":"default","gateway":"1.1.1.2","dev":"swp33","metric":100,"flags":["offload"]},{"dst":"default","gateway":"2.2.2.2","dev":"swp34","metric":200,"flags":[]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_default_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py INFO asyncssh:logging.py:92 [conn=150, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=43] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=150, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=44] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=150, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=44] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=45] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=46] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:24:48 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=47] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=48] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:24:48 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=150, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=150, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=50] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=150, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=52] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=150, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=150, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=54] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=150, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=56] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=150, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=58] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=58] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=150, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=150, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=60] Command: ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=150, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=60] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_gw.py::test_ipv4_not_connected_gw | 0.96 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7951' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_not_connected_gw">Starting testcase:test_ipv4_not_connected_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=151] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=151] Local address: 172.17.0.4, port 33762 INFO asyncssh:logging.py:92 [conn=151] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=151] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=151] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:24:49 UTC 2087 INFO asyncssh:logging.py:92 [conn=151, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=151, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=151, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=151, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=151, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=151, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:24:49 UTC 2087 INFO asyncssh:logging.py:92 [conn=151, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=151, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=8] Command: ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=151, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip route add default via 5.5.5.5 dev swp33 INFO asyncssh:logging.py:92 [conn=151, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=10] Command: ip route add default via 5.5.5.5 dev swp33 INFO asyncssh:logging.py:92 [conn=151, chan=10] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=10] Channel closed DEBUG infra1:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=151, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2.2.2.2/24 dev swp34 INFO asyncssh:logging.py:92 [conn=151, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=12] Command: ip address add 2.2.2.2/24 dev swp34 INFO asyncssh:logging.py:92 [conn=151, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add default via 5.5.5.5 dev swp34 INFO asyncssh:logging.py:92 [conn=151, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=14] Command: ip route add default via 5.5.5.5 dev swp34 INFO asyncssh:logging.py:92 [conn=151, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=14] Channel closed DEBUG infra1:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=151, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 3.3.3.3/24 dev swp35 INFO asyncssh:logging.py:92 [conn=151, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=16] Command: ip address add 3.3.3.3/24 dev swp35 INFO asyncssh:logging.py:92 [conn=151, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip route add default via 5.5.5.5 dev swp35 INFO asyncssh:logging.py:92 [conn=151, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=18] Command: ip route add default via 5.5.5.5 dev swp35 INFO asyncssh:logging.py:92 [conn=151, chan=18] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=18] Channel closed DEBUG infra1:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=151, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip address add 4.4.4.4/24 dev swp36 INFO asyncssh:logging.py:92 [conn=151, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=20] Command: ip address add 4.4.4.4/24 dev swp36 INFO asyncssh:logging.py:92 [conn=151, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip route add default via 5.5.5.5 dev swp36 INFO asyncssh:logging.py:92 [conn=151, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=22] Command: ip route add default via 5.5.5.5 dev swp36 INFO asyncssh:logging.py:92 [conn=151, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=22] Channel closed DEBUG infra1:Logger.py:156 Error: Nexthop has invalid gateway. -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_not_connected_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py INFO asyncssh:logging.py:92 [conn=151, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=151, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=151, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:24:49 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:24:49 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=151, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=151, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=151, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=151, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=151, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=151, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_icmp_disabled | 146.74 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7997' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_icmp_disabled">Starting testcase:test_ipv4_icmp_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=152] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=152] Local address: 172.17.0.4, port 33768 INFO asyncssh:logging.py:92 [conn=152] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=152] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=152] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:24:50 UTC 2087 INFO asyncssh:logging.py:92 [conn=152, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=152, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=152, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=152, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=152, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=152, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:24:50 UTC 2087 INFO asyncssh:logging.py:92 [conn=152, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=152, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=152, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=152, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=152, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=152, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.icmp_echo_ignore_all INFO asyncssh:logging.py:92 [conn=152, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=12] Command: sysctl -n net.ipv4.icmp_echo_ignore_all INFO asyncssh:logging.py:92 [conn=152, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=12] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=152, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.icmp_echo_ignore_all=1 INFO asyncssh:logging.py:92 [conn=152, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=14] Command: sysctl net.ipv4.icmp_echo_ignore_all=1 INFO asyncssh:logging.py:92 [conn=152, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.icmp_echo_ignore_all = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad42f190>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ipv4 SIP-DIP 1.1.1.2-2.2.2.2 Tx 600 Rx 600 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:1_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:2_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:3_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:4_4.4.4.2/24 to 4.4.4.1 WARNING DENT:Logger.py:111 [Ixia Traffic Generator] Some pings did not reach their destination [{'ixia': {'command': 'send_ping&& send_ping&& send_ping&& send_ping', 'rc': 1, 'result': [{'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 1.1.1.2 -> 1.1.1.1 failed - timeout', 'port': '10.36.118.199:2:1', 'src_ip': '1.1.1.2', 'dst_ip': '1.1.1.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 2.2.2.2 -> 2.2.2.1 failed - timeout', 'port': '10.36.118.199:2:2', 'src_ip': '2.2.2.2', 'dst_ip': '2.2.2.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 3.3.3.2 -> 3.3.3.1 failed - timeout', 'port': '10.36.118.199:2:3', 'src_ip': '3.3.3.2', 'dst_ip': '3.3.3.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 4.4.4.2 -> 4.4.4.1 failed - timeout', 'port': '10.36.118.199:2:4', 'src_ip': '4.4.4.2', 'dst_ip': '4.4.4.1'}]}}] INFO asyncssh:logging.py:92 [conn=152, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=15] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.icmp_echo_ignore_all=0 INFO asyncssh:logging.py:92 [conn=152, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=16] Command: sysctl net.ipv4.icmp_echo_ignore_all=0 INFO asyncssh:logging.py:92 [conn=152, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=16] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.icmp_echo_ignore_all = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:1_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:2_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:3_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:4_4.4.4.2/24 to 4.4.4.1 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_icmp_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=152, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=17] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=152, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=18] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=152, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=18] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:27:16 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:27:16 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=152, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=152, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=24] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=152, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=26] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=152, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=152, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=28] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=152, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=28] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_stability | 232.87 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8037' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_stability">Starting testcase:test_ipv4_ping_stability from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=153] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=153] Local address: 172.17.0.4, port 58334 INFO asyncssh:logging.py:92 [conn=153] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=153] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=153] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:27:16 UTC 2087 INFO asyncssh:logging.py:92 [conn=153, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=153, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=153, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=153, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=153, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=153, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:27:17 UTC 2087 INFO asyncssh:logging.py:92 [conn=153, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=153, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=153, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=153, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=153, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=153, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=153, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=13] Received channel close DEBUG infra1:Logger.py:156 ping -I swp33 -i 0.005 -w 120 1.1.1.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=153, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=153, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=153, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=14] Received channel close DEBUG infra1:Logger.py:156 ping -I swp34 -i 0.005 -w 120 2.2.2.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=153, chan=16] Requesting new SSH session DEBUG infra1:Logger.py:156 ping -I swp35 -i 0.005 -w 120 3.3.3.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=153, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=153, chan=15] Command: ping -I swp33 -i 0.005 -w 120 1.1.1.2 | grep "bytes from" | wc -l DEBUG infra1:Logger.py:156 ping -I swp36 -i 0.005 -w 120 4.4.4.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=153, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=16] Command: ping -I swp34 -i 0.005 -w 120 2.2.2.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=153, chan=17] Command: ping -I swp35 -i 0.005 -w 120 3.3.3.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=153, chan=18] Command: ping -I swp36 -i 0.005 -w 120 4.4.4.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=153, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=15] Channel closed DEBUG infra1:Logger.py:156 3069 INFO asyncssh:logging.py:92 [conn=153, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=153, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=17] Received channel close DEBUG infra1:Logger.py:156 2958 INFO asyncssh:logging.py:92 [conn=153, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=153, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=18] Received channel close DEBUG infra1:Logger.py:156 3020 INFO asyncssh:logging.py:92 [conn=153, chan=18] Channel closed DEBUG infra1:Logger.py:156 2993 INFO DENT:Logger.py:84 [DENT infrastructure 1] Total run time: 120.06s, pings received: 12040 INFO DENT:Logger.py:84 [DENT infrastructure 1] Actual icmp rate: 100.28pps, expected: 100pps -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_stability from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=153, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=153, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=153, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:31:09 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:31:09 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=153, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=153, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=153, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=153, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=153, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=153, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_static_ip | 111.43 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8141' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_static_ip">Starting testcase:test_ipv4_ping_static_ip from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=155] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=155] Local address: 172.17.0.4, port 50562 INFO asyncssh:logging.py:92 [conn=155] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=155] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=155] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:33:18 UTC 2087 INFO asyncssh:logging.py:92 [conn=155, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=155, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=155, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=155, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=155, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=155, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:33:18 UTC 2087 INFO asyncssh:logging.py:92 [conn=155, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=155, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=155, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=155, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=155, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:1_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:2_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:3_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:4_4.4.4.2/24 to 4.4.4.1 INFO asyncssh:logging.py:92 [conn=155, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=155, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=155, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=14] Received channel close DEBUG infra1:Logger.py:156 ping -I swp33 -c 1 -i 0.1 -s 0 -w 120 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=155, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=13] Channel closed DEBUG infra1:Logger.py:156 ping -I swp34 -c 1 -i 0.1 -s 0 -w 120 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=155, chan=16] Requesting new SSH session DEBUG infra1:Logger.py:156 ping -I swp35 -c 1 -i 0.1 -s 0 -w 120 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=155, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=14] Channel closed DEBUG infra1:Logger.py:156 ping -I swp36 -c 1 -i 0.1 -s 0 -w 120 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=155, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=15] Command: ping -I swp33 -c 1 -i 0.1 -s 0 -w 120 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=155, chan=16] Command: ping -I swp34 -c 1 -i 0.1 -s 0 -w 120 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=155, chan=17] Command: ping -I swp35 -c 1 -i 0.1 -s 0 -w 120 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=155, chan=18] Command: ping -I swp36 -c 1 -i 0.1 -s 0 -w 120 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=155, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=155, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=17] Received channel close DEBUG infra1:Logger.py:156 --- 2.2.2.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms INFO asyncssh:logging.py:92 [conn=155, chan=15] Channel closed INFO asyncssh:logging.py:92 [conn=155, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=155, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=18] Received channel close DEBUG infra1:Logger.py:156 --- 1.1.1.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms DEBUG infra1:Logger.py:156 --- 3.3.3.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms INFO asyncssh:logging.py:92 [conn=155, chan=18] Channel closed DEBUG infra1:Logger.py:156 --- 4.4.4.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_static_ip from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=155, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=155, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=155, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:35:09 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:35:09 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=155, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=155, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=155, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=155, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=155, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=155, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=155, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=155, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_fwd_disable | 123.52 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8187' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_fwd_disable">Starting testcase:test_ipv4_fwd_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=156] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=156] Local address: 172.17.0.4, port 41868 INFO asyncssh:logging.py:92 [conn=156] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=156] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=156] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:35:10 UTC 2087 INFO asyncssh:logging.py:92 [conn=156, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=156, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=156, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=156, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=156, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=156, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:35:10 UTC 2087 INFO asyncssh:logging.py:92 [conn=156, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=156, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=156, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=156, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=156, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=156, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=156, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=12] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=156, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=156, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=14] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=156, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP from 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP from 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:1_1.1.1.2/24 to 4.4.4.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:2_2.2.2.2/24 to 3.3.3.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:3_3.3.3.2/24 to 2.2.2.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:4_4.4.4.2/24 to 1.1.1.2 WARNING DENT:Logger.py:111 [Ixia Traffic Generator] Some pings did not reach their destination [{'ixia': {'command': 'send_ping&& send_ping&& send_ping&& send_ping', 'rc': 1, 'result': [{'success': True, 'info': '1 requests sent, 1 replies received., \nPing: 1.1.1.2 -> 4.4.4.2 succeeded - reply received (sequence number = 0)', 'port': '10.36.118.199:2:1', 'src_ip': None, 'dst_ip': '4.4.4.2'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 2.2.2.2 -> 3.3.3.2 failed - timeout', 'port': '10.36.118.199:2:2', 'src_ip': None, 'dst_ip': '3.3.3.2'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 3.3.3.2 -> 2.2.2.2 failed - timeout', 'port': '10.36.118.199:2:3', 'src_ip': None, 'dst_ip': '2.2.2.2'}, {'success': True, 'info': '1 requests sent, 1 replies received., \nPing: 4.4.4.2 -> 1.1.1.2 succeeded - reply received (sequence number = 0)', 'port': '10.36.118.199:2:4', 'src_ip': None, 'dst_ip': '1.1.1.2'}]}}] INFO asyncssh:logging.py:92 [conn=156, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=15] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=156, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=16] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=156, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=16] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 INFO asyncssh:logging.py:92 [conn=156, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=156, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=18] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=156, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:1_1.1.1.2/24 to 4.4.4.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:2_2.2.2.2/24 to 3.3.3.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:3_3.3.3.2/24 to 2.2.2.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:4_4.4.4.2/24 to 1.1.1.2 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_fwd_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=156, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=156, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=156, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:37:12 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:37:13 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=156, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=156, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=156, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=156, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=156, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=156, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=156, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=156, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_mtu.py::test_ipv4_oversized_mtu | 145.53 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8227' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_oversized_mtu">Starting testcase:test_ipv4_oversized_mtu from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=157] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=157] Local address: 172.17.0.4, port 47122 INFO asyncssh:logging.py:92 [conn=157] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=157] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=157] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:37:13 UTC 2087 INFO asyncssh:logging.py:92 [conn=157, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=157, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=157, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=4] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:37:13 UTC 2087 INFO asyncssh:logging.py:92 [conn=157, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=5] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=157, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=6] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=157, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=6] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=157, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=157, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=8] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=157, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=8] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=10] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:37:13 UTC 2087 INFO asyncssh:logging.py:92 [conn=157, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=157, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=157, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=157, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=14] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=157, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2.2.2.2/24 to 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 <-> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:4_4.4.4.2/24 to 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=157, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1000 && ip link set dev swp34 mtu 1000 && ip link set dev swp35 mtu 1000 && ip link set dev swp36 mtu 1000 INFO asyncssh:logging.py:92 [conn=157, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=16] Command: ip link set dev swp33 mtu 1000 && ip link set dev swp34 mtu 1000 && ip link set dev swp35 mtu 1000 && ip link set dev swp36 mtu 1000 INFO asyncssh:logging.py:92 [conn=157, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=157, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=18] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=157, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=18] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 3984464560 bad_octets_received: 2622464 mac_trans_error: 0 broadcast_frames_received: 122 multicast_frames_received: 7701264 frames_64_octets: 615 frames_65_to_127_octets: 27397 frames_128_to_255_octets: 190 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 13899477 frames_1024_to_max_octets: 145 excessive_collision: 0 multicast_frames_sent: 721 broadcast_frames_sent: 180 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 5122 collisions: 0 late_collision: 0 unicast_frames_received: 91700 unicast_frames_sent: 6128715 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3132539712 INFO asyncssh:logging.py:92 [conn=157, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=157, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=20] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=157, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=20] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 36779008 bad_octets_received: 2622464 mac_trans_error: 0 broadcast_frames_received: 124 multicast_frames_received: 49 frames_64_octets: 614 frames_65_to_127_octets: 27278 frames_128_to_255_octets: 183 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 6949560 frames_1024_to_max_octets: 145 excessive_collision: 0 multicast_frames_sent: 6816926 broadcast_frames_sent: 178 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 5122 collisions: 0 late_collision: 0 unicast_frames_received: 82549 unicast_frames_sent: 72832 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3521854462 INFO asyncssh:logging.py:92 [conn=157, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=157, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=22] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=157, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=22] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 4756874328 bad_octets_received: 389 mac_trans_error: 0 broadcast_frames_received: 108 multicast_frames_received: 7 frames_64_octets: 565 frames_65_to_127_octets: 27289 frames_128_to_255_octets: 175 frames_256_to_511_octets: 2 frames_512_to_1023_octets: 15977445 frames_1024_to_max_octets: 145 excessive_collision: 0 multicast_frames_sent: 6612510 broadcast_frames_sent: 180 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 1 collisions: 0 late_collision: 0 unicast_frames_received: 9301521 unicast_frames_sent: 91294 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3426655052 INFO asyncssh:logging.py:92 [conn=157, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=23] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=157, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=24] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=157, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=24] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 53700318 bad_octets_received: 0 mac_trans_error: 0 broadcast_frames_received: 109 multicast_frames_received: 7 frames_64_octets: 568 frames_65_to_127_octets: 27255 frames_128_to_255_octets: 174 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 12607128 frames_1024_to_max_octets: 145 excessive_collision: 0 multicast_frames_sent: 6412438 broadcast_frames_sent: 180 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 115623 unicast_frames_sent: 6106913 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 6404222690 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=157, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=157, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=26] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=157, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=26] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 3984464560 bad_octets_received: 8034976 mac_trans_error: 0 broadcast_frames_received: 122 multicast_frames_received: 7701264 frames_64_octets: 615 frames_65_to_127_octets: 27397 frames_128_to_255_octets: 190 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 13899477 frames_1024_to_max_octets: 145 excessive_collision: 0 multicast_frames_sent: 721 broadcast_frames_sent: 180 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 5296 jabber: 0 rx_error_frame_received: 0 bad_crc: 5122 collisions: 0 late_collision: 0 unicast_frames_received: 91700 unicast_frames_sent: 6128715 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3132539712 INFO asyncssh:logging.py:92 [conn=157, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=157, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=28] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=157, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=28] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 36779008 bad_octets_received: 8034976 mac_trans_error: 0 broadcast_frames_received: 124 multicast_frames_received: 49 frames_64_octets: 614 frames_65_to_127_octets: 27278 frames_128_to_255_octets: 184 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 6949560 frames_1024_to_max_octets: 145 excessive_collision: 0 multicast_frames_sent: 6816927 broadcast_frames_sent: 178 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 5296 jabber: 0 rx_error_frame_received: 0 bad_crc: 5122 collisions: 0 late_collision: 0 unicast_frames_received: 82549 unicast_frames_sent: 72832 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3521854710 INFO asyncssh:logging.py:92 [conn=157, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=157, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=30] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=157, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=30] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 4756874328 bad_octets_received: 5412901 mac_trans_error: 0 broadcast_frames_received: 108 multicast_frames_received: 7 frames_64_octets: 565 frames_65_to_127_octets: 27289 frames_128_to_255_octets: 176 frames_256_to_511_octets: 2 frames_512_to_1023_octets: 15977445 frames_1024_to_max_octets: 145 excessive_collision: 0 multicast_frames_sent: 6612511 broadcast_frames_sent: 180 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 5296 jabber: 0 rx_error_frame_received: 0 bad_crc: 1 collisions: 0 late_collision: 0 unicast_frames_received: 9301521 unicast_frames_sent: 91294 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3426655300 INFO asyncssh:logging.py:92 [conn=157, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=157, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=32] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=157, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=32] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 53700318 bad_octets_received: 5412512 mac_trans_error: 0 broadcast_frames_received: 109 multicast_frames_received: 7 frames_64_octets: 568 frames_65_to_127_octets: 27255 frames_128_to_255_octets: 175 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 12607128 frames_1024_to_max_octets: 145 excessive_collision: 0 multicast_frames_sent: 6412439 broadcast_frames_sent: 180 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 5296 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 115623 unicast_frames_sent: 6106913 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 6404222938 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc50dc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:4 SIP-DIP 1.1.1.2-4.4.4.2 Tx 5296 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2.2.2.2-3.3.3.2 Tx 5296 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:2 SIP-DIP 3.3.3.2-2.2.2.2 Tx 5296 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 <-> 10.36.118.199:2:1 SIP-DIP 4.4.4.2-1.1.1.2 Tx 5296 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_oversized_mtu from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py INFO asyncssh:logging.py:92 [conn=157, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=33] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=157, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=34] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=157, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=34] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:39:38 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=38] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:39:38 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=157, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=157, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=40] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=157, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=157, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=157, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=157, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=157, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=44] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=157, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=157, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=46] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=157, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=46] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_random_routing | 161.62 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8323' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_random_routing">Starting testcase:test_ipv4_random_routing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=159] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=159] Local address: 172.17.0.4, port 49676 INFO asyncssh:logging.py:92 [conn=159] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=159] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=159] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:41:49 UTC 2087 INFO asyncssh:logging.py:92 [conn=159, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=159, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=159, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=159, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=159, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=159, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:41:49 UTC 2087 INFO asyncssh:logging.py:92 [conn=159, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=159, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=159, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 117.229.15.95/15 dev swp33 && ip address add 72.234.1.136/21 dev swp34 && ip address add 81.116.86.117/5 dev swp35 && ip address add 61.127.4.101/17 dev swp36 INFO asyncssh:logging.py:92 [conn=159, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=10] Command: ip address add 117.229.15.95/15 dev swp33 && ip address add 72.234.1.136/21 dev swp34 && ip address add 81.116.86.117/5 dev swp35 && ip address add 61.127.4.101/17 dev swp36 INFO asyncssh:logging.py:92 [conn=159, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_117.229.15.94/15', 'count': 1, 'ip': '117.229.15.94', 'gw': '117.229.15.95', 'plen': 15, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_72.234.1.137/21', 'count': 1, 'ip': '72.234.1.137', 'gw': '72.234.1.136', 'plen': 21, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_81.116.86.116/5', 'count': 1, 'ip': '81.116.86.116', 'gw': '81.116.86.117', 'plen': 5, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_61.127.4.100/17', 'count': 1, 'ip': '61.127.4.100', 'gw': '61.127.4.101', 'plen': 17, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_117.229.15.94/15 to 10.36.118.199:2:2_72.234.1.137/21 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_117.229.15.94/15 to 10.36.118.199:2:3_81.116.86.116/5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_117.229.15.94/15 to 10.36.118.199:2:4_61.127.4.100/17 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_72.234.1.137/21 to 10.36.118.199:2:1_117.229.15.94/15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_72.234.1.137/21 to 10.36.118.199:2:3_81.116.86.116/5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_72.234.1.137/21 to 10.36.118.199:2:4_61.127.4.100/17 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_81.116.86.116/5 to 10.36.118.199:2:1_117.229.15.94/15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_81.116.86.116/5 to 10.36.118.199:2:2_72.234.1.137/21 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_81.116.86.116/5 to 10.36.118.199:2:4_61.127.4.100/17 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:4_61.127.4.100/17 to 10.36.118.199:2:1_117.229.15.94/15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:4_61.127.4.100/17 to 10.36.118.199:2:2_72.234.1.137/21 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:4_61.127.4.100/17 to 10.36.118.199:2:3_81.116.86.116/5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_117.229.15.94/15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_72.234.1.137/21 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_81.116.86.116/5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_61.127.4.100/17 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc50220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI ipv4 SIP-DIP 117.229.15.94-61.127.4.100 Tx 5124 Rx 5124 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ipv4 SIP-DIP 117.229.15.94-72.234.1.137 Tx 5125 Rx 5125 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI ipv4 SIP-DIP 117.229.15.94-81.116.86.116 Tx 5124 Rx 5124 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI ipv4 #1 SIP-DIP 72.234.1.137-61.127.4.100 Tx 5124 Rx 5124 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI ipv4 #1 SIP-DIP 72.234.1.137-81.116.86.116 Tx 5124 Rx 5124 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI ipv4 #1 SIP-DIP 72.234.1.137-117.229.15.94 Tx 5125 Rx 5125 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI ipv4 #2 SIP-DIP 81.116.86.116-61.127.4.100 Tx 5124 Rx 5124 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI ipv4 #2 SIP-DIP 81.116.86.116-72.234.1.137 Tx 5124 Rx 5124 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI ipv4 #2 SIP-DIP 81.116.86.116-117.229.15.94 Tx 5125 Rx 5125 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI ipv4 #3 SIP-DIP 61.127.4.100-72.234.1.137 Tx 5124 Rx 5124 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI ipv4 #3 SIP-DIP 61.127.4.100-81.116.86.116 Tx 5124 Rx 5124 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI ipv4 #3 SIP-DIP 61.127.4.100-117.229.15.94 Tx 5125 Rx 5125 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_random_routing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=159, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=159, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=159, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:44:30 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:44:30 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=159, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=159, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=159, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=159, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=159, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=159, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=159, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=159, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_nexthop_route | 121.46 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8357' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_nexthop_route">Starting testcase:test_ipv4_nexthop_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=160] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=160] Local address: 172.17.0.4, port 42902 INFO asyncssh:logging.py:92 [conn=160] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=160] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=160] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:44:30 UTC 2087 INFO asyncssh:logging.py:92 [conn=160, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=160, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=160, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=160, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=160, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=160, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:44:30 UTC 2087 INFO asyncssh:logging.py:92 [conn=160, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=160, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=160, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=160, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=160, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=160, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.5 lladdr aa:bb:cc:dd:ee:01 dev swp33 && ip neigh add 2.2.2.5 lladdr aa:bb:cc:dd:ee:02 dev swp34 INFO asyncssh:logging.py:92 [conn=160, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=12] Command: ip neigh add 1.1.1.5 lladdr aa:bb:cc:dd:ee:01 dev swp33 && ip neigh add 2.2.2.5 lladdr aa:bb:cc:dd:ee:02 dev swp34 INFO asyncssh:logging.py:92 [conn=160, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 16.0.0.0/24 nexthop via 2.2.2.5 INFO asyncssh:logging.py:92 [conn=160, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=14] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 16.0.0.0/24 nexthop via 2.2.2.5 INFO asyncssh:logging.py:92 [conn=160, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=160, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=160, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=160, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=160, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=160, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=160, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=160, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=160, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=160, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=160, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=160, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49accfae30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 -> 10.36.118.199:2:2 Tx 5854 Rx 5854 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:2 -> 10.36.118.199:2:1 Tx 5854 Rx 5854 Frames Delta 0 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_nexthop_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=160, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=160, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=160, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:46:31 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:46:31 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=160, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=160, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=160, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=160, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=160, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=160, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=160, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=160, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_route_between_vlan_devs | 139.39 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8404' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_route_between_vlan_devs">Starting testcase:test_ipv4_route_between_vlan_devs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=161] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=161] Local address: 172.17.0.4, port 34942 INFO asyncssh:logging.py:92 [conn=161] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=161] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=161] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:46:32 UTC 2087 INFO asyncssh:logging.py:92 [conn=161, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=161, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=161, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=161, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=161, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=161, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:46:32 UTC 2087 INFO asyncssh:logging.py:92 [conn=161, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=161, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=161, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 INFO asyncssh:logging.py:92 [conn=161, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 INFO asyncssh:logging.py:92 [conn=161, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 10 && bridge vlan add dev swp34 vid 20 && bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 20 self INFO asyncssh:logging.py:92 [conn=161, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=12] Command: bridge vlan add dev swp33 vid 10 && bridge vlan add dev swp34 vid 20 && bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 20 self INFO asyncssh:logging.py:92 [conn=161, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.20 type vlan id 20 INFO asyncssh:logging.py:92 [conn=161, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=14] Command: ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.20 type vlan id 20 INFO asyncssh:logging.py:92 [conn=161, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev br0 up && ip link set dev br0.10 up && ip link set dev br0.20 up INFO asyncssh:logging.py:92 [conn=161, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev br0 up && ip link set dev br0.10 up && ip link set dev br0.20 up INFO asyncssh:logging.py:92 [conn=161, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=161, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=18] Command: ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=161, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 10, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': 20, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=161, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=161, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=20] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=161, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"br0.10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"br0.20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2.2.2.2/24 to 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc50460>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 1.1.1.2-2.2.2.2 Tx 5859 Rx 5859 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI traffic #1 SIP-DIP 2.2.2.2-1.1.1.2 Tx 5859 Rx 5859 Loss 0.000 INFO asyncssh:logging.py:92 [conn=161, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip address flush br0.10 && ip address flush br0.20 INFO asyncssh:logging.py:92 [conn=161, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=22] Command: ip address flush br0.10 && ip address flush br0.20 INFO asyncssh:logging.py:92 [conn=161, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=161, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=24] Command: ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=161, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=161, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=161, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=161, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"br0.10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"br0.20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc276a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 1.1.1.2-2.2.2.2 Tx 9074 Rx 9074 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI traffic #1 SIP-DIP 2.2.2.2-1.1.1.2 Tx 9074 Rx 9074 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_route_between_vlan_devs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=161, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=161, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=161, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:48:50 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=32] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:48:50 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=161, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=161, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=161, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=161, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=161, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":66,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":67,"link":"br0","ifname":"br0.10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":68,"link":"br0","ifname":"br0.20","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=161, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=161, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=161, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=40] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:48:51 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=161, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=161, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=161, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":66,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=161, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=161, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=44] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=161, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=44] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_nexthop_static_route | 137.32 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8462' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_nexthop_static_route">Starting testcase:test_ipv4_nexthop_static_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=162] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=162] Local address: 172.17.0.4, port 37812 INFO asyncssh:logging.py:92 [conn=162] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=162] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=162] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:48:51 UTC 2087 INFO asyncssh:logging.py:92 [conn=162, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=162, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=162, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=162, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=162, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=162, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:48:51 UTC 2087 INFO asyncssh:logging.py:92 [conn=162, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=162, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=8] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=162, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=8] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=162, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=162, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=10] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=162, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=162, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=162, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=12] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=162, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=12] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=162, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=162, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=14] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=162, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=162, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=162, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=16] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=162, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=162, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=162, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=18] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=162, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=162, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=162, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=20] Command: bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=162, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp36 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=162, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=162, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=22] Command: ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=162, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp36 ', 'rc': 0, 'result': '[{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=162, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=162, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=24] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=162, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=162, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=26] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=162, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=162, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 101.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=162, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=28] Command: ip route add 100.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 101.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=162, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=162, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=30] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=162, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"100.0.0.1","gateway":"1.1.1.2","dev":"swp33","flags":["trap","rt_offload"]},{"dst":"101.0.0.1","gateway":"2.2.2.2","dev":"swp34","flags":["trap","rt_offload"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=162, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=162, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=32] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=162, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=162, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip route delete 100.0.0.1 dev swp33 && ip route delete 101.0.0.1 dev swp34 INFO asyncssh:logging.py:92 [conn=162, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=34] Command: ip route delete 100.0.0.1 dev swp33 && ip route delete 101.0.0.1 dev swp34 INFO asyncssh:logging.py:92 [conn=162, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=162, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=36] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=162, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=162, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 INFO asyncssh:logging.py:92 [conn=162, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=38] Command: ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 INFO asyncssh:logging.py:92 [conn=162, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=162, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=40] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=162, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","state":["FAILED"]},{"dst":"2.2.2.2","dev":"swp34","state":["FAILED"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","state":["FAILED"]},{"dst":"1.1.1.2","dev":"swp33","state":["FAILED"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_nexthop_static_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=162, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=41] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=162, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=162, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=42] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=43] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=44] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:51:03 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=45] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=46] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:51:08 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=162, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=162, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=48] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=162, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=162, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=50] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=162, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=162, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=162, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=52] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=162, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=52] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_two_routes_to_same_net | 129.40 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8526' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_two_routes_to_same_net">Starting testcase:test_ipv4_two_routes_to_same_net from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=163] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=163] Local address: 172.17.0.4, port 39992 INFO asyncssh:logging.py:92 [conn=163] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=163] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=163] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:51:09 UTC 2087 INFO asyncssh:logging.py:92 [conn=163, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=163, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=163, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=163, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=163, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=163, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:51:09 UTC 2087 INFO asyncssh:logging.py:92 [conn=163, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=163, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=163, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=163, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=163, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=163, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip route add 2.2.2.0/24 nexthop via 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=163, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=12] Command: ip route add 2.2.2.0/24 nexthop via 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=163, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=163, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=14] Command: ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=163, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=163, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=16] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=163, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","gateway":"1.1.1.2","dev":"swp33","flags":["trap","rt_offload"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":[]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file /tmp/ixia/tgen_ipv4_two_routes_to_same_net_config.ixncfg INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc27f40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 -> 10.36.118.199:2:2 Tx 9985 Rx 0 Frames Delta 9985 Loss 100.000 INFO asyncssh:logging.py:92 [conn=163, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address delete 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=163, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=18] Command: ip address delete 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=163, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=163, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=20] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=163, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","gateway":"1.1.1.2","dev":"swp33","flags":["offload","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc26f50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 18883 Rx 18885 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_two_routes_to_same_net from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=163, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=21] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=163, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=163, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=22] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:53:17 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:53:18 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=163, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=163, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=163, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=163, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=163, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=163, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=163, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=163, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=32] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6.py::test_ipv6_basic_config | 138.36 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8569' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_basic_config">Starting testcase:test_ipv6_basic_config from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=164] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=164] Local address: 172.17.0.4, port 38038 INFO asyncssh:logging.py:92 [conn=164] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=164] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=164] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:53:18 UTC 2087 INFO asyncssh:logging.py:92 [conn=164, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=164, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=164, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=164, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=164, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=164, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:53:18 UTC 2087 INFO asyncssh:logging.py:92 [conn=164, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=164, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=164, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111:10:1::1/64 dev swp33 && ip address add 2001:2222:20:2::1/64 dev swp33 && ip address add 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=164, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=10] Command: ip address add 2001:1111:10:1::1/64 dev swp33 && ip address add 2001:2222:20:2::1/64 dev swp33 && ip address add 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=164, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111:10:1::2/64', 'count': 1, 'ip': '2001:1111:10:1::2', 'gw': '2001:1111:10:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:2222:20:2::2/64', 'count': 1, 'ip': '2001:2222:20:2::2', 'gw': '2001:2222:20:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:3333:30:3::2/64', 'count': 1, 'ip': '2001:3333:30:3::2', 'gw': '2001:3333:30:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=164, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=164, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=12] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=164, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222:20:2::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111:10:1::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333:30:3::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=164, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=164, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=164, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=164, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=164, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=164, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111:10:1::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222:20:2::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333:30:3::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:3333:30:3::2/64 to 10.36.118.199:2:1_2001:1111:10:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:3333:30:3::2/64 to 10.36.118.199:2:1_2001:2222:20:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111:10:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:2222:20:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:3333:30:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc27a00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:10:1:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 58637 Rx 58637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:20:2:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 58637 Rx 58637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:1111:10:1:0:0:0:2 Tx 58637 Rx 58637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:2222:20:2:0:0:0:2 Tx 58637 Rx 58637 Loss 0.000 INFO asyncssh:logging.py:92 [conn=164, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=164, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=164, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=164, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=164, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=164, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:3333:30:3::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:2222:20:2::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111:10:1::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=164, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip address delete 2001:1111:10:1::1/64 dev swp33 && ip address delete 2001:2222:20:2::1/64 dev swp33 && ip address delete 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=164, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=22] Command: ip address delete 2001:1111:10:1::1/64 dev swp33 && ip address delete 2001:2222:20:2::1/64 dev swp33 && ip address delete 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=164, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc25600>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:10:1:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 87680 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:20:2:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 87679 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:1111:10:1:0:0:0:2 Tx 87680 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:2222:20:2:0:0:0:2 Tx 87679 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_basic_config from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=164, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=164, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=24] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=164, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:55:36 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=164, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=164, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=164, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=164, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=164, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=164, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=164, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=164, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=32] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6.py::test_ipv6_flags | 166.78 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8613' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_flags">Starting testcase:test_ipv6_flags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=165] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=165] Local address: 172.17.0.4, port 50740 INFO asyncssh:logging.py:92 [conn=165] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=165] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=165] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:55:36 UTC 2087 INFO asyncssh:logging.py:92 [conn=165, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=165, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=165, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=165, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=165, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=165, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:55:36 UTC 2087 INFO asyncssh:logging.py:92 [conn=165, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=165, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=165, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address change 2001:1111::1/64 dev swp33 valid_lft 960 preferred_lft 900 && ip address change 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=165, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=10] Command: ip address change 2001:1111::1/64 dev swp33 valid_lft 960 preferred_lft 900 && ip address change 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=165, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address replace 2001:3333::1/64 dev swp33 && ip address replace 2001:4444::1/64 dev swp34 valid_lft 960 preferred_lft 900 INFO asyncssh:logging.py:92 [conn=165, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=12] Command: ip address replace 2001:3333::1/64 dev swp33 && ip address replace 2001:4444::1/64 dev swp34 valid_lft 960 preferred_lft 900 INFO asyncssh:logging.py:92 [conn=165, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=165, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=14] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=165, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"dynamic":true,"valid_life_time":960,"preferred_life_time":900}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","tentative":true,"dynamic":true,"valid_life_time":960,"preferred_life_time":900},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:3333::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:3333::2/64 to 10.36.118.199:2:2_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc26320>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 58497 Rx 58497 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 58497 Rx 58497 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 58497 Rx 58497 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 58497 Rx 58497 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 58497 Rx 58497 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 58497 Rx 58497 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 58496 Rx 58496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 58496 Rx 58496 Loss 0.000 INFO asyncssh:logging.py:92 [conn=165, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=165, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=165, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","dynamic":true,"valid_life_time":835,"preferred_life_time":775},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","dynamic":true,"valid_life_time":835,"preferred_life_time":775},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=165, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address change 2001:1111::1/64 dev swp33 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=165, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=18] Command: ip address change 2001:1111::1/64 dev swp33 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=165, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip address replace 2001:4444::1/64 dev swp34 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=165, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=20] Command: ip address replace 2001:4444::1/64 dev swp34 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=165, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc26dd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94805 Rx 94805 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 94804 Rx 94804 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94805 Rx 94805 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94804 Rx 94804 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 94805 Rx 94805 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94805 Rx 94805 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 94804 Rx 94804 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 94804 Rx 94804 Loss 0.000 INFO asyncssh:logging.py:92 [conn=165, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=165, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=22] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=165, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","deprecated":true,"dynamic":true,"valid_life_time":103,"preferred_life_time":0},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","deprecated":true,"dynamic":true,"valid_life_time":103,"preferred_life_time":0},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=165, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address change 2001:1111::1/64 dev swp33 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=165, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=24] Command: ip address change 2001:1111::1/64 dev swp33 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=165, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address replace 2001:4444::1/64 dev swp34 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=165, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=26] Command: ip address replace 2001:4444::1/64 dev swp34 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=165, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=165, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=28] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=165, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=165, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp33 && ip neigh flush dev swp34 INFO asyncssh:logging.py:92 [conn=165, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=30] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp33 && ip neigh flush dev swp34 INFO asyncssh:logging.py:92 [conn=165, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc25330>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94736 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 94735 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94736 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94735 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 94736 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94736 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 94735 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 94735 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_flags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=165, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=31] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=165, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=165, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=32] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:58:23 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=165, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=165, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=165, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=165, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=165, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=165, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=165, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=165, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6.py::test_ipv6_secondary_addr | 185.14 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8665' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_secondary_addr">Starting testcase:test_ipv6_secondary_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=166] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=166] Local address: 172.17.0.4, port 59134 INFO asyncssh:logging.py:92 [conn=166] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=166] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=166] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:58:23 UTC 2087 INFO asyncssh:logging.py:92 [conn=166, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=166, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=166, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=166, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=166, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=166, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 18:58:23 UTC 2087 INFO asyncssh:logging.py:92 [conn=166, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=166, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=8] Command: sysctl net.ipv6.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=166, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=8] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.swp33.base_reachable_time_ms = 30000 net.ipv6.neigh.swp34.base_reachable_time_ms = 30000 INFO asyncssh:logging.py:92 [conn=166, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=150000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=150000 INFO asyncssh:logging.py:92 [conn=166, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=10] Command: sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=150000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=150000 INFO asyncssh:logging.py:92 [conn=166, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.swp33.base_reachable_time_ms = 150000 net.ipv6.neigh.swp34.base_reachable_time_ms = 150000 INFO asyncssh:logging.py:92 [conn=166, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=166, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=166, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=166, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=14] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=166, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::4/64', 'count': 1, 'ip': '2001:1111::4', 'gw': '2001:1111::3', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::6/64', 'count': 1, 'ip': '2001:1111::6', 'gw': '2001:1111::5', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::4/64', 'count': 1, 'ip': '2001:2222::4', 'gw': '2001:2222::3', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::6/64', 'count': 1, 'ip': '2001:2222::6', 'gw': '2001:2222::5', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=166, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=166, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=166, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::3","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::3","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=166, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=166, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=166, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=166, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=166, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=166, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::4/64 to 10.36.118.199:2:2_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::6/64 to 10.36.118.199:2:2_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad42dde0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 58486 Rx 58486 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 58486 Rx 58486 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 58486 Rx 58486 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 58486 Rx 58486 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 58486 Rx 58486 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 58486 Rx 58486 Loss 0.000 INFO asyncssh:logging.py:92 [conn=166, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=166, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=22] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=166, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=166, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=166, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=24] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=166, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::216:1ff:fe00:1","dev":"swp34","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::4","dev":"swp34","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"2001:1111::6","dev":"swp33","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::215:1ff:fe00:1","dev":"swp34","lladdr":"00:15:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp33","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::4","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::6","dev":"swp34","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=166, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address delete 2001:1111::3/64 dev swp33 && ip address delete 2001:2222::3/64 dev swp34 INFO asyncssh:logging.py:92 [conn=166, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=26] Command: ip address delete 2001:1111::3/64 dev swp33 && ip address delete 2001:2222::3/64 dev swp34 INFO asyncssh:logging.py:92 [conn=166, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=166, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=166, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=28] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=166, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc532b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 95209 Rx 95209 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 95209 Rx 95209 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 95209 Rx 95209 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 95209 Rx 95209 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 95209 Rx 95209 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 95209 Rx 95209 Loss 0.000 INFO asyncssh:logging.py:92 [conn=166, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address delete 2001:1111::5/64 dev swp33 && ip address delete 2001:2222::5/64 dev swp34 && ip address delete 2001:1111::1/64 dev swp33 && ip address delete 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=166, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=30] Command: ip address delete 2001:1111::5/64 dev swp33 && ip address delete 2001:2222::5/64 dev swp34 && ip address delete 2001:1111::1/64 dev swp33 && ip address delete 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=166, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=166, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=166, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=32] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=166, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc24f40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94650 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94650 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 94650 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 94650 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 94650 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 94650 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=166, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=166, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=34] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=166, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=166, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=36] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=166, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::3","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::3","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc271c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94872 Rx 94872 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94872 Rx 94872 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 94872 Rx 94872 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 94872 Rx 94872 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 94872 Rx 94872 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 94872 Rx 94872 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_secondary_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=166, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=37] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=166, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=38] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=166, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=38] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.swp33.base_reachable_time_ms = 30000 net.ipv6.neigh.swp34.base_reachable_time_ms = 30000 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=40] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:01:28 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=166, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=166, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=42] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=166, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=166, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=44] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=166, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=166, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=166, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=46] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=166, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=46] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_bridge.py::test_ipv6_on_bridge | 163.88 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8723' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_on_bridge">Starting testcase:test_ipv6_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=167] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=167] Local address: 172.17.0.4, port 41402 INFO asyncssh:logging.py:92 [conn=167] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=167] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=167] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:01:28 UTC 2087 INFO asyncssh:logging.py:92 [conn=167, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=167, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=167, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=167, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=167, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=167, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:01:28 UTC 2087 INFO asyncssh:logging.py:92 [conn=167, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 0 && ip link add br1 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=167, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=8] Command: ip link add br0 type bridge vlan_filtering 0 && ip link add br1 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=167, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br1 && ip link set dev br0 up && ip link set dev br1 up INFO asyncssh:logging.py:92 [conn=167, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br1 && ip link set dev br0 up && ip link set dev br1 up INFO asyncssh:logging.py:92 [conn=167, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 && ip address add 2001:3333::1/64 dev br1 && ip address add 2001:4444::1/64 dev swp33 && ip address add 2001:5555::1/64 dev br0 && ip address add 2001:6666::1/64 dev br1 INFO asyncssh:logging.py:92 [conn=167, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 && ip address add 2001:3333::1/64 dev br1 && ip address add 2001:4444::1/64 dev swp33 && ip address add 2001:5555::1/64 dev br0 && ip address add 2001:6666::1/64 dev br1 INFO asyncssh:logging.py:92 [conn=167, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:5555::2/64', 'count': 1, 'ip': '2001:5555::2', 'gw': '2001:5555::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:6666::2/64', 'count': 1, 'ip': '2001:6666::2', 'gw': '2001:6666::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:4444::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:4444::2/64 to 10.36.118.199:2:2_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:3_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:4444::2/64 to 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:4444::2/64 to 10.36.118.199:2:3_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2222::2/64 to 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2222::2/64 to 10.36.118.199:2:3_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:5555::2/64 to 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:5555::2/64 to 10.36.118.199:2:3_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=167, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=167, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=167, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=167, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=167, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=167, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"br1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:5555::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:6666::/64","dev":"br1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"br1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc533a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 55570 Rx 55570 Loss 0.000 INFO asyncssh:logging.py:92 [conn=167, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=167, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=167, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=167, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=167, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=167, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::215:1ff:fe00:1","dev":"br1","lladdr":"00:15:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"br0","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:6666::2","dev":"br1","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"2001:3333::2","dev":"br1","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"br1","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:5555::2","dev":"br0","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"br0","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=167, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:04:11 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=167, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=167, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=167, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":69,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":70,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=167, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 && ip link delete br1 INFO asyncssh:logging.py:92 [conn=167, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=26] Command: ip link delete br0 && ip link delete br1 INFO asyncssh:logging.py:92 [conn=167, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=167, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=167, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=28] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=167, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:04:12 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=167, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=167, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=32] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=167, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=167, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=167, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=167, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=167, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=36] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=167, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=36] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_bridge.py::test_ipv6_on_bridge_vlan | 153.63 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8772' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_on_bridge_vlan">Starting testcase:test_ipv6_on_bridge_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=168] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=168] Local address: 172.17.0.4, port 44248 INFO asyncssh:logging.py:92 [conn=168] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=168] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=168] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:04:12 UTC 2087 INFO asyncssh:logging.py:92 [conn=168, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=168, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=168, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=168, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=168, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=168, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:04:12 UTC 2087 INFO asyncssh:logging.py:92 [conn=168, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=168, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=168, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp35 master br0 INFO asyncssh:logging.py:92 [conn=168, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=10] Command: ip link set dev swp34 master br0 && ip link set dev swp35 master br0 INFO asyncssh:logging.py:92 [conn=168, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev br0 vid 3876 self && bridge vlan add dev br0 vid 3868 self && bridge vlan add dev br0 vid 1826 self && bridge vlan add dev br0 vid 2827 self && bridge vlan add dev swp34 vid 3876 && bridge vlan add dev swp35 vid 3868 && bridge vlan add dev swp34 vid 1826 && bridge vlan add dev swp35 vid 2827 INFO asyncssh:logging.py:92 [conn=168, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=12] Command: bridge vlan add dev br0 vid 3876 self && bridge vlan add dev br0 vid 3868 self && bridge vlan add dev br0 vid 1826 self && bridge vlan add dev br0 vid 2827 self && bridge vlan add dev swp34 vid 3876 && bridge vlan add dev swp35 vid 3868 && bridge vlan add dev swp34 vid 1826 && bridge vlan add dev swp35 vid 2827 INFO asyncssh:logging.py:92 [conn=168, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link add link br0 name br0.3876 type vlan id 3876 && ip link add link br0 name br0.3868 type vlan id 3868 && ip link add link br0 name br0.1826 type vlan id 1826 && ip link add link br0 name br0.2827 type vlan id 2827 INFO asyncssh:logging.py:92 [conn=168, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=14] Command: ip link add link br0 name br0.3876 type vlan id 3876 && ip link add link br0 name br0.3868 type vlan id 3868 && ip link add link br0 name br0.1826 type vlan id 1826 && ip link add link br0 name br0.2827 type vlan id 2827 INFO asyncssh:logging.py:92 [conn=168, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev br0.3876 up && ip link set dev br0.3868 up && ip link set dev br0.1826 up && ip link set dev br0.2827 up INFO asyncssh:logging.py:92 [conn=168, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=16] Command: ip link set dev br0 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev br0.3876 up && ip link set dev br0.3868 up && ip link set dev br0.1826 up && ip link set dev br0.2827 up INFO asyncssh:logging.py:92 [conn=168, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:10::1/64 dev br0.3876 && ip address add 2001:20::1/64 dev br0.3868 && ip address add 2001:30::1/64 dev br0.1826 && ip address add 2001:40::1/64 dev br0.2827 && ip address add 2001:100::1/64 dev swp33 INFO asyncssh:logging.py:92 [conn=168, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=18] Command: ip address add 2001:10::1/64 dev br0.3876 && ip address add 2001:20::1/64 dev br0.3868 && ip address add 2001:30::1/64 dev br0.1826 && ip address add 2001:40::1/64 dev br0.2827 && ip address add 2001:100::1/64 dev swp33 INFO asyncssh:logging.py:92 [conn=168, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:100::2/64', 'count': 1, 'ip': '2001:100::2', 'gw': '2001:100::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:10::2/64', 'count': 1, 'ip': '2001:10::2', 'gw': '2001:10::1', 'plen': 64, 'vlan': 3876, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:30::2/64', 'count': 1, 'ip': '2001:30::2', 'gw': '2001:30::1', 'plen': 64, 'vlan': 1826, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:20::2/64', 'count': 1, 'ip': '2001:20::2', 'gw': '2001:20::1', 'plen': 64, 'vlan': 3868, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:40::2/64', 'count': 1, 'ip': '2001:40::2', 'gw': '2001:40::1', 'plen': 64, 'vlan': 2827, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:100::2/64 to 10.36.118.199:2:2_2001:10::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:100::2/64 to 10.36.118.199:2:2_2001:30::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:100::2/64 to 10.36.118.199:2:3_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:100::2/64 to 10.36.118.199:2:3_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:10::2/64 to 10.36.118.199:2:3_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:10::2/64 to 10.36.118.199:2:3_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:30::2/64 to 10.36.118.199:2:3_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:30::2/64 to 10.36.118.199:2:3_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:100::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:10::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:30::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc25ae0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:10:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 620736 Rx 620736 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:30:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 620735 Rx 620735 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:100:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 54625 Rx 54625 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:100:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 54625 Rx 54625 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:20:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 620736 Rx 620736 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:40:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 620735 Rx 620735 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:100:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 54625 Rx 54625 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:100:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 54625 Rx 54625 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:10:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 54625 Rx 54625 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:10:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 54625 Rx 54625 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:20:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 54625 Rx 54625 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:40:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 54625 Rx 54625 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:20:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 54625 Rx 54625 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:30:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 54625 Rx 54625 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:30:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 54625 Rx 54625 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:40:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 54625 Rx 54625 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_on_bridge_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=168, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:06:45 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=168, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=168, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=168, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":71,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=168, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=168, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=168, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=168, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=25] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=168, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=26] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=168, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=26] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:06:45 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=168, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=168, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=168, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=168, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=168, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=168, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=168, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=168, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_bridge.py::test_ipv6_move_host_on_bridge | 245.10 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8819' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_move_host_on_bridge">Starting testcase:test_ipv6_move_host_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=169] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=169] Local address: 172.17.0.4, port 57424 INFO asyncssh:logging.py:92 [conn=169] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=169] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=169] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:06:46 UTC 2087 INFO asyncssh:logging.py:92 [conn=169, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=169, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=169, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=169, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=169, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=169, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:06:46 UTC 2087 INFO asyncssh:logging.py:92 [conn=169, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=169, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=169, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=169, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=10] Command: ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=169, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 INFO asyncssh:logging.py:92 [conn=169, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 INFO asyncssh:logging.py:92 [conn=169, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp br0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=169, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=169, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=169, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=169, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=169, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=169, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc502e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 59436 Rx 59436 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 59436 Rx 59436 Loss 0.000 INFO asyncssh:logging.py:92 [conn=169, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=169, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=169, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=169, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=169, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=169, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"br0","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_::/64', 'count': 1, 'ip': '::', 'gw': '::', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:3_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_::/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc25330>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 58423 Rx 58423 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 58423 Rx 58423 Loss 0.000 INFO asyncssh:logging.py:92 [conn=169, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=169, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=169, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=169, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=169, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=169, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=169, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=169, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=26] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=169, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=169, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=169, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=28] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=169, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"br0","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"br0","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_move_host_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=169, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:10:50 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=169, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=169, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=169, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":76,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=169, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=169, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=169, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=169, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=35] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=169, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=36] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=169, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=36] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=38] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:10:51 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=169, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=169, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=40] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=169, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=169, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=169, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=169, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=169, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=44] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=169, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=44] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_ipv4.py::test_ipv64_nh_reconfig | 373.09 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8876' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv64_nh_reconfig">Starting testcase:test_ipv64_nh_reconfig from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=170] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=170] Local address: 172.17.0.4, port 52258 INFO asyncssh:logging.py:92 [conn=170] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=170] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=170] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:10:51 UTC 2087 INFO asyncssh:logging.py:92 [conn=170, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=170, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=170, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=170, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=170, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=170, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:10:51 UTC 2087 INFO asyncssh:logging.py:92 [conn=170, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=170, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=170, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=8] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=170, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=170, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=170, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:10:51 UTC 2087 INFO asyncssh:logging.py:92 [conn=170, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=170, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=170, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1::2/64', 'count': 1, 'ip': '2001:1::2', 'gw': '2001:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.2.1.2/24', 'count': 1, 'ip': '1.2.1.2', 'gw': '1.2.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.3.1.2/24', 'count': 1, 'ip': '1.3.1.2', 'gw': '1.3.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3::2/64', 'count': 1, 'ip': '2001:3::2', 'gw': '2001:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.4.1.2/24', 'count': 1, 'ip': '1.4.1.2', 'gw': '1.4.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=170, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=170, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=170, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=170, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=18] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=170, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=170, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=20] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=170, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=170, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=22] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=170, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_1.2.1.2/24 to 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_1.2.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_1.3.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc25300>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.2.1.2 Tx 50889 Rx 50889 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.3.1.2 Tx 50889 Rx 50889 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.4.1.2 Tx 50889 Rx 50889 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.1.1.2 Tx 50889 Rx 50889 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.1.1.2 Tx 50889 Rx 50889 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.1.1.2 Tx 50889 Rx 50889 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.3.1.2 Tx 50889 Rx 50889 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.4.1.2 Tx 50889 Rx 50889 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.2.1.2 Tx 50889 Rx 50889 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.2.1.2 Tx 50889 Rx 50889 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.4.1.2 Tx 50889 Rx 50889 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.3.1.2 Tx 50889 Rx 50889 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 -> nexthop SIP-DIP Tx 50889 Rx 50889 Loss 0.000 INFO asyncssh:logging.py:92 [conn=170, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=24] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=170, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=26] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=170, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=28] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=170, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=170, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=30] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=170, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=170, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=170, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=32] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=170, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=170, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=170, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=34] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=170, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=170, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=170, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=36] Command: ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=170, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1::1/64 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 2001:3::1/64 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=170, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=38] Command: ip address add 2001:1::1/64 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 2001:3::1/64 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=170, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 2001:1::5 lladdr 02:00:00:00:00:02 dev swp33 INFO asyncssh:logging.py:92 [conn=170, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=40] Command: ip neigh add 2001:1::5 lladdr 02:00:00:00:00:02 dev swp33 INFO asyncssh:logging.py:92 [conn=170, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip route add 2001:1234::/64 nexthop via 2001:1::5 INFO asyncssh:logging.py:92 [conn=170, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=42] Command: ip route add 2001:1234::/64 nexthop via 2001:1::5 INFO asyncssh:logging.py:92 [conn=170, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1::2/64 to 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1::2/64 to 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1::2/64 to 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2::2/64 to 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2::2/64 to 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_2001:3::2/64 to 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp 4 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad57f760>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 51317 Rx 51317 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 51317 Rx 51317 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 51317 Rx 51317 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 51317 Rx 51317 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 51317 Rx 51317 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 51317 Rx 51317 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 51317 Rx 51317 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 51317 Rx 51317 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 51317 Rx 51317 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 51317 Rx 51317 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 51317 Rx 51317 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 51317 Rx 51317 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 -> nexthop SIP-DIP Tx 51317 Rx 51317 Loss 0.000 INFO asyncssh:logging.py:92 [conn=170, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=44] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1::5","dev":"swp33","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"2001:1::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:18:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3::2","dev":"swp35","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=170, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=46] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=170, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=48] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=48] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1::5","dev":"swp33","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"2001:1::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:18:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3::2","dev":"swp35","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=170, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=170, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=50] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=170, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp33","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=170, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=170, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=52] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=170, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=170, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=170, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=54] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=170, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp33","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=170, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip address delete 2001:1::1/64 dev swp33 && ip address delete 2001:2::1/64 dev swp34 && ip address delete 2001:3::1/64 dev swp35 && ip address delete 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=170, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=56] Command: ip address delete 2001:1::1/64 dev swp33 && ip address delete 2001:2::1/64 dev swp34 && ip address delete 2001:3::1/64 dev swp35 && ip address delete 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=170, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=170, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=58] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=170, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=170, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=60] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=170, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=170, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=62] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=170, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=62] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_1.2.1.2/24 to 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_1.2.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_1.3.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49accfb220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.2.1.2 Tx 51205 Rx 51205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.3.1.2 Tx 51205 Rx 51205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.4.1.2 Tx 51205 Rx 51205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.1.1.2 Tx 51205 Rx 51205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.1.1.2 Tx 51205 Rx 51205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.1.1.2 Tx 51205 Rx 51205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.3.1.2 Tx 51205 Rx 51205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.4.1.2 Tx 51205 Rx 51205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.2.1.2 Tx 51205 Rx 51205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.2.1.2 Tx 51205 Rx 51205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.4.1.2 Tx 51205 Rx 51205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.3.1.2 Tx 51205 Rx 51205 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 -> nexthop SIP-DIP Tx 51205 Rx 51205 Loss 0.000 INFO asyncssh:logging.py:92 [conn=170, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=64] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=170, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=66] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=66] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=170, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=68] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=170, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=68] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1::5","dev":"swp33","lladdr":"02:00:00:00:00:02","state":["PERMANENT"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"2001:1::2","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["STALE"]},{"dst":"2001:3::2","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"2001:2::2","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=170, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=69] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=170, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=70] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=170, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=70] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=170, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=71] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=170, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=72] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=170, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=72] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=170, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=170, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=74] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=170, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp33","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=170, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=170, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=76] Command: ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=170, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=76] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv64_nh_reconfig from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py INFO asyncssh:logging.py:92 [conn=170, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=77] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=170, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=78] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=170, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=78] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=170, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=79] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=170, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=80] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=170, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=80] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=81] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=82] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:17:04 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=170, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=83] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=170, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=84] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=170, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=170, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=86] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=170, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=86] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=170, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=170, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=88] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=170, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=88] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_ipv4.py::test_ipv64_nh_routes | 145.73 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8976' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv64_nh_routes">Starting testcase:test_ipv64_nh_routes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=171] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=171] Local address: 172.17.0.4, port 58490 INFO asyncssh:logging.py:92 [conn=171] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=171] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=171] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:17:04 UTC 2087 INFO asyncssh:logging.py:92 [conn=171, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=171, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=171, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=171, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=171, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=171, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:17:04 UTC 2087 INFO asyncssh:logging.py:92 [conn=171, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=171, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=171, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=8] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=171, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=171, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=171, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:17:04 UTC 2087 INFO asyncssh:logging.py:92 [conn=171, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=171, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=171, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=171, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=171, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=171, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.3.1.2/24', 'count': 1, 'ip': '1.3.1.2', 'gw': '1.3.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=171, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=171, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=18] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=171, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2001:2::5 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=171, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=20] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2001:2::5 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=171, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 2001:1234::/64 nexthop via 2001:2::5 INFO asyncssh:logging.py:92 [conn=171, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=22] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 2001:1234::/64 nexthop via 2001:2::5 INFO asyncssh:logging.py:92 [conn=171, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4: 10.36.118.199:2:1 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv6: 10.36.118.199:2:2 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2::2/64 to 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4: addr_info(swp='swp35', tg='10.36.118.199:2:3', swp_ip='1.3.1.1', tg_ip='1.3.1.2', plen=24) -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv6: addr_info(swp='swp36', tg='10.36.118.199:2:4', swp_ip='2001:4::1', tg_ip='2001:4::2', plen=64) -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad582c20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI ipv4: 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 1.1.1.2-1.3.1.2 Tx 50839 Rx 50839 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI ipv4: 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 1.3.1.2-1.1.1.2 Tx 50839 Rx 50839 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI ipv6: 10.36.118.199:2:2 <-> 10.36.118.199:2:4 SIP-DIP 2001:2:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 50839 Rx 50839 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI ipv6: 10.36.118.199:2:2 <-> 10.36.118.199:2:4 SIP-DIP 2001:4:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 50839 Rx 50839 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI ipv4: addr_info(swp='swp35' tg='10.36.118.199:2:3' swp_ip='1.3.1.1' tg_ip='1.3.1.2' plen=24) -> nexthop SIP-DIP Tx 50839 Rx 50839 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI ipv6: addr_info(swp='swp36' tg='10.36.118.199:2:4' swp_ip='2001:4::1' tg_ip='2001:4::2' plen=64) -> nexthop SIP-DIP Tx 50839 Rx 50839 Loss 0.000 INFO asyncssh:logging.py:92 [conn=171, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=24] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=171, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=26] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2::5","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp36","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=171, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=171, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=171, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=171, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=171, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=171, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:2::5","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv64_nh_routes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py INFO asyncssh:logging.py:92 [conn=171, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=31] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=171, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=32] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=171, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=32] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=171, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=33] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=171, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=34] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=171, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=34] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:19:29 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=171, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=171, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=38] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=171, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=171, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=40] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=171, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=171, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=171, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=42] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=171, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=42] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_nei.py::test_ipv6_nei_ageing | 329.90 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9030' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nei_ageing">Starting testcase:test_ipv6_nei_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=172] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=172] Local address: 172.17.0.4, port 41074 INFO asyncssh:logging.py:92 [conn=172] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=172] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=172] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:19:30 UTC 2087 INFO asyncssh:logging.py:92 [conn=172, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=172, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=172, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=172, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=172, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=172, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:19:30 UTC 2087 INFO asyncssh:logging.py:92 [conn=172, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=172, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=172, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp33 && ip address add 2001:3333::1/64 dev swp34 && ip address add 2001:4444::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=172, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=10] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp33 && ip address add 2001:3333::1/64 dev swp34 && ip address add 2001:4444::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=172, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=172, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=172, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=12] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=172, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=172, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=172, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=14] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=172, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=172, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=15] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=172, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=16] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=172, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=16] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.swp33.gc_stale_time = 60 net.ipv6.neigh.swp34.gc_stale_time = 60 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=172, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=17] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_stale_time=30&& sysctl net.ipv6.neigh.swp33.gc_stale_time=30&& sysctl net.ipv6.neigh.swp34.gc_stale_time=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=172, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=18] Command: sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_stale_time=30&& sysctl net.ipv6.neigh.swp33.gc_stale_time=30&& sysctl net.ipv6.neigh.swp34.gc_stale_time=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=172, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=18] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_stale_time = 30 net.ipv6.neigh.swp33.gc_stale_time = 30 net.ipv6.neigh.swp34.gc_stale_time = 30 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:2_2001:3333::2/64 INFO asyncssh:logging.py:92 [conn=172, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=172, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=21] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=172, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=172, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=172, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=22] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=172, chan=24] Requesting new SSH session DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=172, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=172, chan=23] Command: echo onl | sudo -S ping -c 1 2001:1111::2 DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=172, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=24] Command: echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=172, chan=25] Command: echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=172, chan=26] Command: echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=172, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=172, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=23] Received channel close DEBUG infra1:Logger.py:156 PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.238 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.238/0.238/0.238/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:2222::2 on infra1 with rc 0 and out PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.238 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.238/0.238/0.238/0.000 ms INFO asyncssh:logging.py:92 [conn=172, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=172, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=26] Received channel close DEBUG infra1:Logger.py:156 PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.160 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.160/0.160/0.160/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:1111::2 on infra1 with rc 0 and out PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.160 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.160/0.160/0.160/0.000 ms INFO asyncssh:logging.py:92 [conn=172, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=172, chan=26] Channel closed DEBUG infra1:Logger.py:156 PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.229 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.229/0.229/0.229/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:3333::2 on infra1 with rc 0 and out PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.229 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.229/0.229/0.229/0.000 ms DEBUG infra1:Logger.py:156 PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.159 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.159/0.159/0.159/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:4444::2 on infra1 with rc 0 and out PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.159 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.159/0.159/0.159/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=172, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=28] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=172, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=30] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=32] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=34] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=36] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=38] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=40] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=42] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["DELAY"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 30.0s INFO DENT:Logger.py:84 [DENT infrastructure 1] Wait for a total of gc_stale_time_s * 3 = 90s to make sure that neighbors did not age INFO asyncssh:logging.py:92 [conn=172, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=44] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=172, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=46] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=47] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_thresh1&& sysctl net.ipv6.neigh.default.gc_thresh2&& sysctl net.ipv6.neigh.default.gc_thresh3&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time INFO asyncssh:logging.py:92 [conn=172, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=48] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_thresh1&& sysctl net.ipv6.neigh.default.gc_thresh2&& sysctl net.ipv6.neigh.default.gc_thresh3&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time INFO asyncssh:logging.py:92 [conn=172, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=48] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_stale_time = 30 net.ipv6.neigh.swp33.gc_stale_time = 30 net.ipv6.neigh.swp34.gc_stale_time = 30 INFO asyncssh:logging.py:92 [conn=172, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=49] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_thresh1=1&& sysctl net.ipv6.neigh.default.gc_thresh2=20&& sysctl net.ipv6.neigh.default.gc_thresh3=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_stale_time=90&& sysctl net.ipv6.neigh.swp33.gc_stale_time=90&& sysctl net.ipv6.neigh.swp34.gc_stale_time=90 INFO asyncssh:logging.py:92 [conn=172, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=50] Command: sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_thresh1=1&& sysctl net.ipv6.neigh.default.gc_thresh2=20&& sysctl net.ipv6.neigh.default.gc_thresh3=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_stale_time=90&& sysctl net.ipv6.neigh.swp33.gc_stale_time=90&& sysctl net.ipv6.neigh.swp34.gc_stale_time=90 INFO asyncssh:logging.py:92 [conn=172, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=50] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_thresh1 = 1 net.ipv6.neigh.default.gc_thresh2 = 20 net.ipv6.neigh.default.gc_thresh3 = 30 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_stale_time = 90 net.ipv6.neigh.swp33.gc_stale_time = 90 net.ipv6.neigh.swp34.gc_stale_time = 90 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:2_2001:3333::2/64 INFO asyncssh:logging.py:92 [conn=172, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=172, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=53] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=172, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=172, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=172, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=54] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=172, chan=56] Requesting new SSH session DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=172, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=172, chan=55] Command: echo onl | sudo -S ping -c 1 2001:1111::2 DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=172, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=56] Command: echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=172, chan=57] Command: echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=172, chan=58] Command: echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=172, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=56] Channel closed INFO asyncssh:logging.py:92 [conn=172, chan=57] Received channel close DEBUG infra1:Logger.py:156 PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.285 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.285/0.285/0.285/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:2222::2 on infra1 with rc 0 and out PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.285 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.285/0.285/0.285/0.000 ms INFO asyncssh:logging.py:92 [conn=172, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=172, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=58] Received channel close DEBUG infra1:Logger.py:156 PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.279 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.279/0.279/0.279/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:3333::2 on infra1 with rc 0 and out PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.279 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.279/0.279/0.279/0.000 ms INFO asyncssh:logging.py:92 [conn=172, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=172, chan=58] Channel closed DEBUG infra1:Logger.py:156 PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.321 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.321/0.321/0.321/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:1111::2 on infra1 with rc 0 and out PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.321 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.321/0.321/0.321/0.000 ms DEBUG infra1:Logger.py:156 PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.159 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.159/0.159/0.159/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:4444::2 on infra1 with rc 0 and out PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.159 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.159/0.159/0.159/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=172, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=60] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=60] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=172, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=62] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=62] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=64] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=66] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=66] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 5.0s INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=172, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=68] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=68] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=69] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=70] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=70] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=71] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=72] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=72] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=74] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["DELAY"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["DELAY"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=172, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=76] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=76] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=78] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=78] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=80] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=80] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=81] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=82] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=82] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=83] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=84] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=84] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=86] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=86] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 40.0s INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=172, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=88] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=88] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=90] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=90] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=91] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=92] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=92] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=93] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=94] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=94] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=95] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=96] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=96] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=97] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=98] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=98] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=99] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=100] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=100] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=101] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=102] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=102] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=103] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=104] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=104] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=105] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=106] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=106] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=107] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=108] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=108] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=109] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=110] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=110] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=111] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=112] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=112] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=113] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=114] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=114] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 60.0s -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nei_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=172, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=115] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.gc_stale_time=60&& sysctl net.ipv6.neigh.swp33.gc_stale_time=60&& sysctl net.ipv6.neigh.swp34.gc_stale_time=60&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_thresh1=128&& sysctl net.ipv6.neigh.default.gc_thresh2=512&& sysctl net.ipv6.neigh.default.gc_thresh3=1024 INFO asyncssh:logging.py:92 [conn=172, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=116] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.gc_stale_time=60&& sysctl net.ipv6.neigh.swp33.gc_stale_time=60&& sysctl net.ipv6.neigh.swp34.gc_stale_time=60&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_thresh1=128&& sysctl net.ipv6.neigh.default.gc_thresh2=512&& sysctl net.ipv6.neigh.default.gc_thresh3=1024 INFO asyncssh:logging.py:92 [conn=172, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=116] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.swp33.gc_stale_time = 60 net.ipv6.neigh.swp34.gc_stale_time = 60 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=117] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=118] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=118] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:24:59 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=172, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=119] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=172, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=120] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=172, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=120] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=121] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=172, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=122] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=172, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=122] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=172, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=123] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=172, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=124] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=172, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=124] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_nei.py::test_ipv6_nei_change | 240.12 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9174' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nei_change">Starting testcase:test_ipv6_nei_change from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=173] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=173] Local address: 172.17.0.4, port 35198 INFO asyncssh:logging.py:92 [conn=173] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=173] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=173] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:25:00 UTC 2087 INFO asyncssh:logging.py:92 [conn=173, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=173, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=173, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=173, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=173, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=173, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:25:00 UTC 2087 INFO asyncssh:logging.py:92 [conn=173, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=173, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=8] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=173, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=8] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=173, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=15&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=35000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=173, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=10] Command: sysctl net.ipv6.neigh.default.gc_interval=15&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=35000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=173, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 15 net.ipv6.neigh.default.base_reachable_time_ms = 35000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=173, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=173, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=173, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=173, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=14] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=173, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=173, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=173, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=173, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=173, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=173, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=173, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=173, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=173, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["linkdown","rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["linkdown","rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2222::2/64 to 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad440c70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dummy SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 584 Rx 584 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dummy #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 584 Rx 584 Loss 0.000 INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=173, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=22] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=173, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=24] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 0.0s INFO asyncssh:logging.py:92 [conn=173, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=26] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud permanent dev swp34 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud permanent dev swp33 INFO asyncssh:logging.py:92 [conn=173, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=28] Command: ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud permanent dev swp34 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud permanent dev swp33 INFO asyncssh:logging.py:92 [conn=173, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=30] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=173, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=32] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Waiting for neighbor state to change INFO asyncssh:logging.py:92 [conn=173, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=34] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=173, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=36] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud reachable dev swp34 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud reachable dev swp33 INFO asyncssh:logging.py:92 [conn=173, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=38] Command: ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud reachable dev swp34 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud reachable dev swp33 INFO asyncssh:logging.py:92 [conn=173, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=40] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=173, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=42] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=173, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=44] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=173, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=46] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=48] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=48] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=50] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=52] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=54] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=56] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=58] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=58] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=60] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=60] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=62] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=62] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=64] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=66] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=66] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 50.0s INFO asyncssh:logging.py:92 [conn=173, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 2001:1111::1:d885 lladdr 02:00:00:00:00:87 nud permanent dev swp33 && ip neigh add 2001:2222::2:ca93 lladdr 02:00:00:00:01:b7 nud permanent dev swp34 && ip neigh add 2001:1111::3:bd98 lladdr 02:00:00:00:02:9c nud stale dev swp33 && ip neigh add 2001:2222::4:6c5a lladdr 02:00:00:00:03:3c nud stale dev swp34 INFO asyncssh:logging.py:92 [conn=173, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=68] Command: ip neigh add 2001:1111::1:d885 lladdr 02:00:00:00:00:87 nud permanent dev swp33 && ip neigh add 2001:2222::2:ca93 lladdr 02:00:00:00:01:b7 nud permanent dev swp34 && ip neigh add 2001:1111::3:bd98 lladdr 02:00:00:00:02:9c nud stale dev swp33 && ip neigh add 2001:2222::4:6c5a lladdr 02:00:00:00:03:3c nud stale dev swp34 INFO asyncssh:logging.py:92 [conn=173, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=69] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=70] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=70] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=71] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=72] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=72] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::3:bd98","dev":"swp33","lladdr":"02:00:00:00:02:9c","offload":null,"state":["STALE"]},{"dst":"2001:2222::2:ca93","dev":"swp34","lladdr":"02:00:00:00:01:b7","offload":null,"state":["PERMANENT"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::4:6c5a","dev":"swp34","lladdr":"02:00:00:00:03:3c","offload":null,"state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:1111::1:d885","dev":"swp33","lladdr":"02:00:00:00:00:87","offload":null,"state":["PERMANENT"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 && ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 INFO asyncssh:logging.py:92 [conn=173, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=74] Command: ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 && ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 INFO asyncssh:logging.py:92 [conn=173, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=74] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=76] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=76] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=78] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=78] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::3:bd98","dev":"swp33","lladdr":"02:00:00:00:02:9c","offload":null,"state":["STALE"]},{"dst":"2001:2222::2:ca93","dev":"swp34","lladdr":"02:00:00:00:01:b7","offload":null,"state":["PERMANENT"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:1111::1:d885","dev":"swp33","state":["FAILED"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:2_2001:2222::2/64 INFO asyncssh:logging.py:92 [conn=173, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 2001:2222::2:ca93 lladdr 02:00:00:00:01:b7 nud permanent dev swp34 && ip neigh delete 2001:1111::3:bd98 lladdr 02:00:00:00:02:9c nud stale dev swp33 INFO asyncssh:logging.py:92 [conn=173, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=80] Command: ip neigh delete 2001:2222::2:ca93 lladdr 02:00:00:00:01:b7 nud permanent dev swp34 && ip neigh delete 2001:1111::3:bd98 lladdr 02:00:00:00:02:9c nud stale dev swp33 INFO asyncssh:logging.py:92 [conn=173, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=80] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=173, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=81] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=82] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=82] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=83] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=84] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=84] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::3:bd98","dev":"swp33","state":["FAILED"]},{"dst":"2001:2222::2:ca93","dev":"swp34","state":["FAILED"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:1111::1:d885","dev":"swp33","state":["FAILED"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=86] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=86] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=88] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=88] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::3:bd98","dev":"swp33","state":["FAILED"]},{"dst":"2001:2222::2:ca93","dev":"swp34","state":["FAILED"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"2001:1111::1:d885","dev":"swp33","state":["FAILED"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["DELAY"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 10.0s -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nei_change from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=173, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=89] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=173, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=90] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=173, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=90] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=91] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=92] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:28:59 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=173, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=93] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=173, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=94] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=173, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=94] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=95] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=173, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=96] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=173, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=96] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=173, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=97] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=173, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=98] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=173, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=98] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_route_default_offload | 140.63 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9283' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_default_offload">Starting testcase:test_ipv6_route_default_offload from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=174] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=174] Local address: 172.17.0.4, port 60464 INFO asyncssh:logging.py:92 [conn=174] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=174] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=174] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:29:00 UTC 2087 INFO asyncssh:logging.py:92 [conn=174, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=174, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=2] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=174, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=174, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=174, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=4] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=174, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=4] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=174, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=174, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=6] Command: ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=174, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:29:00 UTC 2087 INFO asyncssh:logging.py:92 [conn=174, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=174, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=10] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=174, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=174, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=174, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=12] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=174, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:29:00 UTC 2087 INFO asyncssh:logging.py:92 [conn=174, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=174, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=16] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=174, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=174, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=174, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=174, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=174, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=20] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=174, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 2001:5555::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=174, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip route add default metric 200 via 2001:2222::2 dev swp34 && ip route add default metric 300 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=174, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=22] Command: ip route add default metric 200 via 2001:2222::2 dev swp34 && ip route add default metric 300 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=174, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=174, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=24] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=174, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=174, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=174, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=26] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=174, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"default","gateway":"2001:2222::2","dev":"swp34","metric":200,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp35","metric":300,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad093100>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 2001:5555::5 SIP-DIP N/A Tx 57650 Rx 57650 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 2001:5555::5 SIP-DIP N/A Tx 57649 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=174, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip route add default metric 100 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=174, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=28] Command: ip route add default metric 100 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=174, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=174, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=30] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=174, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=174, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=174, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=32] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=174, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp35","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"default","gateway":"2001:2222::2","dev":"swp34","metric":200,"flags":["offload"],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp35","metric":300,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad090cd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 2001:5555::5 SIP-DIP N/A Tx 83811 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 2001:5555::5 SIP-DIP N/A Tx 83810 Rx 83810 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_default_offload from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=174, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=33] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=174, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=34] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=174, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=34] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:31:20 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=174, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=174, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=38] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=174, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=174, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=40] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=174, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=174, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=174, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=42] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=174, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=174, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=44] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=174, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=174, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=174, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=46] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=174, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=174, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=174, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=48] Command: ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=174, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=48] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_route_lpm | 173.65 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9344' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_lpm">Starting testcase:test_ipv6_route_lpm from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=175] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=175] Local address: 172.17.0.4, port 50092 INFO asyncssh:logging.py:92 [conn=175] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=175] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=175] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:31:20 UTC 2087 INFO asyncssh:logging.py:92 [conn=175, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=175, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=175, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=175, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=175, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=175, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:31:21 UTC 2087 INFO asyncssh:logging.py:92 [conn=175, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=175, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=175, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=175, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=175, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=175, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=175, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=175, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 2002:1::/64 via 2001:2222::2 && ip route add 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=175, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=14] Command: ip route add 2002:1::/64 via 2001:2222::2 && ip route add 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=175, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad092680>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 53472 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 53472 Rx 53472 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP N/A Tx 53472 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=175, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=175, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=175, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=175, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=175, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=175, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::2","gateway":"2001:3333::2","dev":"swp35","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=175, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route delete 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=175, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=20] Command: ip route delete 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=175, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad4417b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 89916 Rx 89916 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 89916 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP N/A Tx 89916 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=175, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=175, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=175, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=175, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=175, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=175, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=175, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip route add 2002:1::/80 via 2001:2222::2 && ip route add 2002:1::/100 via 2001:3333::2 && ip route add 2002:1::/120 via 2001:4444::2 INFO asyncssh:logging.py:92 [conn=175, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=26] Command: ip route add 2002:1::/80 via 2001:2222::2 && ip route add 2002:1::/100 via 2001:3333::2 && ip route add 2002:1::/120 via 2001:4444::2 INFO asyncssh:logging.py:92 [conn=175, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad4432b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 82515 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 82515 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP N/A Tx 82514 Rx 82514 Loss 0.000 INFO asyncssh:logging.py:92 [conn=175, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=175, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=175, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=175, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=175, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=175, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::/120","gateway":"2001:4444::2","dev":"swp36","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/100","gateway":"2001:3333::2","dev":"swp35","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/80","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_lpm from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=175, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=31] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=175, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=175, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=32] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:34:14 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=175, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=175, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=175, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=175, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=175, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=175, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=175, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=175, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_nh_state | 172.20 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9394' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nh_state">Starting testcase:test_ipv6_nh_state from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=176] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=176] Local address: 172.17.0.4, port 48736 INFO asyncssh:logging.py:92 [conn=176] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=176] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=176] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:34:14 UTC 2087 INFO asyncssh:logging.py:92 [conn=176, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=176, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=176, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=176, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=176, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=176, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:34:14 UTC 2087 INFO asyncssh:logging.py:92 [conn=176, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=176, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=176, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=176, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=176, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=176, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=176, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=176, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:2::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:2::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:3::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:3::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:1::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:1::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=176, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 2001:1::/128 via 2001:2222::2 && ip route add 2001:1::/126 via 2001:2222::2 && ip route add 2001:2::/128 via 2001:2222::2 && ip route add 2001:2::/126 via 2001:2222::2 && ip route add 2001:2::/64 via 2001:3333::2 && ip route add 2001:3::/64 metric 10 via 2001:2222::2 && ip route add 2001:3::/64 metric 100 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=176, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=14] Command: ip route add 2001:1::/128 via 2001:2222::2 && ip route add 2001:1::/126 via 2001:2222::2 && ip route add 2001:2::/128 via 2001:2222::2 && ip route add 2001:2::/126 via 2001:2222::2 && ip route add 2001:2::/64 via 2001:3333::2 && ip route add 2001:3::/64 metric 10 via 2001:2222::2 && ip route add 2001:3::/64 metric 100 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=176, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=176, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=16] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=176, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=176, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=176, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=176, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=176, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=176, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2::/64","gateway":"2001:3333::2","dev":"swp35","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:3::/64","gateway":"2001:3333::2","dev":"swp35","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad409480>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:2::8 SIP-DIP N/A Tx 115104 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:2::8 SIP-DIP N/A Tx 115104 Rx 115104 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:2::5 SIP-DIP N/A Tx 115104 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:2::5 SIP-DIP N/A Tx 115104 Rx 115104 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:3::8 SIP-DIP N/A Tx 115104 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:3::8 SIP-DIP N/A Tx 115104 Rx 115104 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:3::5 SIP-DIP N/A Tx 115104 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:3::5 SIP-DIP N/A Tx 115104 Rx 115104 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:1::8 SIP-DIP N/A Tx 115104 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:1::8 SIP-DIP N/A Tx 115104 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:1::5 SIP-DIP N/A Tx 115104 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:1::5 SIP-DIP N/A Tx 115104 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nh_state from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=176, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=21] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=176, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=22] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=176, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=22] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:37:06 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=176, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=176, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=176, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=176, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=176, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=176, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=176, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=176, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_route_metrics | 170.38 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9434' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_metrics">Starting testcase:test_ipv6_route_metrics from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=177] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=177] Local address: 172.17.0.4, port 60568 INFO asyncssh:logging.py:92 [conn=177] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=177] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=177] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:37:06 UTC 2087 INFO asyncssh:logging.py:92 [conn=177, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=177, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=177, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=177, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=177, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=177, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:37:06 UTC 2087 INFO asyncssh:logging.py:92 [conn=177, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=177, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=177, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=177, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=177, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=177, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=177, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=177, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=177, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 2001:4444::/64 metric 100 via 2001:2222::2 && ip route add 2001:4444::/64 metric 101 via 2001:2222::2 && ip route add 2001:4444::/64 metric 102 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=177, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=14] Command: ip route add 2001:4444::/64 metric 100 via 2001:2222::2 && ip route add 2001:4444::/64 metric 101 via 2001:2222::2 && ip route add 2001:4444::/64 metric 102 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=177, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49accfbee0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 135029 Rx 135029 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 270058 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=177, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=177, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=177, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=177, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=177, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=177, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":101,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=177, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route delete 2001:4444::/64 metric 100 dev swp34 INFO asyncssh:logging.py:92 [conn=177, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=20] Command: ip route delete 2001:4444::/64 metric 100 dev swp34 INFO asyncssh:logging.py:92 [conn=177, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49accfb1c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 218798 Rx 218798 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 437596 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=177, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=177, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=177, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=177, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=177, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=177, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":101,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=177, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip route add 2001:4444::/64 metric 99 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=177, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=26] Command: ip route add 2001:4444::/64 metric 99 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=177, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad093100>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 219143 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 438286 Rx 438286 Loss 0.000 INFO asyncssh:logging.py:92 [conn=177, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=177, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=177, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=177, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=177, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=177, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":99,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":101,"flags":["offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_metrics from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=177, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=31] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=177, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=177, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=32] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:39:56 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=177, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=177, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=177, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=177, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=177, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"a6:ae:e4:85:d8:de","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=177, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=177, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=177, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=40] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_received[basic] | 145.86 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9527' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[basic]">Starting testcase:test_lldp_received[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=179] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=179] Local address: 172.17.0.4, port 45086 INFO asyncssh:logging.py:92 [conn=179] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=179] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=179] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:42:01 UTC 2087 INFO asyncssh:logging.py:92 [conn=179, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=179, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=179, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=179, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:42:01 UTC 2087 INFO asyncssh:logging.py:92 [conn=179, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=179, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=179, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=179, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=179, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=10] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=179, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=179, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=179, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=179, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "358" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=179, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=179, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=179, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "358" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:44:24 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=179, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=179, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=179, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_received[mandatory] | 145.19 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9556' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[mandatory]">Starting testcase:test_lldp_received[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=180] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=180] Local address: 172.17.0.4, port 50088 INFO asyncssh:logging.py:92 [conn=180] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=180] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=180] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:44:26 UTC 2087 INFO asyncssh:logging.py:92 [conn=180, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=180, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=180, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=180, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=180, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=180, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:44:26 UTC 2087 INFO asyncssh:logging.py:92 [conn=180, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=180, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=180, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=180, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=180, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=10] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=180, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=180, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=180, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=180, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "362" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "1" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=180, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=180, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=14] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=180, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "2", "age": "0 day, 00:00:03", "chassis": { "id": { "type": "mac", "value": "00:19:2f:a7:b2:8d" } }, "port": { "id": { "type": "ifalias", "value": "Uplink to Spine 1" }, "ttl": "120" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:46:49 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=180, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=180, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=180, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=180, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=180, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_received[optional] | 139.44 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9585' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[optional]">Starting testcase:test_lldp_received[optional] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=181] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=181] Local address: 172.17.0.4, port 58182 INFO asyncssh:logging.py:92 [conn=181] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=181] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=181] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:46:52 UTC 2087 INFO asyncssh:logging.py:92 [conn=181, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=181, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=181, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=181, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=181, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=181, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:46:52 UTC 2087 INFO asyncssh:logging.py:92 [conn=181, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=181, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=181, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=181, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=181, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=10] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=181, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_optional INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating custom traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=181, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=181, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=181, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "366" }, "rx": { "rx": "12" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "2" }, "delete_cnt": { "delete_cnt": "2" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=181, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=181, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=14] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=181, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "3", "age": "0 day, 00:00:03", "chassis": { "S2.cisco.com": { "id": { "type": "mac", "value": "00:19:2f:a7:b2:8d" }, "descr": "Cisco IOS Software, C3560 Software (C3560-ADVIPSERVICESK9-M), Version 12.2(44)SE, RELEASE SOFTWARE (fc1)", "mgmt-ip": "10.5.225.52", "mgmt-iface": "100000", "capability": [ { "type": "Bridge", "enabled": true }, { "type": "Router", "enabled": false } ] } }, "port": { "id": { "type": "mac", "value": "00:02:03:00:00:07" }, "descr": "GigabitEthernet8", "ttl": "120" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[optional] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:49:09 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=181, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=181, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=181, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=181, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=181, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_received[ttl] | 162.11 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9614' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[ttl]">Starting testcase:test_lldp_received[ttl] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=182] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=182] Local address: 172.17.0.4, port 42082 INFO asyncssh:logging.py:92 [conn=182] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=182] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=182] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:49:11 UTC 2087 INFO asyncssh:logging.py:92 [conn=182, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=182, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=182, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=182, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=182, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=182, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:49:11 UTC 2087 INFO asyncssh:logging.py:92 [conn=182, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=182, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=182, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=182, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=182, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=10] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=182, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=182, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=182, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=182, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "370" }, "rx": { "rx": "18" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "3" }, "delete_cnt": { "delete_cnt": "3" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=182, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=182, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=14] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=182, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "4", "age": "0 day, 00:00:04", "chassis": { "id": { "type": "mac", "value": "00:00:00:11:11:11" } }, "port": { "id": { "type": "mac", "value": "00:00:00:00:00:07" }, "ttl": "20" } } } } } INFO asyncssh:logging.py:92 [conn=182, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=182, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=16] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=182, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[ttl] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:51:52 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=182, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=182, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=20] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=182, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=182, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=22] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=182, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=22] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_rx[disable] | 147.98 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9645' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_rx[disable]">Starting testcase:test_lldp_rx[disable] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=183] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=183] Local address: 172.17.0.4, port 50770 INFO asyncssh:logging.py:92 [conn=183] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=183] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=183] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:51:53 UTC 2087 INFO asyncssh:logging.py:92 [conn=183, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=183, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=183, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=183, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=183, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=183, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:51:53 UTC 2087 INFO asyncssh:logging.py:92 [conn=183, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=183, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=183, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=183, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status disabled INFO asyncssh:logging.py:92 [conn=183, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=10] Command: lldpcli configure ports swp33 lldp status disabled INFO asyncssh:logging.py:92 [conn=183, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=183, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=183, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=12] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=183, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_rx[disable] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:54:18 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=183, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=183, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=16] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=183, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=183, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=18] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=183, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=18] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_rx[port_down_up] | 238.89 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9672' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_rx[port_down_up]">Starting testcase:test_lldp_rx[port_down_up] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=184] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=184] Local address: 172.17.0.4, port 38270 INFO asyncssh:logging.py:92 [conn=184] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=184] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=184] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:54:21 UTC 2087 INFO asyncssh:logging.py:92 [conn=184, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=184, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=184, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=184, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=184, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=184, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:54:21 UTC 2087 INFO asyncssh:logging.py:92 [conn=184, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=184, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=184, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=184, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=184, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=10] Command: ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=184, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=184, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=12] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=184, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=184, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=184, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=14] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=184, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=184, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=184, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=16] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=184, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=184, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=184, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=18] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=184, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=18] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "5", "age": "0 day, 00:00:08", "chassis": { "id": { "type": "mac", "value": "a2:2c:38:b8:9c:a6" } }, "port": { "id": { "type": "ifname", "value": "Ethernet0/13" }, "ttl": "120" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_rx[port_down_up] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:58:19 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=184, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=184, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=22] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=184, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=184, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=24] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=184, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=24] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_max_neighbours | 145.15 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9705' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_max_neighbours">Starting testcase:test_lldp_max_neighbours from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=185] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=185] Local address: 172.17.0.4, port 55028 INFO asyncssh:logging.py:92 [conn=185] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=185] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=185] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:58:20 UTC 2087 INFO asyncssh:logging.py:92 [conn=185, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=185, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=185, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=185, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=185, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=185, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 19:58:20 UTC 2087 INFO asyncssh:logging.py:92 [conn=185, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=185, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=185, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=185, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=185, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=10] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=185, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=185, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=12] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=185, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=185, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli show neighbors | grep RID | wc -l INFO asyncssh:logging.py:92 [conn=185, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=14] Command: lldpcli show neighbors | grep RID | wc -l INFO asyncssh:logging.py:92 [conn=185, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=14] Channel closed DEBUG infra1:Logger.py:156 32 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_max_neighbours from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:00:44 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=185, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=185, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=185, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=185, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=185, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[basic] | 79.91 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9734' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[basic]">Starting testcase:test_lldp_transmitted[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=186] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=186] Local address: 172.17.0.4, port 51450 INFO asyncssh:logging.py:92 [conn=186] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=186] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=186] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:00:45 UTC 2087 INFO asyncssh:logging.py:92 [conn=186, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=186, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=186, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=186, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=186, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=186, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=186, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:00:45 UTC 2087 INFO asyncssh:logging.py:92 [conn=186, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=186, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=186, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=186, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=186, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=10] Command: lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=186, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=186, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=186, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "384" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=186, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=186, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=186, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=186, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=16] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=186, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "388" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=186, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:02:04 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=186, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=186, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=20] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=186, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=186, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=22] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=186, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=22] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=186, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=186, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=24] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=186, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=24] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[mandatory] | 53.50 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9767' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[mandatory]">Starting testcase:test_lldp_transmitted[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=186, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=187] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=187] Local address: 172.17.0.4, port 52110 INFO asyncssh:logging.py:92 [conn=187] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=187] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=187] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:02:05 UTC 2087 INFO asyncssh:logging.py:92 [conn=187, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=187, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=187, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=187, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=187, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=187, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:02:05 UTC 2087 INFO asyncssh:logging.py:92 [conn=187, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=187, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=187, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=187, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=187, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=10] Command: lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=187, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=187, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=187, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "391" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=187, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=187, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=187, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=16] Command: lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=187, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "age": "0 day, 00:00:00", "chassis": { "dentlab-infra1": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:57" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64", "mgmt-ip": [ "20.20.0.1", "fe80::923c:b3ff:fe8b:ef34" ], "mgmt-iface": [ "1", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:57" }, "descr": "swp33" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=17] Channel closed DEBUG infra1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=187, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=18] Command: uname -n INFO asyncssh:logging.py:92 [conn=187, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=18] Channel closed DEBUG infra1:Logger.py:156 dentlab-infra1 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=187, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=187, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=20] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=187, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=20] Channel closed DEBUG infra1:Logger.py:156 20:02:56.148395 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 90:3c:b3:8b:ef:57 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0xec01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1 with rc 0 and out 20:02:56.148395 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 90:3c:b3:8b:ef:57 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0xec01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:02:57 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=187, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=187, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=24] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=187, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=25] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=187, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=26] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=187, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=26] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=187, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=27] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=187, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=28] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=187, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=28] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[optional] | 49.43 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9804' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[optional]">Starting testcase:test_lldp_transmitted[optional] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=188] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=188] Local address: 172.17.0.4, port 41502 INFO asyncssh:logging.py:92 [conn=188] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=188] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=188] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:02:59 UTC 2087 INFO asyncssh:logging.py:92 [conn=188, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=188, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=188, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=188, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=188, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=188, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:02:59 UTC 2087 INFO asyncssh:logging.py:92 [conn=188, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=188, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=188, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=188, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=188, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=10] Command: lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=188, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=188, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=188, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "397" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=188, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=188, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=188, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=188, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=16] Command: lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=188, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "age": "0 day, 00:00:00", "chassis": { "dentlab-infra1": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:57" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64", "mgmt-ip": [ "20.20.0.1", "fe80::923c:b3ff:fe8b:ef34" ], "mgmt-iface": [ "1", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:57" }, "descr": "swp33" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=188, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=17] Channel closed DEBUG infra1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=188, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=18] Command: uname -n INFO asyncssh:logging.py:92 [conn=188, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=18] Channel closed DEBUG infra1:Logger.py:156 dentlab-infra1 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=188, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=188, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=20] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=188, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=20] Channel closed DEBUG infra1:Logger.py:156 20:03:45.676346 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 90:3c:b3:8b:ef:57 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0xec01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1 with rc 0 and out 20:03:45.676346 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 90:3c:b3:8b:ef:57 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0xec01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[optional] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:03:46 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=188, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=188, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=24] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=188, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=25] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=188, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=26] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=188, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=26] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=188, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=27] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=188, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=28] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=188, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=28] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_tx[disabled] | 55.51 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9841' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[disabled]">Starting testcase:test_lldp_tx[disabled] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=189] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=189] Local address: 172.17.0.4, port 60986 INFO asyncssh:logging.py:92 [conn=189] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=189] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=189] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:03:48 UTC 2087 INFO asyncssh:logging.py:92 [conn=189, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=189, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=189, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=189, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=189, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=189, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:03:48 UTC 2087 INFO asyncssh:logging.py:92 [conn=189, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=189, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=189, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=189, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status disabled && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=189, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=10] Command: lldpcli configure ports swp33 lldp status disabled && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=189, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=189, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=189, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "403" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=189, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=189, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=189, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "403" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[disabled] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:04:42 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=189, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=189, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=189, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=189, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=189, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=189, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=189, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=22] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=189, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_tx[port_down] | 64.06 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9872' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[port_down]">Starting testcase:test_lldp_tx[port_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=190] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=190] Local address: 172.17.0.4, port 50502 INFO asyncssh:logging.py:92 [conn=190] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=190] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=190] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:04:44 UTC 2087 INFO asyncssh:logging.py:92 [conn=190, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=190, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=190, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=190, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=190, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=190, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:04:44 UTC 2087 INFO asyncssh:logging.py:92 [conn=190, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=190, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=190, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=190, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=190, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=10] Command: ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=190, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=190, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=12] Command: lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=190, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=190, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=190, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "406" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=190, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=190, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=16] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=190, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "406" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=190, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=190, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=18] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=190, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=190, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=20] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=190, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "410" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[port_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:05:46 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=190, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=190, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=24] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=190, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=25] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=190, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=26] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=190, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=26] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=190, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=27] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=190, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=28] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=190, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=28] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_tx[interval] | 56.94 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9909' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[interval]">Starting testcase:test_lldp_tx[interval] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=191] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=191] Local address: 172.17.0.4, port 56408 INFO asyncssh:logging.py:92 [conn=191] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=191] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=191] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:05:48 UTC 2087 INFO asyncssh:logging.py:92 [conn=191, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=191, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=191, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=191, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=191, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=191, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=191, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:05:48 UTC 2087 INFO asyncssh:logging.py:92 [conn=191, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=191, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=191, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=191, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=191, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=10] Command: lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=191, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=191, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=191, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "414" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=191, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=191, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=191, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "417" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[interval] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=191, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:06:43 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=191, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=191, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=191, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=191, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=191, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=191, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=191, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=22] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=191, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_tx_hold | 54.92 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9940' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx_hold">Starting testcase:test_lldp_tx_hold from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=191, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=192] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=192] Local address: 172.17.0.4, port 45296 INFO asyncssh:logging.py:92 [conn=192] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=192] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=192] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:06:45 UTC 2087 INFO asyncssh:logging.py:92 [conn=192, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=192, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=192, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=192, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=192, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=192, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:06:45 UTC 2087 INFO asyncssh:logging.py:92 [conn=192, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=192, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=192, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=192, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-hold 500 && lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=192, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=10] Command: lldpcli configure lldp tx-hold 500 && lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=192, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=192, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=192, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=12] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=192, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=12] Channel closed DEBUG infra1:Logger.py:156 20:07:37.138603 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 90:3c:b3:8b:ef:57 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 1000s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0xec01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1 with rc 0 and out 20:07:37.138603 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 90:3c:b3:8b:ef:57 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 1000s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0xec01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx_hold from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:07:38 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=192, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=192, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=16] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=192, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=192, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=18] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=192, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=18] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "500", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=192, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=192, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=20] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=192, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-hold 4 INFO asyncssh:logging.py:92 [conn=192, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=22] Command: lldpcli configure lldp tx-hold 4 INFO asyncssh:logging.py:92 [conn=192, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_tx_rx.py::test_lldp_bridge | 158.72 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9972' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_bridge">Starting testcase:test_lldp_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=193] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=193] Local address: 172.17.0.4, port 60892 INFO asyncssh:logging.py:92 [conn=193] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=193] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=193] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:07:40 UTC 2087 INFO asyncssh:logging.py:92 [conn=193, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=193, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=193, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=193, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=193, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=193, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:07:40 UTC 2087 INFO asyncssh:logging.py:92 [conn=193, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=193, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=8] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=193, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=193, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=193, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=193, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=12] Command: ip link set dev swp33 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=193, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.3/24', 'count': 1, 'ip': '12.0.0.3', 'gw': '12.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.3/24', 'count': 1, 'ip': '13.0.0.3', 'gw': '13.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=193, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=193, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=193, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=193, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=16] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=193, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "427" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=193, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=193, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=193, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=193, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=193, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=20] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=193, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "38", "age": "0 day, 00:00:03", "chassis": { "id": { "type": "mac", "value": "a2:2c:38:b8:9c:a6" } }, "port": { "id": { "type": "ifname", "value": "Ethernet0/13" }, "ttl": "120" } } } } } INFO asyncssh:logging.py:92 [conn=193, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=193, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=22] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=193, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=22] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "477" }, "rx": { "rx": "73" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "38" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=193, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=193, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=24] Command: lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=193, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=24] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "age": "0 day, 00:01:41", "chassis": { "dentlab-infra1": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:57" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64", "mgmt-ip": [ "20.20.0.1", "fe80::923c:b3ff:fe8b:ef34" ], "mgmt-iface": [ "1", "5" ], "capability": [ { "type": "Bridge", "enabled": true }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": false } ] } }, "port": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:57" }, "descr": "swp33" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=193, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=25] Channel closed DEBUG infra1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=193, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=26] Command: uname -n INFO asyncssh:logging.py:92 [conn=193, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=26] Channel closed DEBUG infra1:Logger.py:156 dentlab-infra1 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=193, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=27] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=193, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=28] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=193, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=28] Channel closed DEBUG infra1:Logger.py:156 20:10:15.257928 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 90:3c:b3:8b:ef:57 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Bridge] (0x0004) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0xec01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1 with rc 0 and out 20:10:15.257928 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 90:3c:b3:8b:ef:57 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Bridge] (0x0004) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0xec01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:10:16 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=193, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=31] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=193, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=32] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=193, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=33] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=193, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=34] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=193, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=34] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=193, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=35] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=193, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=36] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=193, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=38] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:10:18 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=193, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=193, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=193, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":77,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=193, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=193, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=42] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=193, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=42] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_tx_rx.py::test_lldp_enable_disable_ports | 232.95 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10025' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_enable_disable_ports">Starting testcase:test_lldp_enable_disable_ports from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=194] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=194] Local address: 172.17.0.4, port 49540 INFO asyncssh:logging.py:92 [conn=194] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=194] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=194] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:10:18 UTC 2087 INFO asyncssh:logging.py:92 [conn=194, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=194, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=194, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=194, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=194, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=194, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=194, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:10:18 UTC 2087 INFO asyncssh:logging.py:92 [conn=194, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=194, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=194, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.3/24', 'count': 1, 'ip': '12.0.0.3', 'gw': '12.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.3/24', 'count': 1, 'ip': '13.0.0.3', 'gw': '13.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=194, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=194, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=10] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=194, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status disabled && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status disabled && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=194, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=12] Command: lldpcli configure ports swp33 lldp status disabled && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status disabled && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=194, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=194, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=194, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=194, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "484" }, "rx": { "rx": "73" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "38" }, "delete_cnt": { "delete_cnt": "38" } } } } } INFO asyncssh:logging.py:92 [conn=194, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=194, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=16] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=194, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=194, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=194, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=18] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=194, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=18] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "484" }, "rx": { "rx": "73" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "38" }, "delete_cnt": { "delete_cnt": "38" } } } } } INFO asyncssh:logging.py:92 [conn=194, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp34 INFO asyncssh:logging.py:92 [conn=194, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=20] Command: lldpcli -f json show statistics ports swp34 INFO asyncssh:logging.py:92 [conn=194, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp34": { "tx": { "tx": "573" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=194, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp34 INFO asyncssh:logging.py:92 [conn=194, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=22] Command: lldpcli -f json show neighbors ports swp34 INFO asyncssh:logging.py:92 [conn=194, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=22] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp34": { "via": "LLDP", "rid": "40", "age": "0 day, 00:00:08", "chassis": { "id": { "type": "mac", "value": "02:be:40:26:95:cd" } }, "port": { "id": { "type": "mac", "value": "02:73:d5:aa:34:c3" }, "ttl": "166" } } } } } INFO asyncssh:logging.py:92 [conn=194, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp34 INFO asyncssh:logging.py:92 [conn=194, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=24] Command: lldpcli -f json show neighbors ports swp34 INFO asyncssh:logging.py:92 [conn=194, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=24] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp34": { "via": "LLDP", "rid": "40", "age": "0 day, 00:00:08", "chassis": { "id": { "type": "mac", "value": "02:be:40:26:95:cd" } }, "port": { "id": { "type": "mac", "value": "02:73:d5:aa:34:c3" }, "ttl": "166" } } } } } INFO asyncssh:logging.py:92 [conn=194, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=25] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp34 INFO asyncssh:logging.py:92 [conn=194, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=26] Command: lldpcli -f json show statistics ports swp34 INFO asyncssh:logging.py:92 [conn=194, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=26] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp34": { "tx": { "tx": "576" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=194, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=27] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show interfaces ports swp34 INFO asyncssh:logging.py:92 [conn=194, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=28] Command: lldpcli -f json show interfaces ports swp34 INFO asyncssh:logging.py:92 [conn=194, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=28] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp34": { "via": "LLDP", "age": "0 day, 00:02:13", "chassis": { "dentlab-infra1": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:57" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64", "mgmt-ip": [ "20.20.0.1", "fe80::923c:b3ff:fe8b:ef34" ], "mgmt-iface": [ "1", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:58" }, "descr": "swp34" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=194, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=29] Channel closed DEBUG infra1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=194, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=30] Command: uname -n INFO asyncssh:logging.py:92 [conn=194, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=30] Channel closed DEBUG infra1:Logger.py:156 dentlab-infra1 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp34 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=194, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=31] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp34 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=194, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=32] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp34 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=194, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=32] Channel closed DEBUG infra1:Logger.py:156 20:13:52.279710 90:3c:b3:8b:ef:58 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 90:3c:b3:8b:ef:57 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:58 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp34 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0xec01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp34, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 2 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp34 ether proto 0x88cc -vnne on infra1 with rc 0 and out 20:13:52.279710 90:3c:b3:8b:ef:58 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 90:3c:b3:8b:ef:57 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:58 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp34 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0xec01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp34, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 2 packets received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=194, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=33] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp35 INFO asyncssh:logging.py:92 [conn=194, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=34] Command: lldpcli -f json show statistics ports swp35 INFO asyncssh:logging.py:92 [conn=194, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=34] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp35": { "tx": { "tx": "480" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=194, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=35] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp35 INFO asyncssh:logging.py:92 [conn=194, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=36] Command: lldpcli -f json show neighbors ports swp35 INFO asyncssh:logging.py:92 [conn=194, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=36] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=194, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=37] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp35 INFO asyncssh:logging.py:92 [conn=194, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=38] Command: lldpcli -f json show statistics ports swp35 INFO asyncssh:logging.py:92 [conn=194, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=38] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp35": { "tx": { "tx": "480" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=194, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=39] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp36 INFO asyncssh:logging.py:92 [conn=194, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=40] Command: lldpcli -f json show statistics ports swp36 INFO asyncssh:logging.py:92 [conn=194, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=40] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp36": { "tx": { "tx": "536" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=194, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=41] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp36 INFO asyncssh:logging.py:92 [conn=194, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=42] Command: lldpcli -f json show neighbors ports swp36 INFO asyncssh:logging.py:92 [conn=194, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=42] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp36": { "via": "LLDP", "rid": "39", "age": "0 day, 00:00:23", "chassis": { "id": { "type": "mac", "value": "02:07:1a:2f:ea:02" } }, "port": { "id": { "type": "mac", "value": "02:4c:b4:62:21:d6" }, "ttl": "179" } } } } } INFO asyncssh:logging.py:92 [conn=194, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=43] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp36 INFO asyncssh:logging.py:92 [conn=194, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=44] Command: lldpcli -f json show neighbors ports swp36 INFO asyncssh:logging.py:92 [conn=194, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=44] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp36": { "via": "LLDP", "rid": "39", "age": "0 day, 00:00:23", "chassis": { "id": { "type": "mac", "value": "02:07:1a:2f:ea:02" } }, "port": { "id": { "type": "mac", "value": "02:4c:b4:62:21:d6" }, "ttl": "179" } } } } } INFO asyncssh:logging.py:92 [conn=194, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=45] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp36 INFO asyncssh:logging.py:92 [conn=194, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=46] Command: lldpcli -f json show statistics ports swp36 INFO asyncssh:logging.py:92 [conn=194, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=46] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp36": { "tx": { "tx": "539" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=194, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=47] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show interfaces ports swp36 INFO asyncssh:logging.py:92 [conn=194, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=48] Command: lldpcli -f json show interfaces ports swp36 INFO asyncssh:logging.py:92 [conn=194, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=48] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp36": { "via": "LLDP", "age": "0 day, 00:02:28", "chassis": { "dentlab-infra1": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:57" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64", "mgmt-ip": [ "20.20.0.1", "fe80::923c:b3ff:fe8b:ef34" ], "mgmt-iface": [ "1", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:5a" }, "descr": "swp36" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=194, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=49] Channel closed DEBUG infra1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=194, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=50] Command: uname -n INFO asyncssh:logging.py:92 [conn=194, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=50] Channel closed DEBUG infra1:Logger.py:156 dentlab-infra1 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp36 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=194, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=51] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp36 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=194, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=52] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp36 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=194, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=52] Channel closed DEBUG infra1:Logger.py:156 20:14:08.293581 90:3c:b3:8b:ef:5a > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 90:3c:b3:8b:ef:57 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:5a Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp36 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0xec01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp36, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp36 ether proto 0x88cc -vnne on infra1 with rc 0 and out 20:14:08.293581 90:3c:b3:8b:ef:5a > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 90:3c:b3:8b:ef:57 Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:5a Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra1 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp36 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0xec01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp36, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_enable_disable_ports from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=194, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=53] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=54] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:14:09 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=194, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=55] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=194, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=56] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=194, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=57] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=194, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=58] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=194, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=58] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=194, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=59] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=194, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=60] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=194, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=60] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-ipv4] | 139.06 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-ipv4]">Starting testcase:test_policer_basic_functionality[port-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10149' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=196] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=196] Local address: 172.17.0.4, port 44450 INFO asyncssh:logging.py:92 [conn=196] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=196] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=196] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:15:41 UTC 2087 INFO asyncssh:logging.py:92 [conn=196, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=196, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=196, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=196, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=196, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=196, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=196, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 20.216.184.63 dst_ip 41.124.58.86 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=196, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=10] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 20.216.184.63 dst_ip 41.124.58.86 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=196, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=196, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=196, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","dst_ip":"41.124.58.86","src_ip":"20.216.184.63"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_dst_ip_41.124.58.86_src_ip_20.216.184.63 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acd7c2e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2743403 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2064 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=196, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:17:54 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=196, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:17:59 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=196, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=196, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=196, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":79,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=196, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:18:00 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=196, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=196, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=196, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=196, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=196, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=196, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=196, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=196, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=196, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=196, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=196, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=196, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=196, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=196, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=196, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=196, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=196, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=196, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-l2] | 148.96 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-l2]">Starting testcase:test_policer_basic_functionality[port-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10216' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=196, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=197] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=197] Local address: 172.17.0.4, port 38164 INFO asyncssh:logging.py:92 [conn=197] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=197] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=197] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:18:00 UTC 2087 INFO asyncssh:logging.py:92 [conn=197, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=197, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=197, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=197, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=197, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=197, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=197, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:72:d1:38:6c:df dst_mac 02:15:64:9f:91:1e vlan_id 1932 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:72:d1:38:6c:df dst_mac 02:15:64:9f:91:1e vlan_id 1932 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=197, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=197, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1932,"dst_mac":"02:15:64:9f:91:1e","src_mac":"02:72:d1:38:6c:df"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1932_dst_mac_02:15:64:9f:91:1e_src_mac_02:72:d1:38:6c:df INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc5dcc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2877191 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2107 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=197, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:20:23 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=197, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:20:28 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=197, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=197, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=197, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":80,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=197, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:20:29 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=197, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=197, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=197, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=197, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=197, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=197, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=197, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=197, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=197, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=197, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=197, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=197, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=197, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=197, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=197, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=197, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=197, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=197, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-udp] | 144.88 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-udp]">Starting testcase:test_policer_basic_functionality[port-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10283' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=197, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=198] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=198] Local address: 172.17.0.4, port 35094 INFO asyncssh:logging.py:92 [conn=198] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=198] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=198] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:20:29 UTC 2087 INFO asyncssh:logging.py:92 [conn=198, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=198, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=198, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=198, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=198, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=198, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=198, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_ip 95.214.178.139 dst_ip 117.25.206.175 ip_proto udp src_port 2352 dst_port 25279 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=198, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=10] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_ip 95.214.178.139 dst_ip 117.25.206.175 ip_proto udp src_port 2352 dst_port 25279 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=198, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=198, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=198, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"117.25.206.175","src_ip":"95.214.178.139","dst_port":25279,"src_port":2352},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_ip_proto_udp_dst_ip_117.25.206.175_src_ip_95.214.178.139_dst_port_25279_src_port_2352 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acd7f9a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 3132903 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2190 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=198, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:22:49 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=198, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:22:53 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=198, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=198, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=198, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":81,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=198, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=198, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=198, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:22:54 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=198, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=198, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=198, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=198, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=198, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=198, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=198, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=198, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=198, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=198, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=198, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=198, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=198, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=198, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=198, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=198, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=198, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=198, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-tcp] | 144.61 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-tcp]">Starting testcase:test_policer_basic_functionality[port-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10350' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=198, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=199] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=199] Local address: 172.17.0.4, port 50916 INFO asyncssh:logging.py:92 [conn=199] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=199] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=199] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:22:54 UTC 2087 INFO asyncssh:logging.py:92 [conn=199, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=199, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=199, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=199, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=199, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=199, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=199, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=199, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=199, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_ip 61.195.98.1 dst_ip 45.248.235.161 ip_proto tcp src_port 12040 dst_port 65149 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=199, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=10] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_ip 61.195.98.1 dst_ip 45.248.235.161 ip_proto tcp src_port 12040 dst_port 65149 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=199, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=199, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=199, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"tcp","dst_ip":"45.248.235.161","src_ip":"61.195.98.1","dst_port":65149,"src_port":12040},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_ip_proto_tcp_dst_ip_45.248.235.161_src_ip_61.195.98.1_dst_port_65149_src_port_12040 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc5e860>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 3224619 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2219 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=199, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:25:13 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=199, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:25:18 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=199, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=199, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=199, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":82,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=199, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=199, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=199, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:25:18 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=199, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=199, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=199, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=199, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=199, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=199, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=199, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=199, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=199, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=199, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=199, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=199, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=199, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=199, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=199, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=199, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=199, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=199, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-ipv4] | 142.40 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-ipv4]">Starting testcase:test_policer_basic_functionality[shared_block-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10417' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=199, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=200] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=200] Local address: 172.17.0.4, port 44740 INFO asyncssh:logging.py:92 [conn=200] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=200] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=200] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:25:19 UTC 2087 INFO asyncssh:logging.py:92 [conn=200, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=200, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=200, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=200, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=200, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 264 ingress INFO asyncssh:logging.py:92 [conn=200, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=8] Command: tc qdisc add dev swp34 ingress_block 264 ingress INFO asyncssh:logging.py:92 [conn=200, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 264 ingress protocol ipv4 flower skip_sw src_ip 111.134.22.231 dst_ip 65.247.3.10 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=200, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=10] Command: tc filter add block 264 ingress protocol ipv4 flower skip_sw src_ip 111.134.22.231 dst_ip 65.247.3.10 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=200, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 264 ingress INFO asyncssh:logging.py:92 [conn=200, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=12] Command: tc -j filter show block 264 ingress INFO asyncssh:logging.py:92 [conn=200, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","dst_ip":"65.247.3.10","src_ip":"111.134.22.231"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_eth_type_ipv4_dst_ip_65.247.3.10_src_ip_111.134.22.231 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc51690>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 2068 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2757042 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=200, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:27:36 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=200, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:27:40 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=200, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=200, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=200, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":83,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=200, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=200, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=200, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:27:41 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=200, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=200, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=200, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":264,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=200, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=200, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=200, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=200, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=200, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=200, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=200, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=200, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=48] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=200, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=200, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=50] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=200, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=200, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=200, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=200, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=200, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-l2] | 145.77 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-l2]">Starting testcase:test_policer_basic_functionality[shared_block-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10484' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=200, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=201] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=201] Local address: 172.17.0.4, port 53130 INFO asyncssh:logging.py:92 [conn=201] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=201] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=201] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:27:41 UTC 2087 INFO asyncssh:logging.py:92 [conn=201, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=201, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=201, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=201, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=201, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=201, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=201, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 2687 ingress INFO asyncssh:logging.py:92 [conn=201, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=8] Command: tc qdisc add dev swp34 ingress_block 2687 ingress INFO asyncssh:logging.py:92 [conn=201, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 2687 ingress protocol 0x8100 flower skip_sw src_mac 02:d0:cb:2e:f3:74 dst_mac 02:4a:3d:83:36:9e vlan_id 1686 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=10] Command: tc filter add block 2687 ingress protocol 0x8100 flower skip_sw src_mac 02:d0:cb:2e:f3:74 dst_mac 02:4a:3d:83:36:9e vlan_id 1686 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 2687 ingress INFO asyncssh:logging.py:92 [conn=201, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=12] Command: tc -j filter show block 2687 ingress INFO asyncssh:logging.py:92 [conn=201, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1686,"dst_mac":"02:4a:3d:83:36:9e","src_mac":"02:d0:cb:2e:f3:74"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_vlan_id_1686_dst_mac_02:4a:3d:83:36:9e_src_mac_02:d0:cb:2e:f3:74 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc50d00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 2180 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 3103965 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=201, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:30:01 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=201, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:30:06 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=201, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=201, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=201, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":84,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=201, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=201, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=201, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:30:06 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=201, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=201, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=201, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":2687,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=201, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=201, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=201, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=201, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=201, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=201, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=201, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=201, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=48] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=201, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=201, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=50] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=201, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=201, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=201, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=201, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=201, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-udp] | 148.51 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-udp]">Starting testcase:test_policer_basic_functionality[shared_block-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10551' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=201, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=202] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=202] Local address: 172.17.0.4, port 39554 INFO asyncssh:logging.py:92 [conn=202] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=202] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=202] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:30:07 UTC 2087 INFO asyncssh:logging.py:92 [conn=202, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=202, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=202, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=202, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=202, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 2553 ingress INFO asyncssh:logging.py:92 [conn=202, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=8] Command: tc qdisc add dev swp34 ingress_block 2553 ingress INFO asyncssh:logging.py:92 [conn=202, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 2553 ingress protocol ipv4 flower skip_sw src_ip 63.101.212.45 dst_ip 121.198.31.220 ip_proto udp src_port 59282 dst_port 24736 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=10] Command: tc filter add block 2553 ingress protocol ipv4 flower skip_sw src_ip 63.101.212.45 dst_ip 121.198.31.220 ip_proto udp src_port 59282 dst_port 24736 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 2553 ingress INFO asyncssh:logging.py:92 [conn=202, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=12] Command: tc -j filter show block 2553 ingress INFO asyncssh:logging.py:92 [conn=202, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"121.198.31.220","src_ip":"63.101.212.45","dst_port":24736,"src_port":59282},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_eth_type_ipv4_ip_proto_udp_dst_ip_121.198.31.220_src_ip_63.101.212.45_dst_port_24736_src_port_59282 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc251e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 2208 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 3188241 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=202, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:32:29 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=202, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:32:35 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=202, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=202, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=202, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":85,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=202, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=202, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=202, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:32:35 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=202, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=202, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=202, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":2553,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=202, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=202, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=202, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=202, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=202, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=202, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=202, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=202, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=48] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=202, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=202, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=50] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=202, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=202, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=202, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=202, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=202, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-tcp] | 148.89 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-tcp]">Starting testcase:test_policer_basic_functionality[shared_block-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10618' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=202, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=203] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=203] Local address: 172.17.0.4, port 39782 INFO asyncssh:logging.py:92 [conn=203] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=203] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=203] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:32:36 UTC 2087 INFO asyncssh:logging.py:92 [conn=203, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=203, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=203, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=203, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=203, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=203, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=203, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 81 ingress INFO asyncssh:logging.py:92 [conn=203, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=8] Command: tc qdisc add dev swp34 ingress_block 81 ingress INFO asyncssh:logging.py:92 [conn=203, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 81 ingress protocol 0x0800 flower skip_sw src_ip 13.85.151.185 dst_ip 42.132.231.204 ip_proto tcp src_port 35176 dst_port 10829 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=10] Command: tc filter add block 81 ingress protocol 0x0800 flower skip_sw src_ip 13.85.151.185 dst_ip 42.132.231.204 ip_proto tcp src_port 35176 dst_port 10829 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 81 ingress INFO asyncssh:logging.py:92 [conn=203, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=12] Command: tc -j filter show block 81 ingress INFO asyncssh:logging.py:92 [conn=203, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"tcp","dst_ip":"42.132.231.204","src_ip":"13.85.151.185","dst_port":10829,"src_port":35176},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_eth_type_ipv4_ip_proto_tcp_dst_ip_42.132.231.204_src_ip_13.85.151.185_dst_port_10829_src_port_35176 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acd7cc70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 2132 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2954622 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=203, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:34:58 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=203, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:35:03 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=203, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=203, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=203, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":86,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=203, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=203, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=203, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:35:04 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=203, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=203, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=203, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":81,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=203, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=203, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=203, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=203, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=203, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=203, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=203, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=203, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=48] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=203, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=203, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=50] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=203, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=203, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=203, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=203, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=203, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_dynamic_traps.py::test_policer_interact_with_acl_drop | 249.91 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_interact_with_acl_drop">Starting testcase:test_policer_interact_with_acl_drop from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10685' coro=<test_policer_interact_with_acl_drop() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=203, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=204] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=204] Local address: 172.17.0.4, port 39726 INFO asyncssh:logging.py:92 [conn=204] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=204] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=204] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:35:04 UTC 2087 INFO asyncssh:logging.py:92 [conn=204, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=204, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=204, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=204, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=204, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=204, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=204, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action drop INFO asyncssh:logging.py:92 [conn=204, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=12] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action drop INFO asyncssh:logging.py:92 [conn=204, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=204, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=204, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc5dd20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 10720801 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 3871 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3871 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3871 INFO asyncssh:logging.py:92 [conn=204, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=16] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=18] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc518a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 13320257 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 5545 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 5545 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 5545 INFO asyncssh:logging.py:92 [conn=204, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=20] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=22] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acd7eb60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 28793086 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 6221 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 6221 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 6221 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_interact_with_acl_drop from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=204, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:39:08 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=204, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:39:13 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=204, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=204, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=204, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=204, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=204, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=204, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=204, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=204, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=204, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=50] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=204, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=204, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=52] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=204, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=204, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=204, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=204, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=56] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=204, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=204, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=58] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=204, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=204, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=60] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=204, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=62] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:39:14 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=204, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=204, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=64] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=204, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":87,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=204, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=204, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=66] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=204, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=66] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_interaction_with_span.py::test_policer_interaction_span | 338.60 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_interaction_span">Starting testcase:test_policer_interaction_span from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10764' coro=<test_policer_interaction_span() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=204, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=205] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=205] Local address: 172.17.0.4, port 36722 INFO asyncssh:logging.py:92 [conn=205] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=205] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=205] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:39:14 UTC 2087 INFO asyncssh:logging.py:92 [conn=205, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=205, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=205, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=205, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=205, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=205, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=205, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 200 matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=205, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=10] Command: tc filter add dev swp33 ingress pref 200 matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=205, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 300 flower src_mac 02:05:0e:11:9c:a8 dst_mac 02:dd:57:ee:81:88 src_ip 106.38.228.165 dst_ip 123.179.185.167 action police rate 50000000 burst 50100000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=205, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=12] Command: tc filter add dev swp33 ingress protocol ip pref 300 flower src_mac 02:05:0e:11:9c:a8 dst_mac 02:dd:57:ee:81:88 src_ip 106.38.228.165 dst_ip 123.179.185.167 action police rate 50000000 burst 50100000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=205, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=205, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=205, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":200,"kind":"matchall","chain":0},{"protocol":"all","pref":200,"kind":"matchall","chain":0,"options":{"handle":1,"skip_sw":true,"in_hw":true,"actions":[{"order":1,"kind":"mirred","mirred_action":"mirror","direction":"egress","to_dev":"swp34","control_action":{"type":"pipe"},"index":1,"ref":1,"bind":1}]}},{"protocol":"ip","pref":300,"kind":"flower","chain":0},{"protocol":"ip","pref":300,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:dd:57:ee:81:88","src_mac":"02:05:0e:11:9c:a8","eth_type":"ipv4","dst_ip":"123.179.185.167","src_ip":"106.38.228.165"},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc25c30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2279195 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2854689 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 575547 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 575537 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the mirred port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:3 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc25960>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2443815 Rx 2443816 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2443762 Rx 3046757 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3046687 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3046621 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:3 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc250f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_swp33 SIP-DIP N/A Tx 1756367 Rx 2076310 Loss INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_swp33 SIP-DIP N/A Tx 1756366 Rx 430389 Loss 75.495 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_swp33 SIP-DIP N/A Tx 1756366 Rx 323559 Loss 81.578 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI stream_swp34 SIP-DIP N/A Tx 1756367 Rx 1756366 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI stream_swp34 SIP-DIP N/A Tx 1756366 Rx 1756366 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_swp34 SIP-DIP N/A Tx 1756366 Rx 1756366 Loss 0.000 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:1 and stream stream_swp34 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:3 and stream stream_swp34 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:4 and stream stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_interaction_span from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=205, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:44:46 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=205, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:44:52 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=205, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=205, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=20] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=205, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=205, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=205, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=22] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=205, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=22] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=205, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=24] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=205, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=205, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=42] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=205, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=205, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=44] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=205, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=205, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=46] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=205, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=205, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=48] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=205, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=205, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=50] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=205, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=205, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=52] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=205, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=53] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=54] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:44:52 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=205, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=205, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=56] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=205, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":88,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=205, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=205, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=58] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=205, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=58] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_negative_add_rule_to_bond.py::test_policer_bond_rule_not_offloaded | 1.54 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_bond_rule_not_offloaded">Starting testcase:test_policer_bond_rule_not_offloaded from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10835' coro=<test_policer_bond_rule_not_offloaded() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py:32> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=205, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=206] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=206] Local address: 172.17.0.4, port 37220 INFO asyncssh:logging.py:92 [conn=206] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=206] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=206] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:44:53 UTC 2087 INFO asyncssh:logging.py:92 [conn=206, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name bond33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=206, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=2] Command: ip link add name bond33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=206, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond33 up INFO asyncssh:logging.py:92 [conn=206, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=4] Command: ip link set dev bond33 up INFO asyncssh:logging.py:92 [conn=206, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=206, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=6] Command: ip link set dev swp33 down && ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=206, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bond33 && ip link set dev swp34 master bond33 INFO asyncssh:logging.py:92 [conn=206, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=8] Command: ip link set dev swp33 master bond33 && ip link set dev swp34 master bond33 INFO asyncssh:logging.py:92 [conn=206, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=206, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=206, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev bond33 ingress INFO asyncssh:logging.py:92 [conn=206, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=12] Command: tc qdisc add dev bond33 ingress INFO asyncssh:logging.py:92 [conn=206, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev bond33 ingress protocol 0x9100 flower action drop INFO asyncssh:logging.py:92 [conn=206, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=14] Command: tc filter add dev bond33 ingress protocol 0x9100 flower action drop INFO asyncssh:logging.py:92 [conn=206, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev bond33 ingress INFO asyncssh:logging.py:92 [conn=206, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=16] Command: tc -j filter show dev bond33 ingress INFO asyncssh:logging.py:92 [conn=206, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"9100"},"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1}]}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_bond_rule_not_offloaded from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=206, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:44:53 UTC 2087 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=206, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=206, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=20] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=206, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond33","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond33","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:58","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":89,"ifname":"bond33","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=206, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond33 INFO asyncssh:logging.py:92 [conn=206, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=22] Command: ip link delete bond33 INFO asyncssh:logging.py:92 [conn=206, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=206, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:44:54 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=206, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:44:54 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=206, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=206, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=206, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=206, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=206, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=206, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=206, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=206, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=206, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=50] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=206, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=206, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=206, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=206, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=206, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=206, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=206, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_rate_per_rule.py::test_policer_rate_per_rule | 240.57 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_per_rule">Starting testcase:test_policer_rate_per_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10904' coro=<test_policer_rate_per_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=206, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=207] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=207] Local address: 172.17.0.4, port 37226 INFO asyncssh:logging.py:92 [conn=207] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=207] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=207] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:44:54 UTC 2087 INFO asyncssh:logging.py:92 [conn=207, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=207, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=207, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=207, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=207, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=207, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=207, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=207, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=207, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 100 flower src_mac 02:83:9b:5d:c5:3c dst_mac 02:3a:0e:e9:99:f9 src_ip 21.106.114.229 dst_ip 63.83.27.167 ip_proto udp src_port 41288 dst_port 31891 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=207, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=10] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 100 flower src_mac 02:83:9b:5d:c5:3c dst_mac 02:3a:0e:e9:99:f9 src_ip 21.106.114.229 dst_ip 63.83.27.167 ip_proto udp src_port 41288 dst_port 31891 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=207, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 200 flower src_mac 02:3e:b1:84:e4:88 dst_mac 02:59:7d:d5:63:84 src_ip 110.194.143.246 dst_ip 97.187.37.38 ip_proto udp src_port 6573 dst_port 61799 action police rate 400000 burst 401000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=207, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=12] Command: tc filter add dev swp33 ingress protocol ip pref 200 flower src_mac 02:3e:b1:84:e4:88 dst_mac 02:59:7d:d5:63:84 src_ip 110.194.143.246 dst_ip 97.187.37.38 ip_proto udp src_port 6573 dst_port 61799 action police rate 400000 burst 401000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=207, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 300 flower src_mac 02:57:13:aa:08:34 dst_mac 02:12:36:60:bb:1a src_ip 13.120.35.4 dst_ip 119.134.3.32 ip_proto udp src_port 56503 dst_port 23099 action police rate 600000 burst 601000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=207, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=14] Command: tc filter add dev swp33 ingress protocol ip pref 300 flower src_mac 02:57:13:aa:08:34 dst_mac 02:12:36:60:bb:1a src_ip 13.120.35.4 dst_ip 119.134.3.32 ip_proto udp src_port 56503 dst_port 23099 action police rate 600000 burst 601000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=207, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=207, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=207, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":100,"kind":"flower","chain":0},{"protocol":"ip","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:3a:0e:e9:99:f9","src_mac":"02:83:9b:5d:c5:3c","eth_type":"ipv4","ip_proto":"udp","dst_ip":"63.83.27.167","src_ip":"21.106.114.229","dst_port":31891,"src_port":41288},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"ip","pref":200,"kind":"flower","chain":0},{"protocol":"ip","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:59:7d:d5:63:84","src_mac":"02:3e:b1:84:e4:88","eth_type":"ipv4","ip_proto":"udp","dst_ip":"97.187.37.38","src_ip":"110.194.143.246","dst_port":61799,"src_port":6573},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"ip","pref":300,"kind":"flower","chain":0},{"protocol":"ip","pref":300,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:12:36:60:bb:1a","src_mac":"02:57:13:aa:08:34","eth_type":"ipv4","ip_proto":"udp","dst_ip":"119.134.3.32","src_ip":"13.120.35.4","dst_port":23099,"src_port":56503},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":3,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:3a:0e:e9:99:f9_src_mac_02:83:9b:5d:c5:3c_eth_type_ipv4_ip_proto_udp_dst_ip_63.83.27.167_src_ip_21.106.114.229_dst_port_31891_src_port_41288 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:59:7d:d5:63:84_src_mac_02:3e:b1:84:e4:88_eth_type_ipv4_ip_proto_udp_dst_ip_97.187.37.38_src_ip_110.194.143.246_dst_port_61799_src_port_6573 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:12:36:60:bb:1a_src_mac_02:57:13:aa:08:34_eth_type_ipv4_ip_proto_udp_dst_ip_119.134.3.32_src_ip_13.120.35.4_dst_port_23099_src_port_56503 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc245e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:3a:0e:e9:99:f9_src_mac_02:83:9b:5d:c5:3c_eth_type_ipv4_ip_proto_udp_dst_ip_63.83.27.167_src_ip_21.106.114.229_dst_port_31891_src_port_41288 Tx 2410889 Rx 2930 Frames Delta 2407959 Loss 99.878 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:59:7d:d5:63:84_src_mac_02:3e:b1:84:e4:88_eth_type_ipv4_ip_proto_udp_dst_ip_97.187.37.38_src_ip_110.194.143.246_dst_port_61799_src_port_6573 Tx 2410888 Rx 4686 Frames Delta 2406202 Loss 99.806 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:12:36:60:bb:1a_src_mac_02:57:13:aa:08:34_eth_type_ipv4_ip_proto_udp_dst_ip_119.134.3.32_src_ip_13.120.35.4_dst_port_23099_src_port_56503 Tx 2410887 Rx 7027 Frames Delta 2403860 Loss 99.709 INFO DENT:Logger.py:84 [DENT infrastructure 1] Veryfing rate for the stream swp33_dst_mac_02:3a:0e:e9:99:f9_src_mac_02:83:9b:5d:c5:3c_eth_type_ipv4_ip_proto_udp_dst_ip_63.83.27.167_src_ip_21.106.114.229_dst_port_31891_src_port_41288 INFO DENT:Logger.py:84 [DENT infrastructure 1] Veryfing rate for the stream swp33_dst_mac_02:59:7d:d5:63:84_src_mac_02:3e:b1:84:e4:88_eth_type_ipv4_ip_proto_udp_dst_ip_97.187.37.38_src_ip_110.194.143.246_dst_port_61799_src_port_6573 INFO DENT:Logger.py:84 [DENT infrastructure 1] Veryfing rate for the stream swp33_dst_mac_02:12:36:60:bb:1a_src_mac_02:57:13:aa:08:34_eth_type_ipv4_ip_proto_udp_dst_ip_119.134.3.32_src_ip_13.120.35.4_dst_port_23099_src_port_56503 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_per_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=207, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:48:49 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=207, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:48:54 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=207, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=207, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=207, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=207, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=207, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=207, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=207, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=207, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=207, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=207, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=207, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=207, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=207, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=207, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=207, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=207, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=207, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=207, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=207, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=207, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=207, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=207, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=207, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=207, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=207, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=207, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=207, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=207, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=207, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=207, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=207, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=207, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=207, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=207, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=207, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=207, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=207, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=207, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=207, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=207, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=207, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=207, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=207, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=207, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=207, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=44] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=207, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=207, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=207, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=207, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=46] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=207, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=207, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=48] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=207, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=207, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=207, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=207, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=50] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=207, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=207, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=207, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=207, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=52] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=207, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=207, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=207, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=207, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=54] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=207, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=207, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=207, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=56] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:48:55 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=207, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=207, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=58] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=207, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=58] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":90,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=207, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=207, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=60] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=207, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=60] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rate_units.py::test_policer_rate_config[IEC] | 239.43 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_config[IEC]">Starting testcase:test_policer_rate_config[IEC] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10977' coro=<test_policer_rate_config() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=207, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=208] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=208] Local address: 172.17.0.4, port 52442 INFO asyncssh:logging.py:92 [conn=208] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=208] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=208] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:48:55 UTC 2087 INFO asyncssh:logging.py:92 [conn=208, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=208, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=208, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=208, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=208, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=208, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=208, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=208, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=208, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:15:7a:b4:6b:6c dst_mac 02:55:e0:2c:de:24 src_ip 121.129.188.120 dst_ip 103.25.141.96 ip_proto tcp src_port 61971 dst_port 26149 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=208, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=10] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:15:7a:b4:6b:6c dst_mac 02:55:e0:2c:de:24 src_ip 121.129.188.120 dst_ip 103.25.141.96 ip_proto tcp src_port 61971 dst_port 26149 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=208, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=208, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=208, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:55:e0:2c:de:24","src_mac":"02:15:7a:b4:6b:6c","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"103.25.141.96","src_ip":"121.129.188.120","dst_port":26149,"src_port":61971},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:55:e0:2c:de:24_src_mac_02:15:7a:b4:6b:6c_eth_type_ipv4_ip_proto_tcp_dst_ip_103.25.141.96_src_ip_121.129.188.120_dst_port_26149_src_port_61971 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=208, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=208, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=14] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=208, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:15:7a:b4:6b:6c dst_mac 02:55:e0:2c:de:24 src_ip 121.129.188.120 dst_ip 103.25.141.96 ip_proto tcp src_port 61971 dst_port 26149 action police rate 0.00023283064365386998gibit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=208, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=16] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:15:7a:b4:6b:6c dst_mac 02:55:e0:2c:de:24 src_ip 121.129.188.120 dst_ip 103.25.141.96 ip_proto tcp src_port 61971 dst_port 26149 action police rate 0.00023283064365386998gibit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=208, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc51840>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4735672 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2258 INFO asyncssh:logging.py:92 [conn=208, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=208, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=18] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=208, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:15:7a:b4:6b:6c dst_mac 02:55:e0:2c:de:24 src_ip 121.129.188.120 dst_ip 103.25.141.96 ip_proto tcp src_port 61971 dst_port 26149 action police rate 30.517578125kibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=208, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=20] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:15:7a:b4:6b:6c dst_mac 02:55:e0:2c:de:24 src_ip 121.129.188.120 dst_ip 103.25.141.96 ip_proto tcp src_port 61971 dst_port 26149 action police rate 30.517578125kibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=208, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acd7f430>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 14635029 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 41259 INFO asyncssh:logging.py:92 [conn=208, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=208, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=22] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=208, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:15:7a:b4:6b:6c dst_mac 02:55:e0:2c:de:24 src_ip 121.129.188.120 dst_ip 103.25.141.96 ip_proto tcp src_port 61971 dst_port 26149 action police rate 0.029802322387695mibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=208, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=24] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:15:7a:b4:6b:6c dst_mac 02:55:e0:2c:de:24 src_ip 121.129.188.120 dst_ip 103.25.141.96 ip_proto tcp src_port 61971 dst_port 26149 action police rate 0.029802322387695mibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=208, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acafb2b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 24532500 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 75094 INFO asyncssh:logging.py:92 [conn=208, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=208, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=26] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=208, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:15:7a:b4:6b:6c dst_mac 02:55:e0:2c:de:24 src_ip 121.129.188.120 dst_ip 103.25.141.96 ip_proto tcp src_port 61971 dst_port 26149 action police rate 2.9103830456735e-05gibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=208, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=28] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:15:7a:b4:6b:6c dst_mac 02:55:e0:2c:de:24 src_ip 121.129.188.120 dst_ip 103.25.141.96 ip_proto tcp src_port 61971 dst_port 26149 action police rate 2.9103830456735e-05gibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=208, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc246a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 34628780 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 119245 INFO asyncssh:logging.py:92 [conn=208, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=208, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=30] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=208, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:15:7a:b4:6b:6c dst_mac 02:55:e0:2c:de:24 src_ip 121.129.188.120 dst_ip 103.25.141.96 ip_proto tcp src_port 61971 dst_port 26149 action police rate 2.8421709430404997e-08tibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=208, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=32] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:15:7a:b4:6b:6c dst_mac 02:55:e0:2c:de:24 src_ip 121.129.188.120 dst_ip 103.25.141.96 ip_proto tcp src_port 61971 dst_port 26149 action police rate 2.8421709430404997e-08tibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=208, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc5c700>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 44541276 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 152876 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_config[IEC] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=208, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:52:49 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=208, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:52:54 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=208, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=208, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=38] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=208, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=208, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=208, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=40] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=208, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=208, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=208, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=208, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=42] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=208, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=208, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=208, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=208, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=208, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=208, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=208, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=208, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=208, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=208, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=208, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=208, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=208, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=208, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=208, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=208, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=208, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=208, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=208, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=208, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=208, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=208, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=208, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=208, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=208, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=208, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=208, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=208, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=208, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=208, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=208, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=208, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=208, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=208, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=208, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=208, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=60] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=208, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=208, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=208, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=208, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=62] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=208, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=62] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=208, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=64] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=208, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=208, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=208, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=208, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=66] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=208, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=208, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=208, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=208, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=68] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=208, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=208, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=208, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=208, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=70] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=208, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=208, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=208, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=71] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=72] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:52:54 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=208, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=208, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=208, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":91,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=208, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=208, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=76] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=208, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=76] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rate_units.py::test_policer_rate_config[SI] | 258.82 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_config[SI]">Starting testcase:test_policer_rate_config[SI] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11066' coro=<test_policer_rate_config() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=208, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=209] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=209] Local address: 172.17.0.4, port 38916 INFO asyncssh:logging.py:92 [conn=209] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=209] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=209] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:52:55 UTC 2087 INFO asyncssh:logging.py:92 [conn=209, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=209, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=209, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=209, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=209, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=209, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=209, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a7:b2:e1:b9:4b dst_mac 02:6a:c8:a9:6b:40 src_ip 74.200.14.201 dst_ip 20.33.17.17 ip_proto tcp src_port 38953 dst_port 25338 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=209, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=10] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a7:b2:e1:b9:4b dst_mac 02:6a:c8:a9:6b:40 src_ip 74.200.14.201 dst_ip 20.33.17.17 ip_proto tcp src_port 38953 dst_port 25338 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=209, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:6a:c8:a9:6b:40","src_mac":"02:a7:b2:e1:b9:4b","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"20.33.17.17","src_ip":"74.200.14.201","dst_port":25338,"src_port":38953},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:6a:c8:a9:6b:40_src_mac_02:a7:b2:e1:b9:4b_eth_type_ipv4_ip_proto_tcp_dst_ip_20.33.17.17_src_ip_74.200.14.201_dst_port_25338_src_port_38953 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=209, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=14] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a7:b2:e1:b9:4b dst_mac 02:6a:c8:a9:6b:40 src_ip 74.200.14.201 dst_ip 20.33.17.17 ip_proto tcp src_port 38953 dst_port 25338 action police rate 0.00025gbit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=209, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=16] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a7:b2:e1:b9:4b dst_mac 02:6a:c8:a9:6b:40 src_ip 74.200.14.201 dst_ip 20.33.17.17 ip_proto tcp src_port 38953 dst_port 25338 action police rate 0.00025gbit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=209, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc265c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 5350787 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2424 INFO asyncssh:logging.py:92 [conn=209, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=18] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a7:b2:e1:b9:4b dst_mac 02:6a:c8:a9:6b:40 src_ip 74.200.14.201 dst_ip 20.33.17.17 ip_proto tcp src_port 38953 dst_port 25338 action police rate 31250.0bps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=209, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=20] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a7:b2:e1:b9:4b dst_mac 02:6a:c8:a9:6b:40 src_ip 74.200.14.201 dst_ip 20.33.17.17 ip_proto tcp src_port 38953 dst_port 25338 action police rate 31250.0bps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=209, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acafba90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 15432381 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 44091 INFO asyncssh:logging.py:92 [conn=209, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=22] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a7:b2:e1:b9:4b dst_mac 02:6a:c8:a9:6b:40 src_ip 74.200.14.201 dst_ip 20.33.17.17 ip_proto tcp src_port 38953 dst_port 25338 action police rate 31.25kbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=209, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=24] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a7:b2:e1:b9:4b dst_mac 02:6a:c8:a9:6b:40 src_ip 74.200.14.201 dst_ip 20.33.17.17 ip_proto tcp src_port 38953 dst_port 25338 action police rate 31.25kbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=209, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf3160>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 25281385 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 85586 INFO asyncssh:logging.py:92 [conn=209, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=26] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a7:b2:e1:b9:4b dst_mac 02:6a:c8:a9:6b:40 src_ip 74.200.14.201 dst_ip 20.33.17.17 ip_proto tcp src_port 38953 dst_port 25338 action police rate 0.03125mbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=209, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=28] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a7:b2:e1:b9:4b dst_mac 02:6a:c8:a9:6b:40 src_ip 74.200.14.201 dst_ip 20.33.17.17 ip_proto tcp src_port 38953 dst_port 25338 action police rate 0.03125mbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=209, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc25630>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 35384568 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 122803 INFO asyncssh:logging.py:92 [conn=209, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=30] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a7:b2:e1:b9:4b dst_mac 02:6a:c8:a9:6b:40 src_ip 74.200.14.201 dst_ip 20.33.17.17 ip_proto tcp src_port 38953 dst_port 25338 action police rate 3.125e-05gbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=209, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=32] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a7:b2:e1:b9:4b dst_mac 02:6a:c8:a9:6b:40 src_ip 74.200.14.201 dst_ip 20.33.17.17 ip_proto tcp src_port 38953 dst_port 25338 action police rate 3.125e-05gbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=209, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc25ae0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 46180170 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 164684 INFO asyncssh:logging.py:92 [conn=209, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=34] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a7:b2:e1:b9:4b dst_mac 02:6a:c8:a9:6b:40 src_ip 74.200.14.201 dst_ip 20.33.17.17 ip_proto tcp src_port 38953 dst_port 25338 action police rate 3.125e-08tbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=209, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=36] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:a7:b2:e1:b9:4b dst_mac 02:6a:c8:a9:6b:40 src_ip 74.200.14.201 dst_ip 20.33.17.17 ip_proto tcp src_port 38953 dst_port 25338 action police rate 3.125e-08tbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=209, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf25c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 56276464 Rx 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 206611 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_config[SI] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=209, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=38] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:57:07 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=209, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=40] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:57:12 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=209, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=42] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=209, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=209, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=209, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=44] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=209, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=209, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=46] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=209, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=209, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=209, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=209, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=64] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=209, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=66] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=209, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=209, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=68] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=209, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=209, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=70] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=209, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=209, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=72] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=209, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=209, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=74] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=209, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=209, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=209, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=75] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=76] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:57:13 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=209, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=209, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=78] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=209, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=78] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":92,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=209, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=209, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=80] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=209, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=80] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rules_priority.py::test_policer_rules_priority[port] | 228.41 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rules_priority[port]">Starting testcase:test_policer_rules_priority[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11159' coro=<test_policer_rules_priority() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=209, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=210] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=210] Local address: 172.17.0.4, port 43006 INFO asyncssh:logging.py:92 [conn=210] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=210] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=210] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 20:57:13 UTC 2087 INFO asyncssh:logging.py:92 [conn=210, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=210, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=210, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=210, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=210, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=210, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=210, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=210, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=210, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=210, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=210, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=210, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=12] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=210, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=210, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=210, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=210, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=210, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=210, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc5c640>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 9152392 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 3702 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3702 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3702 INFO asyncssh:logging.py:92 [conn=210, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=210, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=18] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=210, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=210, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=20] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=210, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf1fc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 12676652 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 6711 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 6711 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 6711 INFO asyncssh:logging.py:92 [conn=210, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=210, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=22] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=210, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=210, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=24] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=210, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf33d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 18096261 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 9211 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 9209 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 9209 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rules_priority[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=210, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:00:55 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=210, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:01:01 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=210, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=210, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=210, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=210, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=210, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=210, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=210, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=210, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=210, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=210, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=52] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=210, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=210, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=54] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=210, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=210, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=56] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=210, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=210, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=58] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=210, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=210, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=60] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=210, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=210, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=62] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=210, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=210, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=210, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=63] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=64] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:01:01 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=210, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=210, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=66] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=210, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=66] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":93,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=210, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=210, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=68] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=210, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=68] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rules_priority.py::test_policer_rules_priority[shared_block] | 256.82 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rules_priority[shared_block]">Starting testcase:test_policer_rules_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11240' coro=<test_policer_rules_priority() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=210, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=211] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=211] Local address: 172.17.0.4, port 49042 INFO asyncssh:logging.py:92 [conn=211] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=211] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=211] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:01:02 UTC 2087 INFO asyncssh:logging.py:92 [conn=211, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=211, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=211, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=211, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=211, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=211, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=211, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 2948 ingress && tc qdisc add dev swp35 ingress_block 2948 ingress && tc qdisc add dev swp36 ingress_block 2948 ingress INFO asyncssh:logging.py:92 [conn=211, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=8] Command: tc qdisc add dev swp34 ingress_block 2948 ingress && tc qdisc add dev swp35 ingress_block 2948 ingress && tc qdisc add dev swp36 ingress_block 2948 ingress INFO asyncssh:logging.py:92 [conn=211, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 2948 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=211, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=10] Command: tc filter add block 2948 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=211, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 2948 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=211, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=12] Command: tc filter add block 2948 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=211, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 2948 ingress INFO asyncssh:logging.py:92 [conn=211, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=14] Command: tc -j filter show block 2948 ingress INFO asyncssh:logging.py:92 [conn=211, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=211, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 2948 ingress INFO asyncssh:logging.py:92 [conn=211, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=16] Command: tc -j filter show block 2948 ingress INFO asyncssh:logging.py:92 [conn=211, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp35_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp36_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc4a980>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 3617 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 10267449 Rx 2532 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 10267287 Rx 2429 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 10267124 Rx 2540 INFO asyncssh:logging.py:92 [conn=211, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete block 2948 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=211, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=18] Command: tc filter delete block 2948 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=211, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 2948 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=211, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=20] Command: tc filter add block 2948 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=211, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc26ec0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 6288 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 13771433 Rx 4540 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 13771253 Rx 4409 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 13771077 Rx 4562 INFO asyncssh:logging.py:92 [conn=211, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete block 2948 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=211, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=22] Command: tc filter delete block 2948 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=211, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 2948 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=211, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=24] Command: tc filter add block 2948 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=211, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc27670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 8744 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 19431035 Rx 6324 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 19430873 Rx 6041 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 19430702 Rx 6333 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rules_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=211, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:05:11 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:05:17 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=211, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=211, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":2948,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","ingress_block":2948,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","ingress_block":2948,"options":{}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=211, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=211, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=211, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=211, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=211, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=211, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=211, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=211, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=52] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=211, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=211, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=211, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=211, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=56] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=211, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=211, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=58] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=211, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=211, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=60] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=211, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=211, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=62] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=211, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=211, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=64] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=211, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=211, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=66] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=211, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=211, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=211, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=67] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=68] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:05:18 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=211, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=69] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=211, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=70] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=211, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=70] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":94,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=211, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=71] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=211, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=72] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=211, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=72] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_same_pref_rules_priority.py::test_policer_same_pref_rules[port] | 211.01 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_same_pref_rules[port]">Starting testcase:test_policer_same_pref_rules[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11325' coro=<test_policer_same_pref_rules() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=211, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=212] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=212] Local address: 172.17.0.4, port 55802 INFO asyncssh:logging.py:92 [conn=212] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=212] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=212] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:05:19 UTC 2087 INFO asyncssh:logging.py:92 [conn=212, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=212, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=212, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=212, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=212, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=212, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=212, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=212, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=212, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=212, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=212, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=212, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=212, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=212, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=212, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=212, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc4b700>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 10493998 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 3810 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3810 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3810 INFO asyncssh:logging.py:92 [conn=212, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=212, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=16] Command: tc filter delete dev swp33 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=212, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=212, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=18] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=212, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc5c070>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 13991295 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 7131 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 7131 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 7131 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_same_pref_rules[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=212, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:08:48 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=212, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:08:48 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=212, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=212, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=212, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=212, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=212, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=212, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=212, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=212, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=212, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=212, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=212, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=212, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=212, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=212, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=212, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=212, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=212, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=212, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=212, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=212, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=212, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=56] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=212, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=212, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=212, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=57] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=58] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:08:49 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=212, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=212, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=60] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=212, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=60] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":95,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=212, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=212, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=62] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=212, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=62] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/policer/test_policer_same_pref_rules_priority.py::test_policer_same_pref_rules[shared_block] | 239.73 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_same_pref_rules[shared_block]">Starting testcase:test_policer_same_pref_rules[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11400' coro=<test_policer_same_pref_rules() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=212, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=213] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=213] Local address: 172.17.0.4, port 44478 INFO asyncssh:logging.py:92 [conn=213] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=213] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=213] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:08:50 UTC 2087 INFO asyncssh:logging.py:92 [conn=213, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=213, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=213, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=213, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=213, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=213, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=213, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 278 ingress && tc qdisc add dev swp35 ingress_block 278 ingress && tc qdisc add dev swp36 ingress_block 278 ingress INFO asyncssh:logging.py:92 [conn=213, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=8] Command: tc qdisc add dev swp34 ingress_block 278 ingress && tc qdisc add dev swp35 ingress_block 278 ingress && tc qdisc add dev swp36 ingress_block 278 ingress INFO asyncssh:logging.py:92 [conn=213, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 278 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add block 278 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=213, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=10] Command: tc filter add block 278 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add block 278 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=213, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 278 ingress INFO asyncssh:logging.py:92 [conn=213, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=12] Command: tc -j filter show block 278 ingress INFO asyncssh:logging.py:92 [conn=213, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=213, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 278 ingress INFO asyncssh:logging.py:92 [conn=213, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=14] Command: tc -j filter show block 278 ingress INFO asyncssh:logging.py:92 [conn=213, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp35_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp36_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc5e260>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 3664 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 10436591 Rx 2534 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 10436427 Rx 2531 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 10436263 Rx 2530 INFO asyncssh:logging.py:92 [conn=213, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter delete block 278 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=213, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=16] Command: tc filter delete block 278 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=213, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 278 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=213, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=18] Command: tc filter add block 278 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=213, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc5c9a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 5842 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 13247869 Rx 4378 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 13247707 Rx 4376 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 13247544 Rx 4373 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_same_pref_rules[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=213, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:12:48 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=213, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:12:48 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=213, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":278,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","ingress_block":278,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","ingress_block":278,"options":{}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=213, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=213, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=213, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=213, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=213, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=213, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=213, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=213, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=48] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=213, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=213, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=50] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=213, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=213, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=213, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=213, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=54] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=213, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=213, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=213, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=213, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=58] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=213, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=213, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=60] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=213, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=62] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:12:49 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=213, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=213, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=64] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=213, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":96,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=213, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=213, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=66] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=213, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=66] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_basic_functionality.py::test_port_isolation_basic_functionality | 438.08 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_basic_functionality">Starting testcase:test_port_isolation_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11478' coro=<test_port_isolation_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=213, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=214] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=214] Local address: 172.17.0.4, port 46320 INFO asyncssh:logging.py:92 [conn=214] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=214] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=214] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:12:49 UTC 2087 INFO asyncssh:logging.py:92 [conn=214, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=214, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=214, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=214, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=214, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=214, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=214, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=214, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=214, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc482b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_0 SIP-DIP N/A Tx 10482 Rx 10482 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 10482 Rx 10482 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI stream_2 SIP-DIP N/A Tx 10482 Rx 10482 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI stream_3 SIP-DIP N/A Tx 10482 Rx 10482 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc4a350>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_0 SIP-DIP N/A Tx 10505 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI stream_1 SIP-DIP N/A Tx 10505 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI stream_2 SIP-DIP N/A Tx 10505 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 10505 Rx 10505 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc4a680>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_0 SIP-DIP N/A Tx 10486 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI stream_1 SIP-DIP N/A Tx 10486 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI stream_2 SIP-DIP N/A Tx 10486 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI stream_3 SIP-DIP N/A Tx 10486 Rx 10486 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=214, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=10] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:20:07 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=214, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:20:07 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=214, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=214, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=214, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":97,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=214, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=214, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=214, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=16] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py::test_port_isolation_enable_disable_feature_under_ws_traffic | 233.53 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_enable_disable_feature_under_ws_traffic">Starting testcase:test_port_isolation_enable_disable_feature_under_ws_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11504' coro=<test_port_isolation_enable_disable_feature_under_ws_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py:60> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=214, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=215] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=215] Local address: 172.17.0.4, port 34488 INFO asyncssh:logging.py:92 [conn=215] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=215] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=215] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:20:07 UTC 2087 INFO asyncssh:logging.py:92 [conn=215, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=215, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=215, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=215, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=215, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=215, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=215, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=215, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=215, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf0490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1 SIP-DIP N/A Tx 7983 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 7983 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_3 SIP-DIP N/A Tx 7983 Rx 7983 Loss 0.000 INFO asyncssh:logging.py:92 [conn=215, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=215, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=10] Command: bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=215, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc4a500>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1 SIP-DIP N/A Tx 6629 Rx 6629 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 6629 Rx 6629 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_3 SIP-DIP N/A Tx 6629 Rx 6629 Loss 0.000 INFO asyncssh:logging.py:92 [conn=215, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=215, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=12] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=215, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc4b9d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1 SIP-DIP N/A Tx 7837 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 7837 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_3 SIP-DIP N/A Tx 7837 Rx 7837 Loss 0.000 INFO asyncssh:logging.py:92 [conn=215, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=215, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=14] Command: bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=215, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc5f790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1 SIP-DIP N/A Tx 6842 Rx 6842 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 6842 Rx 6842 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_3 SIP-DIP N/A Tx 6842 Rx 6842 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_enable_disable_feature_under_ws_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=215, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:23:55 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=215, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:24:00 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=215, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=215, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=215, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":98,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=215, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=215, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=215, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_incremental_mac_addresses.py::test_port_isolation_incremental_mac_addresses | 440.46 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_incremental_mac_addresses">Starting testcase:test_port_isolation_incremental_mac_addresses from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11536' coro=<test_port_isolation_incremental_mac_addresses() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=215, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=216] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=216] Local address: 172.17.0.4, port 48166 INFO asyncssh:logging.py:92 [conn=216] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=216] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=216] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:24:01 UTC 2087 INFO asyncssh:logging.py:92 [conn=216, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=216, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=216, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=216, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=216, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=216, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=216, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=216, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=216, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc5e320>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_0 SIP-DIP N/A Tx 42039 Rx 42039 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 42039 Rx 42039 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI stream_2 SIP-DIP N/A Tx 42039 Rx 42039 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI stream_3 SIP-DIP N/A Tx 42039 Rx 42039 Loss 0.000 INFO asyncssh:logging.py:92 [conn=216, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=216, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=216, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=10] Channel closed DEBUG infra1:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf06d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_0 SIP-DIP N/A Tx 42060 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI stream_1 SIP-DIP N/A Tx 42060 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI stream_2 SIP-DIP N/A Tx 42060 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 42060 Rx 42060 Loss 0.000 INFO asyncssh:logging.py:92 [conn=216, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=216, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=12] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=216, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=12] Channel closed DEBUG infra1:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf3a00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_0 SIP-DIP N/A Tx 41942 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI stream_1 SIP-DIP N/A Tx 41942 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI stream_2 SIP-DIP N/A Tx 41942 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI stream_3 SIP-DIP N/A Tx 41942 Rx 41942 Loss 0.000 INFO asyncssh:logging.py:92 [conn=216, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=216, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=14] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=216, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=14] Channel closed DEBUG infra1:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_incremental_mac_addresses from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=216, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:31:20 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=216, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:31:20 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=216, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=216, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=216, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":99,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=216, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=216, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=216, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_br_storm_control.py::test_port_isolation_interaction_br_storm_control | 211.21 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_br_storm_control">Starting testcase:test_port_isolation_interaction_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11568' coro=<test_port_isolation_interaction_br_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=216, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=217] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=217] Local address: 172.17.0.4, port 60046 INFO asyncssh:logging.py:92 [conn=217] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=217] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=217] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:31:21 UTC 2087 INFO asyncssh:logging.py:92 [conn=217, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=217, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=217, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=217, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=217, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=217, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=217, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=217, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=217, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 30277 cmode runtime INFO asyncssh:logging.py:92 [conn=217, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 30277 cmode runtime INFO asyncssh:logging.py:92 [conn=217, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=217, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=217, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":30277}]}]}} INFO asyncssh:logging.py:92 [conn=217, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 105367 cmode runtime INFO asyncssh:logging.py:92 [conn=217, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=14] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 105367 cmode runtime INFO asyncssh:logging.py:92 [conn=217, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=217, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=16] Command: devlink -j port param show pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=217, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=16] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":105367}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc48bb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 658649 Rx 1060260 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1060187 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 1060120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1225199 Rx 162514 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc4ae00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 363339 Rx 89667 Loss 75.321 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 317992 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 391052 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI stream_4 SIP-DIP N/A Tx 970320 Rx 833965 Loss 14.053 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI stream_5 SIP-DIP N/A Tx 745596 Rx 641796 Loss 13.922 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI stream_6 SIP-DIP N/A Tx 279285 Rx 249556 Loss 10.645 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=217, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=217, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=217, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":30277}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":105367}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=217, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=217, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=217, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=217, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=217, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=217, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=217, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=217, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=217, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=26] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=217, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:34:47 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=217, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:34:52 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=217, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=217, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=217, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":100,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=217, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=217, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=217, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py::test_port_isolation_interaction_mc_and_br_storm_control | 208.98 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_mc_and_br_storm_control">Starting testcase:test_port_isolation_interaction_mc_and_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11612' coro=<test_port_isolation_interaction_mc_and_br_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=217, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=218] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=218] Local address: 172.17.0.4, port 40968 INFO asyncssh:logging.py:92 [conn=218] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=218] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=218] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:34:53 UTC 2087 INFO asyncssh:logging.py:92 [conn=218, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=218, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=218, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=218, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=218, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=218, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=218, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=218, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=218, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 9042 cmode runtime INFO asyncssh:logging.py:92 [conn=218, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=10] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 9042 cmode runtime INFO asyncssh:logging.py:92 [conn=218, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=218, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=12] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=218, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}]}} INFO asyncssh:logging.py:92 [conn=218, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 65394 cmode runtime INFO asyncssh:logging.py:92 [conn=218, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=14] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 65394 cmode runtime INFO asyncssh:logging.py:92 [conn=218, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=218, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=16] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=218, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=16] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":65394}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc4bd00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1056735 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1741584 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1033730 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc4b880>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 1726538 Rx 128511 Loss 92.557 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI stream_2 SIP-DIP N/A Tx 313445 Rx 172424 Loss 44.991 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 1233254 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI stream_4 SIP-DIP N/A Tx 1298977 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=218, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=218, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=218, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":65394}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=218, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=218, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=218, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=218, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=218, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=218, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=218, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=218, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=218, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=26] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_mc_and_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=218, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:38:15 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=218, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:38:21 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=218, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=218, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=218, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":101,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=218, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=218, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=218, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py::test_port_isolation_interaction_ports_inside_lag | 418.08 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_ports_inside_lag">Starting testcase:test_port_isolation_interaction_ports_inside_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11657' coro=<test_port_isolation_interaction_ports_inside_lag() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=218, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=219] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=219] Local address: 172.17.0.4, port 49442 INFO asyncssh:logging.py:92 [conn=219] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=219] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=219] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:38:22 UTC 2087 INFO asyncssh:logging.py:92 [conn=219, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=219, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=219, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=219, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=219, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=219, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=219, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp34 down && ip link set dev swp34 master bond2 INFO asyncssh:logging.py:92 [conn=219, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=8] Command: ip link set dev bond2 up && ip link set dev swp34 down && ip link set dev swp34 master bond2 INFO asyncssh:logging.py:92 [conn=219, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=219, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=219, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=219, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=219, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=219, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=219, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=219, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=16] Command: ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=219, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=219, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=219, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev bond1 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=219, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=20] Command: bridge link set dev bond1 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=219, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf2bf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_0 SIP-DIP N/A Tx 10880 Rx 10880 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI stream_1 SIP-DIP N/A Tx 10880 Rx 10880 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf2680>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_0 SIP-DIP N/A Tx 10374 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI stream_1 SIP-DIP N/A Tx 10374 Rx 10374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf05e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_0 SIP-DIP N/A Tx 10835 Rx 10835 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 10835 Rx 10835 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_ports_inside_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=219, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:45:19 UTC 2087 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=219, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=219, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=24] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=219, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":true,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":102,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":true,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":103,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":104,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":198.00,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=219, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=219, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=26] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=219, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=219, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=28] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=219, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=219, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:45:19 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=219, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=32] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:45:19 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=219, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=219, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=219, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":104,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=219, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=219, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=219, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=36] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_span_rule.py::test_port_isolation_interaction_span_rule | 178.86 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_span_rule">Starting testcase:test_port_isolation_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11706' coro=<test_port_isolation_interaction_span_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py:49> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=219, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=220] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=220] Local address: 172.17.0.4, port 51116 INFO asyncssh:logging.py:92 [conn=220] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=220] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=220] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:45:20 UTC 2087 INFO asyncssh:logging.py:92 [conn=220, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=220, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=220, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=220, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=220, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=220, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=220, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=220, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=220, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=220, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=10] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=220, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=220, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=12] Command: tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=220, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridgeStream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf31c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI bridgeStream SIP-DIP N/A Tx 7983 Rx 7983 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf33d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridgeStream Tx 9983 Rx 9983 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=220, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=220, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=14] Command: tc filter delete dev swp33 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=220, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf17e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI bridgeStream SIP-DIP N/A Tx 11986 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py INFO asyncssh:logging.py:92 [conn=220, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:48:15 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=220, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=220, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=220, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=20] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=220, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=20] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=220, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=22] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=220, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=22] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=24] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=220, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=40] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=220, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=220, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=42] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=220, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=220, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=44] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=220, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=220, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=46] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=220, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=220, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=48] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=220, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=220, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=50] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=220, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=220, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=51] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=52] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:48:16 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=53] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=54] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:48:18 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=220, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=220, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=56] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=220, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":105,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=220, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=220, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=58] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=220, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=58] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py::test_port_isolation_interaction_unk_uc_storm_control | 215.04 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_unk_uc_storm_control">Starting testcase:test_port_isolation_interaction_unk_uc_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11776' coro=<test_port_isolation_interaction_unk_uc_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=220, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=221] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=221] Local address: 172.17.0.4, port 54786 INFO asyncssh:logging.py:92 [conn=221] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=221] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=221] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:48:19 UTC 2087 INFO asyncssh:logging.py:92 [conn=221, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=221, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=221, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=221, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=221, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=221, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=221, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=221, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=221, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 15277 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 15277 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=221, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=221, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15277}]}]}} INFO asyncssh:logging.py:92 [conn=221, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 97367 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=14] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 97367 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=221, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=16] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=221, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=16] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf0b20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2207275 Rx 921976 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 921905 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 921831 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1131680 Rx 290390 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf3c40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 1298116 Rx 171866 Loss 86.760 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 386776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 2612560 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI stream_4 SIP-DIP N/A Tx 740458 Rx 601702 Loss 18.739 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI stream_5 SIP-DIP N/A Tx 1107726 Rx 911072 Loss 17.753 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI stream_6 SIP-DIP N/A Tx 355648 Rx 280910 Loss 21.015 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=221, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=221, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=221, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15277}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=221, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=221, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=26] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_unk_uc_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=221, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:51:48 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=221, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:51:53 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=221, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=221, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=221, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":106,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=221, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=221, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=221, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_vlan_membership.py::test_port_isolation_interaction_vlan_membership | 429.50 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_vlan_membership">Starting testcase:test_port_isolation_interaction_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11820' coro=<test_port_isolation_interaction_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=221, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=222] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=222] Local address: 172.17.0.4, port 59220 INFO asyncssh:logging.py:92 [conn=222] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=222] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=222] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:51:54 UTC 2087 INFO asyncssh:logging.py:92 [conn=222, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=222, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=222, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=222, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=222, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=222, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=222, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=222, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=222, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp36 vid 22 INFO asyncssh:logging.py:92 [conn=222, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=10] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp36 vid 22 INFO asyncssh:logging.py:92 [conn=222, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp36 vid 23 INFO asyncssh:logging.py:92 [conn=222, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=12] Command: bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp36 vid 23 INFO asyncssh:logging.py:92 [conn=222, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 24 pvid && bridge vlan add dev swp34 vid 24 pvid && bridge vlan add dev swp35 vid 24 pvid && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=222, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=14] Command: bridge vlan add dev swp33 vid 24 pvid && bridge vlan add dev swp34 vid 24 pvid && bridge vlan add dev swp35 vid 24 pvid && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=222, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show INFO asyncssh:logging.py:92 [conn=222, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=16] Command: bridge -j vlan show INFO asyncssh:logging.py:92 [conn=222, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifname":"swp33","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp34","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp35","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp36","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc49120>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_0 SIP-DIP N/A Tx 5251 Rx 5250 Loss 0.019 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 5251 Rx 5251 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI stream_2 SIP-DIP N/A Tx 5251 Rx 5251 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI stream_3 SIP-DIP N/A Tx 5251 Rx 5251 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc48b20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_0 SIP-DIP N/A Tx 5492 Rx 5492 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI stream_1 SIP-DIP N/A Tx 5492 Rx 5492 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI stream_2 SIP-DIP N/A Tx 5492 Rx 5492 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 5492 Rx 5492 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf2980>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_0 SIP-DIP N/A Tx 5485 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI stream_1 SIP-DIP N/A Tx 5485 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI stream_2 SIP-DIP N/A Tx 5485 Rx 5485 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI stream_3 SIP-DIP N/A Tx 5485 Rx 5485 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=222, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:59:02 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=222, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:59:02 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=222, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=222, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=222, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":107,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=222, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=222, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=222, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=24] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py::test_port_isolation_maximum_isolated_ports_on_bridge | 186.27 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_maximum_isolated_ports_on_bridge">Starting testcase:test_port_isolation_maximum_isolated_ports_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11854' coro=<test_port_isolation_maximum_isolated_ports_on_bridge() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete It took 0:00:00.035892 to verify ports presence. It took 0:00:00.064933 to set entities to 'UP' state. -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=222, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=223] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=223] Local address: 172.17.0.4, port 44834 INFO asyncssh:logging.py:92 [conn=223] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=223] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=223] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 21:59:03 UTC 2087 INFO asyncssh:logging.py:92 [conn=223, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=1] Channel closed DEBUG infra1:Logger.py:156 ifconfig -a INFO asyncssh:logging.py:92 [conn=223, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=2] Command: ifconfig -a INFO asyncssh:logging.py:92 [conn=223, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=2] Channel closed DEBUG infra1:Logger.py:156 dummy0: flags=130<BROADCAST,NOARP> mtu 1500 ether 5e:cd:be:b6:2c:07 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 2196 bytes 109800 (107.2 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 2196 bytes 109800 (107.2 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ma1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 10.36.118.46 netmask 255.255.255.0 broadcast 10.36.118.255 inet6 fe80::923c:b3ff:fe8b:ef34 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:34 txqueuelen 2048 (Ethernet) RX packets 42272 bytes 4003122 (3.8 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 36592 bytes 6142309 (5.8 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 sit0: flags=128<NOARP> mtu 1480 sit txqueuelen 1000 (IPv6-in-IPv4) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp1: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:37 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp2: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:38 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp3: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:39 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp4: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp5: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp6: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp7: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp8: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp9: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp10: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:40 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp11: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:41 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp12: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:42 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp13: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:43 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp14: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:44 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp15: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:45 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp16: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:46 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp17: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:47 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp18: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:48 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp19: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:49 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp20: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp21: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp22: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp23: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp24: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp25: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp26: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:50 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp27: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:51 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp28: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:52 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp29: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:53 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp30: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:54 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp31: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:55 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp32: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:56 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef57 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:57 txqueuelen 1000 (Ethernet) RX packets 244737680 bytes 68560966126 (63.8 GiB) RX errors 0 dropped 0 overruns 0 frame 5122 TX packets 23637332 bytes 10049643351 (9.3 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp34: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef58 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:58 txqueuelen 1000 (Ethernet) RX packets 75106547 bytes 21316980495 (19.8 GiB) RX errors 0 dropped 0 overruns 0 frame 5122 TX packets 29163157 bytes 12458127878 (11.6 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp35: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef59 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:59 txqueuelen 1000 (Ethernet) RX packets 53722587 bytes 17115045437 (15.9 GiB) RX errors 0 dropped 0 overruns 0 frame 1 TX packets 24225316 bytes 10857361883 (10.1 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp36: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef5a prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:5a txqueuelen 1000 (Ethernet) RX packets 45635348 bytes 14369323809 (13.3 GiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 25947907 bytes 11438583372 (10.6 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp37: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp38: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp39: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp40: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp41: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp42: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:60 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp43: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:61 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp44: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:62 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp45: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:63 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp46: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:64 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp47: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:65 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp48: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:66 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp49: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:67 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp50: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:68 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp51: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:69 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp52: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:6a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 INFO asyncssh:logging.py:92 [conn=223, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=223, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=223, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=223, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=223, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=223, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=223, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=223, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=10] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=223, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":108,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=223, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on && bridge link set dev swp36 isolated on INFO asyncssh:logging.py:92 [conn=223, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=12] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on && bridge link set dev swp36 isolated on INFO asyncssh:logging.py:92 [conn=223, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc5ea40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1 SIP-DIP N/A Tx 9976 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 9976 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_3 SIP-DIP N/A Tx 9976 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_maximum_isolated_ports_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=223, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:02:09 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=223, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:02:09 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=223, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=223, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=223, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":108,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=223, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=223, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=223, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=20] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_vlan_interfaces.py::test_port_isolation_vlan_interfaces | 212.35 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_vlan_interfaces">Starting testcase:test_port_isolation_vlan_interfaces from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11884' coro=<test_port_isolation_vlan_interfaces() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=223, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=224] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=224] Local address: 172.17.0.4, port 46380 INFO asyncssh:logging.py:92 [conn=224] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=224] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=224] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:02:09 UTC 2087 INFO asyncssh:logging.py:92 [conn=224, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=224, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=224, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=224, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=224, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=224, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=224, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=224, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=224, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1 && bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 1 && bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=224, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=10] Command: bridge vlan add dev swp33 vid 1 && bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 1 && bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=224, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc5edd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_1_swp1->swp4 SIP-DIP N/A Tx 7960 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_1_swp1->swp3 SIP-DIP N/A Tx 7960 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1_swp1->swp2 SIP-DIP N/A Tx 7960 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI stream_2_swp3->swp4 SIP-DIP N/A Tx 7960 Rx 7960 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI stream_2_swp3->swp2 SIP-DIP N/A Tx 7960 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI stream_2_swp3->swp1 SIP-DIP N/A Tx 7960 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_vlan_interfaces from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=224, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=12] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:05:39 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=224, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=14] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:05:41 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=224, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=224, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=224, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":109,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=224, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=224, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=224, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/qos/test_qos_class_precedence.py::test_qos_class_precedence[L2] | 308.66 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-11912' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_class_precedence[L2]">Starting testcase:test_qos_class_precedence[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=224, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=225] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=225] Local address: 172.17.0.4, port 37382 INFO asyncssh:logging.py:92 [conn=225] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=225] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=225] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:05:42 UTC 2087 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=225, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=2] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:05:42 UTC 2087 INFO asyncssh:logging.py:92 [conn=225, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=225, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=225, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=225, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=225, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 && bridge vlan delete dev swp35 vid 1 INFO asyncssh:logging.py:92 [conn=225, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 && bridge vlan delete dev swp35 vid 1 INFO asyncssh:logging.py:92 [conn=225, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 3407 && bridge vlan add dev swp34 vid 3407 && bridge vlan add dev swp35 vid 3407 INFO asyncssh:logging.py:92 [conn=225, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=10] Command: bridge vlan add dev swp33 vid 3407 && bridge vlan add dev swp34 vid 3407 && bridge vlan add dev swp35 vid 3407 INFO asyncssh:logging.py:92 [conn=225, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=225, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=12] Command: tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=225, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=225, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=14] Command: tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=225, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3407, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3407, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3407, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for high priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for low priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=225, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6199199,"packets":37076,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1034592,"packets":8877,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":949698,"packets":8117,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":616139,"packets":4987,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3598770,"packets":15095,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1924214,"packets":16431,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1931152,"packets":16388,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2675,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6274,"packets":38,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1837395,"packets":15709,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=225, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6201865,"packets":37097,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1034834,"packets":8878,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":949740,"packets":8118,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":618437,"packets":5004,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3598854,"packets":15097,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1924475,"packets":16432,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1931413,"packets":16389,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2936,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1870867456,"packets":3654038,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6816,"packets":40,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1247067496,"packets":2435682,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1837883,"packets":15711,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acaffd60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1217839 Rx 1217839 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1217839 Rx 1217839 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 2435678 Rx 1816970 Loss 25.402 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 2435678 Rx 1837068 Loss 24.577 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for medium priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=225, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6204711,"packets":37120,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1035318,"packets":8880,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":949782,"packets":8119,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":620631,"packets":5021,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3598980,"packets":15100,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1925258,"packets":16435,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1932196,"packets":16392,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3719,"packets":17,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1870867456,"packets":3654038,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8954,"packets":54,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1247067496,"packets":2435682,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1838371,"packets":15713,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=225, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=24] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6207821,"packets":37145,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1035702,"packets":8882,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":949866,"packets":8121,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":622705,"packets":5038,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3599548,"packets":15104,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1925519,"packets":16436,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1932457,"packets":16393,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3980,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1247756288,"packets":2437024,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2495013376,"packets":4873073,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9496,"packets":56,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2494823784,"packets":4872706,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1838615,"packets":15714,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf0df0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1218512 Rx 1218512 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1218512 Rx 1218512 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 2437023 Rx 590222 Loss 75.781 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 2437023 Rx 628813 Loss 74.197 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI medium priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1218512 Rx 1218512 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI medium priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1218512 Rx 1218512 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_class_precedence[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py INFO asyncssh:logging.py:92 [conn=225, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=25] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=225, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=26] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=225, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:10:49 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=225, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=225, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=30] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=225, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":110,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=225, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=225, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=32] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=225, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=34] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:10:50 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=225, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=36] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=225, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=225, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=38] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=225, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=225, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=40] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=225, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=225, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=58] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=225, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=225, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=225, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=225, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=225, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=62] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=225, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=64] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=225, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=64] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=225, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=66] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=225, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=66] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=225, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=68] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=225, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=68] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=225, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=70] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=225, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=70] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=225, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=72] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=225, chan=72] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=72] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=225, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=74] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=225, chan=74] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=74] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=225, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=76] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=225, chan=76] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=76] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=225, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=78] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=225, chan=78] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=78] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=225, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=80] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=225, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_class_precedence.py::test_qos_class_precedence[L3] | 299.69 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-12005' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_class_precedence[L3]">Starting testcase:test_qos_class_precedence[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=225, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=226] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=226] Local address: 172.17.0.4, port 35632 INFO asyncssh:logging.py:92 [conn=226] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=226] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=226] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:10:51 UTC 2087 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=226, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=2] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:10:51 UTC 2087 INFO asyncssh:logging.py:92 [conn=226, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=226, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=226, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=226, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=226, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=7] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 47:0 31:1 2:2 12:3 14:4 56:5 1:6 48:7&& dcb app add dev swp34 dscp-prio 47:0 31:1 2:2 12:3 14:4 56:5 1:6 48:7 INFO asyncssh:logging.py:92 [conn=226, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=8] Command: dcb app add dev swp33 dscp-prio 47:0 31:1 2:2 12:3 14:4 56:5 1:6 48:7&& dcb app add dev swp34 dscp-prio 47:0 31:1 2:2 12:3 14:4 56:5 1:6 48:7 INFO asyncssh:logging.py:92 [conn=226, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=226, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=226, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[1,6],[2,2],[12,3],[14,4],[31,1],[47,0],[48,7],[56,5]]} INFO asyncssh:logging.py:92 [conn=226, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=11] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=226, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=12] Command: dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=226, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[1,6],[2,2],[12,3],[14,4],[31,1],[47,0],[48,7],[56,5]]} INFO asyncssh:logging.py:92 [conn=226, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=226, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=14] Command: tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=226, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=226, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=16] Command: tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=226, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for high priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for low priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=226, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6269670,"packets":37720,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1046922,"packets":8972,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":956905,"packets":8187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":664163,"packets":5433,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3601680,"packets":15128,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1928617,"packets":16461,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1935375,"packets":16416,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2526,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":5676,"packets":48,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":800,"packets":8,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1840079,"packets":15720,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=226, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6272324,"packets":37741,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1049250,"packets":8990,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":957189,"packets":8189,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":664163,"packets":5433,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3601722,"packets":15129,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1928861,"packets":16462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1935863,"packets":16418,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3014,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1874458112,"packets":3661051,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6692,"packets":52,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":800,"packets":8,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1249460224,"packets":2440352,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1840323,"packets":15721,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb0a0e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1220176 Rx 1220176 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1220176 Rx 1220176 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 2440351 Rx 1853116 Loss 24.064 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 2440351 Rx 1807935 Loss 25.915 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for medium priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=226, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=24] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6275588,"packets":37767,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1051862,"packets":9010,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":957799,"packets":8194,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":664163,"packets":5433,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3601764,"packets":15130,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1929419,"packets":16465,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1936421,"packets":16421,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3572,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1874458112,"packets":3661051,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8380,"packets":66,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":800,"packets":8,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1249460224,"packets":2440352,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1840811,"packets":15723,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=226, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=26] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6278542,"packets":37792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1054042,"packets":9028,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":958325,"packets":8197,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":664163,"packets":5433,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3602012,"packets":15134,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1929663,"packets":16466,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1936665,"packets":16422,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3816,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2499525632,"packets":4881886,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1249597440,"packets":2440620,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8888,"packets":68,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":800,"packets":8,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2499057664,"packets":4880972,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1841055,"packets":15724,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acafda50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1220310 Rx 1220310 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1220310 Rx 1220310 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 2440620 Rx 602709 Loss 75.305 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 2440620 Rx 618126 Loss 74.673 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI medium priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1220310 Rx 1220310 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI medium priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1220310 Rx 1220310 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_class_precedence[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py INFO asyncssh:logging.py:92 [conn=226, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=27] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=226, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=28] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=226, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:15:49 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=226, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=226, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=226, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":111,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=226, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=226, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=226, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:15:49 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=226, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=38] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=226, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=226, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=40] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=226, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=226, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=42] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=226, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=226, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=60] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=226, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=226, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=62] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=226, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=226, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=64] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=226, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=226, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=66] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=226, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=66] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=226, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=68] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=226, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=68] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=226, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=70] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=226, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=70] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=226, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=72] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=226, chan=72] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=72] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=226, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=74] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=226, chan=74] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=74] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=226, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=76] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=226, chan=76] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=76] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=226, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=78] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=226, chan=78] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=78] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=226, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=80] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=226, chan=80] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=80] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=226, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=82] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=226, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_default_prio.py::test_qos_default_prio | 670.40 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-12100' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_default_prio">Starting testcase:test_qos_default_prio from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_default_prio.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=226, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=227] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=227] Local address: 172.17.0.4, port 35446 INFO asyncssh:logging.py:92 [conn=227] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=227] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=227] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:15:50 UTC 2087 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=227, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=2] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:15:50 UTC 2087 INFO asyncssh:logging.py:92 [conn=227, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=227, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=227, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=227, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=227, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 3605 pvid untagged && bridge vlan add dev swp34 vid 3605 pvid untagged && bridge vlan add dev swp35 vid 3605 pvid && bridge vlan add dev swp36 vid 3605 pvid INFO asyncssh:logging.py:92 [conn=227, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=8] Command: bridge vlan add dev swp33 vid 3605 pvid untagged && bridge vlan add dev swp34 vid 3605 pvid untagged && bridge vlan add dev swp35 vid 3605 pvid && bridge vlan add dev swp36 vid 3605 pvid INFO asyncssh:logging.py:92 [conn=227, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 35:0 5:1 49:2 11:3 46:4 18:5 47:6 17:7 INFO asyncssh:logging.py:92 [conn=227, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=10] Command: dcb app add dev swp33 dscp-prio 35:0 5:1 49:2 11:3 46:4 18:5 47:6 17:7 INFO asyncssh:logging.py:92 [conn=227, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=11] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=227, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=12] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=227, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[5,1],[11,3],[17,7],[18,5],[35,0],[46,4],[47,6],[49,2]]} INFO asyncssh:logging.py:92 [conn=227, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp36 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=227, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=14] Command: tc qdisc add dev swp33 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp36 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=227, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=227, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=16] Command: tc qdisc add dev swp33 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=227, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.3', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=227, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6340893,"packets":38362,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1064678,"packets":9110,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":959535,"packets":8202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":675822,"packets":5533,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3640858,"packets":15517,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3269,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7597,"packets":47,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3339,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7982,"packets":49,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2731,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7026,"packets":48,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3000,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7584,"packets":50,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=227, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6344065,"packets":38384,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1064678,"packets":9110,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":959777,"packets":8203,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":678710,"packets":5553,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3640900,"packets":15518,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3538,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8155,"packets":49,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3608,"packets":17,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6521692,"packets":12772,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3257192,"packets":6365,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3000,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6520736,"packets":12771,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3257192,"packets":6365,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3269,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6521294,"packets":12773,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256680,"packets":6364,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf2fb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6360 Rx 6360 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6361 Rx 6361 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6360 Rx 6360 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6360 Rx 6360 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6360 Rx 6360 Loss 0.000 INFO asyncssh:logging.py:92 [conn=227, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=23] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 63:7 INFO asyncssh:logging.py:92 [conn=227, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=24] Command: dcb app add dev swp33 dscp-prio 63:7 INFO asyncssh:logging.py:92 [conn=227, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=26] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6348267,"packets":38417,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1064678,"packets":9110,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":959777,"packets":8203,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":682912,"packets":5586,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3640900,"packets":15518,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3807,"packets":17,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8713,"packets":51,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3877,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6522250,"packets":12774,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3257192,"packets":6365,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3269,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6521294,"packets":12773,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3257192,"packets":6365,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3538,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6521852,"packets":12775,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256680,"packets":6364,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3256832,"packets":6361,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=227, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=28] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6351245,"packets":38436,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1064678,"packets":9110,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":960019,"packets":8204,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":685606,"packets":5603,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3640942,"packets":15519,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4076,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9271,"packets":53,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4146,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130112,"packets":13926,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10396600,"packets":20342,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11003752,"packets":21495,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3538,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130112,"packets":13926,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10395644,"packets":20341,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11003752,"packets":21495,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3807,"packets":17,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130112,"packets":13926,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10396202,"packets":20343,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11003240,"packets":21494,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130112,"packets":13926,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb09ae0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO asyncssh:logging.py:92 [conn=227, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=29] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=227, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=30] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=227, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=31] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 35:0 5:1 49:2 11:3 46:4 18:5 47:6 17:7 INFO asyncssh:logging.py:92 [conn=227, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=32] Command: dcb app add dev swp33 dscp-prio 35:0 5:1 49:2 11:3 46:4 18:5 47:6 17:7 INFO asyncssh:logging.py:92 [conn=227, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=33] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=227, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=34] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=227, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=34] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[5,1],[11,3],[17,7],[18,5],[35,0],[46,4],[47,6],[49,2]]} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2_tagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L3_tagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=227, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=36] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6358987,"packets":38503,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1064678,"packets":9110,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":960987,"packets":8208,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":688424,"packets":5630,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3644898,"packets":15555,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5222,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":12431,"packets":75,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5222,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130112,"packets":13926,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10399600,"packets":20362,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11003752,"packets":21495,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4614,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130112,"packets":13926,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10398900,"packets":20365,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11003752,"packets":21495,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4883,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130112,"packets":13926,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130624,"packets":13927,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10399458,"packets":20367,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11003240,"packets":21494,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7130112,"packets":13926,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=227, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=38] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6362055,"packets":38525,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1064678,"packets":9110,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":961229,"packets":8209,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":691208,"packets":5650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3644940,"packets":15556,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5491,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":12989,"packets":77,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5491,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358336,"packets":33903,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92228510,"packets":180185,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21231976,"packets":41472,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4883,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358336,"packets":33903,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92225250,"packets":180183,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21231976,"packets":41472,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5152,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358336,"packets":33903,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92225808,"packets":180185,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21231464,"packets":41471,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358336,"packets":33903,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb09210>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6660 Rx 6660 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 59932 Rx 59932 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 59931 Rx 59931 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 59931 Rx 59931 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6660 Rx 6660 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 59932 Rx 59932 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 59931 Rx 59931 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 59931 Rx 59931 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6660 Rx 6660 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6659 Rx 6659 Loss 0.000 INFO asyncssh:logging.py:92 [conn=227, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=39] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 default-prio 5&& dcb app add dev swp34 default-prio 5&& dcb app add dev swp35 default-prio 5&& dcb app add dev swp36 default-prio 5 INFO asyncssh:logging.py:92 [conn=227, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=40] Command: dcb app add dev swp33 default-prio 5&& dcb app add dev swp34 default-prio 5&& dcb app add dev swp35 default-prio 5&& dcb app add dev swp36 default-prio 5 INFO asyncssh:logging.py:92 [conn=227, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=41] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=42] Command: dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=42] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[5]} INFO asyncssh:logging.py:92 [conn=227, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=43] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=44] Command: dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=44] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[5]} INFO asyncssh:logging.py:92 [conn=227, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=45] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=46] Command: dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=46] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[5]} INFO asyncssh:logging.py:92 [conn=227, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=47] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=48] Command: dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[5]} INFO asyncssh:logging.py:92 [conn=227, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=50] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6372595,"packets":38619,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1065020,"packets":9111,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":961471,"packets":8210,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":701056,"packets":5740,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3645048,"packets":15558,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5760,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13547,"packets":79,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5760,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358336,"packets":33903,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92229068,"packets":180187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21231976,"packets":41472,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5152,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358336,"packets":33903,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92225808,"packets":180185,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21231976,"packets":41472,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5421,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358336,"packets":33903,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358848,"packets":33904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92226366,"packets":180187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21231464,"packets":41471,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17358336,"packets":33903,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=227, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=52] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6375865,"packets":38642,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1065062,"packets":9112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":961713,"packets":8211,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":703884,"packets":5758,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3645206,"packets":15561,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6029,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":14105,"packets":81,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6029,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28979712,"packets":56601,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103852538,"packets":202890,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32853352,"packets":64170,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110334976,"packets":215498,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5421,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28979712,"packets":56601,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103849278,"packets":202888,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32853352,"packets":64170,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110334976,"packets":215498,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5690,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28979712,"packets":56601,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28980224,"packets":56602,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103849836,"packets":202890,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32852840,"packets":64169,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110333440,"packets":215495,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acafcc70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68099 Rx 68099 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68099 Rx 68099 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68098 Rx 68098 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68099 Rx 68099 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68099 Rx 68099 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68098 Rx 68098 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO asyncssh:logging.py:92 [conn=227, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=53] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 default-prio 4&& dcb app add dev swp34 default-prio 4&& dcb app add dev swp35 default-prio 4&& dcb app add dev swp36 default-prio 4 INFO asyncssh:logging.py:92 [conn=227, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=54] Command: dcb app add dev swp33 default-prio 4&& dcb app add dev swp34 default-prio 4&& dcb app add dev swp35 default-prio 4&& dcb app add dev swp36 default-prio 4 INFO asyncssh:logging.py:92 [conn=227, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=55] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=56] Command: dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=56] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[4,5]} INFO asyncssh:logging.py:92 [conn=227, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=57] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=58] Command: dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=58] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[4,5]} INFO asyncssh:logging.py:92 [conn=227, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=59] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=60] Command: dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=60] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[4,5]} INFO asyncssh:logging.py:92 [conn=227, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=61] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=62] Command: dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=62] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[4,5]} INFO asyncssh:logging.py:92 [conn=227, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=64] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6385515,"packets":38731,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1065062,"packets":9112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":961955,"packets":8212,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":703884,"packets":5758,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3654614,"packets":15649,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6298,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":14663,"packets":83,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6298,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28979712,"packets":56601,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103853096,"packets":202892,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32853352,"packets":64170,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110334976,"packets":215498,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5690,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28979712,"packets":56601,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103849836,"packets":202890,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32853352,"packets":64170,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110334976,"packets":215498,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5959,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28979712,"packets":56601,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28980224,"packets":56602,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":28981760,"packets":56605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103850394,"packets":202892,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32852840,"packets":64169,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110333440,"packets":215495,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=227, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=66] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=66] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6388191,"packets":38749,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1065062,"packets":9112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":962197,"packets":8213,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":703884,"packets":5758,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3657048,"packets":15666,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6567,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":15221,"packets":85,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6567,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40599552,"packets":79296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115475030,"packets":225592,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44473192,"packets":86865,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203294720,"packets":397060,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5959,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40599552,"packets":79296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115470234,"packets":225587,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44473192,"packets":86865,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203293696,"packets":397058,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6228,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40599552,"packets":79296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40600064,"packets":79297,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115470792,"packets":225589,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44472680,"packets":86864,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203292160,"packets":397055,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb3df60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68086 Rx 68086 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68085 Rx 68085 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68085 Rx 68085 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68086 Rx 68086 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68085 Rx 68085 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68085 Rx 68085 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO asyncssh:logging.py:92 [conn=227, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=67] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 default-prio 6&& dcb app add dev swp34 default-prio 6&& dcb app add dev swp35 default-prio 6&& dcb app add dev swp36 default-prio 6 INFO asyncssh:logging.py:92 [conn=227, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=68] Command: dcb app add dev swp33 default-prio 6&& dcb app add dev swp34 default-prio 6&& dcb app add dev swp35 default-prio 6&& dcb app add dev swp36 default-prio 6 INFO asyncssh:logging.py:92 [conn=227, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=69] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=70] Command: dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=70] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[4,5,6]} INFO asyncssh:logging.py:92 [conn=227, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=71] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=72] Command: dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=72] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[4,5,6]} INFO asyncssh:logging.py:92 [conn=227, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=73] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=74] Command: dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=74] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[4,5,6]} INFO asyncssh:logging.py:92 [conn=227, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=75] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=76] Command: dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=227, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=76] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[4,5,6]} INFO asyncssh:logging.py:92 [conn=227, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=78] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=78] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6398265,"packets":38840,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1065062,"packets":9112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":962439,"packets":8214,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":703884,"packets":5758,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3666880,"packets":15756,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6836,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":15779,"packets":87,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6836,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40599552,"packets":79296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115475588,"packets":225594,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44473192,"packets":86865,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203294720,"packets":397060,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6228,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40599552,"packets":79296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115470792,"packets":225589,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44473192,"packets":86865,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203293696,"packets":397058,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6497,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40599552,"packets":79296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40600064,"packets":79297,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40601600,"packets":79300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115471350,"packets":225591,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44472680,"packets":86864,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203292160,"packets":397055,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=227, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=80] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=80] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6401137,"packets":38858,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1065062,"packets":9112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":962681,"packets":8215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":703884,"packets":5758,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3669510,"packets":15773,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7105,"packets":30,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":16337,"packets":89,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7105,"packets":30,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133559296,"packets":260858,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127097522,"packets":248294,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56093032,"packets":109560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214914560,"packets":419755,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6497,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133559296,"packets":260858,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127092726,"packets":248289,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56093032,"packets":109560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214913536,"packets":419753,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6766,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133558272,"packets":260856,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52219904,"packets":101992,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127093284,"packets":248291,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56092520,"packets":109559,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214912000,"packets":419750,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb3c190>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68086 Rx 68086 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68086 Rx 68086 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68085 Rx 68085 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68086 Rx 68086 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68086 Rx 68086 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68085 Rx 68085 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO asyncssh:logging.py:92 [conn=227, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=81] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=227, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=82] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=227, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=82] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=83] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 INFO asyncssh:logging.py:92 [conn=227, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=84] Command: dcb -j app show dev swp33 INFO asyncssh:logging.py:92 [conn=227, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=84] Channel closed DEBUG infra1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=227, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=85] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 INFO asyncssh:logging.py:92 [conn=227, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=86] Command: dcb -j app show dev swp34 INFO asyncssh:logging.py:92 [conn=227, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=86] Channel closed DEBUG infra1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=227, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=87] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp35 INFO asyncssh:logging.py:92 [conn=227, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=88] Command: dcb -j app show dev swp35 INFO asyncssh:logging.py:92 [conn=227, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=88] Channel closed DEBUG infra1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=227, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=89] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp36 INFO asyncssh:logging.py:92 [conn=227, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=90] Command: dcb -j app show dev swp36 INFO asyncssh:logging.py:92 [conn=227, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=90] Channel closed DEBUG infra1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=227, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=92] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=92] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6411147,"packets":38949,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1065062,"packets":9112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":962965,"packets":8217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":703884,"packets":5758,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3679236,"packets":15862,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7374,"packets":31,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":16895,"packets":91,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7374,"packets":31,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133559296,"packets":260858,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127098080,"packets":248296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56093032,"packets":109560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214914560,"packets":419755,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6766,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133559296,"packets":260858,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127093284,"packets":248291,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56093032,"packets":109560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214913536,"packets":419753,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7035,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133558272,"packets":260856,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52219904,"packets":101992,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127093842,"packets":248293,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56092520,"packets":109559,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214912000,"packets":419750,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=227, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=94] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=94] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6415529,"packets":38970,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1065062,"packets":9112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":964761,"packets":8221,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":703884,"packets":5758,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3681822,"packets":15879,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7912,"packets":33,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":18011,"packets":95,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7912,"packets":33,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133559296,"packets":260858,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":87052288,"packets":170024,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":87052288,"packets":170024,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":231591740,"packets":452387,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56093032,"packets":109560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214914560,"packets":419755,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7304,"packets":30,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133559296,"packets":260858,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":87052288,"packets":170024,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":87052288,"packets":170024,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":231586944,"packets":452382,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56093032,"packets":109560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214913536,"packets":419753,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7573,"packets":31,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52221440,"packets":101995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133558272,"packets":260856,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":87050240,"packets":170020,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":87051776,"packets":170023,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":231585966,"packets":452381,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56092520,"packets":109559,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214912000,"packets":419750,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ac9f0910>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68029 Rx 68029 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68029 Rx 68029 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68028 Rx 68028 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68029 Rx 68029 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68029 Rx 68029 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68028 Rx 68028 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7559 Rx 7559 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_default_prio from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_default_prio.py INFO asyncssh:logging.py:92 [conn=227, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=95] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=227, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=96] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=227, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=96] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=97] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=98] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=98] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:26:58 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=227, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=99] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=227, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=100] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=227, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=100] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":112,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=227, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=101] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=227, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=102] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=227, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=102] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=103] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=104] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=104] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:26:59 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=227, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=106] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=106] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}}] INFO asyncssh:logging.py:92 [conn=227, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=227, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=108] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=227, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=227, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=110] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=227, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=124] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=126] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=227, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=128] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=227, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=128] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=227, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=130] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=227, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=130] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=227, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=132] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=227, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=132] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=227, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=134] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=227, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=134] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=227, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=136] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=227, chan=136] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=136] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=227, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=138] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=227, chan=138] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=138] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=227, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=140] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=227, chan=140] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=140] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=227, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=142] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=227, chan=142] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=142] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=227, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=144] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=227, chan=144] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=144] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=227, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=146] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=227, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=146] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=148] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=148] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=148] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=150] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=150] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=150] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=152] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=152] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=152] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=154] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=154] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=154] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=156] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=156] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=156] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=158] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=158] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=158] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=160] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=160] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=160] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=162] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=162] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=162] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=227, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=164] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=227, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=164] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=227, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=166] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=227, chan=166] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=166] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=227, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=168] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=227, chan=168] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=168] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=227, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=170] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=227, chan=170] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=170] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=171] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=227, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=172] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=227, chan=172] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=172] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=173] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=227, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=174] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=227, chan=174] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=174] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=175] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=227, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=176] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=227, chan=176] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=176] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=177] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=227, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=178] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=227, chan=178] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=178] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=179] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=227, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=180] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=227, chan=180] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=180] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=181] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=227, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=182] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=227, chan=182] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=182] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=183] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=227, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=184] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=227, chan=184] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=184] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=185] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=227, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=186] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=227, chan=186] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=186] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=187] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=227, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=188] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=227, chan=188] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=188] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=189] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=227, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=190] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=227, chan=190] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=190] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=191] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=227, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=192] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=227, chan=192] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=192] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=193] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=227, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=194] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=227, chan=194] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=194] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=195] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=227, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=196] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=227, chan=196] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=196] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=197] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=227, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=198] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=227, chan=198] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=198] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] | |||
| Passed | functional/qos/test_qos_dscp_remarking.py::test_qos_dscp_remarking | 294.09 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-12311' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_dscp_remarking">Starting testcase:test_qos_dscp_remarking from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_dscp_remarking.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=227, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=228] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=228] Local address: 172.17.0.4, port 55178 INFO asyncssh:logging.py:92 [conn=228] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=228] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=228] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:27:01 UTC 2087 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=228, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=2] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:27:01 UTC 2087 INFO asyncssh:logging.py:92 [conn=228, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=228, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=228, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=228, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=228, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=7] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 43:0 8:1 11:2 27:3 19:4 6:5 2:6 21:7&& dcb app add dev swp34 dscp-prio 55:0 3:1 50:2 30:3 38:4 18:5 22:6 12:7 INFO asyncssh:logging.py:92 [conn=228, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=8] Command: dcb app add dev swp33 dscp-prio 43:0 8:1 11:2 27:3 19:4 6:5 2:6 21:7&& dcb app add dev swp34 dscp-prio 55:0 3:1 50:2 30:3 38:4 18:5 22:6 12:7 INFO asyncssh:logging.py:92 [conn=228, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=228, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=228, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[2,6],[6,5],[8,1],[11,2],[19,4],[21,7],[27,3],[43,0]]} INFO asyncssh:logging.py:92 [conn=228, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=11] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=228, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=12] Command: dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=228, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[3,1],[12,7],[18,5],[22,6],[30,3],[38,4],[50,2],[55,0]]} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dscp [43,8,11,27,19,6,2,21] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.1/24 to 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dscp [55,3,50,30,38,18,22,12] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_1.1.1.2/24 to 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acafcb80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [43 8 11 27 19 6 2 21] SIP-DIP 1.1.1.1-1.1.1.2 Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [43 8 11 27 19 6 2 21] SIP-DIP 1.1.1.1-1.1.1.2 Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [43 8 11 27 19 6 2 21] SIP-DIP 1.1.1.1-1.1.1.2 Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [43 8 11 27 19 6 2 21] SIP-DIP 1.1.1.1-1.1.1.2 Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [43 8 11 27 19 6 2 21] SIP-DIP 1.1.1.1-1.1.1.2 Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [43 8 11 27 19 6 2 21] SIP-DIP 1.1.1.1-1.1.1.2 Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [43 8 11 27 19 6 2 21] SIP-DIP 1.1.1.1-1.1.1.2 Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [43 8 11 27 19 6 2 21] SIP-DIP 1.1.1.1-1.1.1.2 Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [55 3 50 30 38 18 22 12] SIP-DIP 1.1.1.2-1.1.1.1 Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [55 3 50 30 38 18 22 12] SIP-DIP 1.1.1.2-1.1.1.1 Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [55 3 50 30 38 18 22 12] SIP-DIP 1.1.1.2-1.1.1.1 Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [55 3 50 30 38 18 22 12] SIP-DIP 1.1.1.2-1.1.1.1 Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [55 3 50 30 38 18 22 12] SIP-DIP 1.1.1.2-1.1.1.1 Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [55 3 50 30 38 18 22 12] SIP-DIP 1.1.1.2-1.1.1.1 Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [55 3 50 30 38 18 22 12] SIP-DIP 1.1.1.2-1.1.1.1 Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [55 3 50 30 38 18 22 12] SIP-DIP 1.1.1.2-1.1.1.1 Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [43 8 11 27 19 6 2 21] Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 22 | Rx 72 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [43 8 11 27 19 6 2 21] Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 18 | Rx 72 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [43 8 11 27 19 6 2 21] Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 3 | Rx 72 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [43 8 11 27 19 6 2 21] Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 50 | Rx 72 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [43 8 11 27 19 6 2 21] Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 38 | Rx 72 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [43 8 11 27 19 6 2 21] Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 12 | Rx 72 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [43 8 11 27 19 6 2 21] Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 30 | Rx 72 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [43 8 11 27 19 6 2 21] Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 55 | Rx 72 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [55 3 50 30 38 18 22 12] Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 8 | Rx 72 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [55 3 50 30 38 18 22 12] Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 21 | Rx 72 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [55 3 50 30 38 18 22 12] Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 6 | Rx 72 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [55 3 50 30 38 18 22 12] Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 2 | Rx 72 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [55 3 50 30 38 18 22 12] Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 27 | Rx 72 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [55 3 50 30 38 18 22 12] Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 19 | Rx 72 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [55 3 50 30 38 18 22 12] Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 11 | Rx 72 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [55 3 50 30 38 18 22 12] Tx 72 Rx 72 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 43 | Rx 72 INFO DENT:Logger.py:84 [Ixia Traffic Generator] RX port | RX packets | RX DSCP | TX port | TX packets | TX DSCP | Prio | DSCP expected | DSCP correct | Loss INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 72 | 43 | swp34 | 72 | 55 | 0 | 55 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 72 | 8 | swp34 | 72 | 3 | 1 | 3 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 72 | 11 | swp34 | 72 | 50 | 2 | 50 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 72 | 27 | swp34 | 72 | 30 | 3 | 30 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 72 | 19 | swp34 | 72 | 38 | 4 | 38 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 72 | 6 | swp34 | 72 | 18 | 5 | 18 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 72 | 2 | swp34 | 72 | 22 | 6 | 22 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 72 | 21 | swp34 | 72 | 12 | 7 | 12 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 72 | 55 | swp33 | 72 | 43 | 0 | 43 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 72 | 3 | swp33 | 72 | 8 | 1 | 8 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 72 | 50 | swp33 | 72 | 11 | 2 | 11 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 72 | 30 | swp33 | 72 | 27 | 3 | 27 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 72 | 38 | swp33 | 72 | 19 | 4 | 19 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 72 | 18 | swp33 | 72 | 6 | 5 | 6 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 72 | 22 | swp33 | 72 | 2 | 6 | 2 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 72 | 12 | swp33 | 72 | 21 | 7 | 21 | True | False -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_dscp_remarking from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_dscp_remarking.py INFO asyncssh:logging.py:92 [conn=228, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=13] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=228, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=14] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=228, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=16] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:31:54 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=228, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=228, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=228, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":113,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=228, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=228, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=228, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:31:54 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=228, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=228, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=228, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=228, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=228, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=228, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=228, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=228, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=228, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=228, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=228, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=228, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=228, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=228, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=228, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=228, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=228, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=228, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=228, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=48] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=228, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=228, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=50] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=228, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=228, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=52] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=228, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_shaper.py::test_qos_shaper[L2] | 173.25 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-12376' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_shaper[L2]">Starting testcase:test_qos_shaper[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=228, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=229] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=229] Local address: 172.17.0.4, port 45272 INFO asyncssh:logging.py:92 [conn=229] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=229] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=229] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:31:55 UTC 2087 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=229, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=2] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:31:55 UTC 2087 INFO asyncssh:logging.py:92 [conn=229, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=229, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=229, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=229, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=229, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=229, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=229, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 3184 && bridge vlan add dev swp34 vid 3184 INFO asyncssh:logging.py:92 [conn=229, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=10] Command: bridge vlan add dev swp33 vid 3184 && bridge vlan add dev swp34 vid 3184 INFO asyncssh:logging.py:92 [conn=229, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=229, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=229, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=229, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=229, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 3184, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 3184, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=229, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6555477,"packets":40273,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1078546,"packets":9222,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":981144,"packets":8353,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":760625,"packets":6303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3735162,"packets":16395,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6493,"packets":45,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1631,"packets":9,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3338,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2928,"packets":12,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2928,"packets":12,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=229, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6558143,"packets":40294,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1080954,"packets":9240,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":981144,"packets":8353,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":760625,"packets":6303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3735420,"packets":16398,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6754,"packets":46,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1892,"packets":10,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39258624,"packets":76677,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39258624,"packets":76677,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39258624,"packets":76677,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39258624,"packets":76677,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39258624,"packets":76677,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39262504,"packets":76697,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39258472,"packets":76680,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39258624,"packets":76677,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3416,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3416,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc5e830>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76677 Rx 76677 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76677 Rx 76677 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76677 Rx 76677 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76677 Rx 76677 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76677 Rx 76677 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76677 Rx 76677 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76677 Rx 76677 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76676 Rx 76676 Loss 0.000 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=229, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=229, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=229, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=229, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=229, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=229, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=229, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=44] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=229, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=229, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=46] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=229, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=48] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=48] Received exit status 1 INFO asyncssh:logging.py:92 [conn=229, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=48] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=229, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=50] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=50] Received exit status 1 INFO asyncssh:logging.py:92 [conn=229, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=50] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=229, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=52] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=52] Received exit status 1 INFO asyncssh:logging.py:92 [conn=229, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=52] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=229, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=54] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=54] Received exit status 1 INFO asyncssh:logging.py:92 [conn=229, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=54] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=229, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=56] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=229, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=56] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=229, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=58] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=229, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=58] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=229, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=60] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=229, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=60] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=229, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=62] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=229, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=62] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=229, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=229, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=64] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=229, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=229, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=66] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=229, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=229, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=68] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=229, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=229, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=70] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=229, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=70] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 97Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 75Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 73Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 105Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 120Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 84Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 124Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 53Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=229, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=72] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 97Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 75Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 73Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 105Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 120Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 84Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 124Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 53Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=229, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=74] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":13125000,"burst":1048569,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":9375000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":15500000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":15000000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":9125000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":12125000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":6625000,"burst":1048571,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":10500000,"burst":1048572,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=229, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=76] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=76] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6599787,"packets":40692,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1118888,"packets":9603,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":984854,"packets":8388,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":760625,"packets":6303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3735420,"packets":16398,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7015,"packets":47,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":13125000,"burst":1048569,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":9375000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":15500000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":15000000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":9125000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":12125000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":6625000,"burst":1048571,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":10500000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3416,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3416,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=229, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=78] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=78] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6602337,"packets":40711,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1119372,"packets":9605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":986920,"packets":8405,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":760625,"packets":6303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3735420,"packets":16398,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7276,"packets":48,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":522,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":13125000,"burst":1048569,"lat":0},"bytes":44658176,"packets":87223,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":9375000,"burst":1048575,"lat":0},"bytes":44658688,"packets":87224,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":15500000,"burst":1048575,"lat":0},"bytes":44658176,"packets":87223,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":15000000,"burst":1048575,"lat":0},"bytes":44658176,"packets":87223,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":9125000,"burst":1048572,"lat":0},"bytes":44658176,"packets":87223,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":12125000,"burst":1048570,"lat":0},"bytes":44659772,"packets":87228,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":6625000,"burst":1048571,"lat":0},"bytes":44658176,"packets":87223,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":10500000,"burst":1048572,"lat":0},"bytes":44658176,"packets":87223,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3660,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3660,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb3f3a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87224 Rx 87224 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87224 Rx 87224 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87223 Rx 87223 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87223 Rx 87223 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87223 Rx 87223 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87223 Rx 87223 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87223 Rx 87223 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87223 Rx 87223 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_shaper[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py INFO asyncssh:logging.py:92 [conn=229, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=79] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=229, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=80] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=229, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=80] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=81] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=82] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:34:47 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=229, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=83] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=229, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=84] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=229, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=84] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":114,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=229, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=229, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=86] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=229, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=87] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=88] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:34:47 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=229, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=90] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=90] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":13125000,"burst":1048569,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":9375000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":15500000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":15000000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":9125000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":12125000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":6625000,"burst":1048571,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":10500000,"burst":1048572,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=229, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=229, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=92] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=229, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=229, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=94] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=229, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=96] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=98] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=100] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=102] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=104] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=229, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=229, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=229, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=229, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=114] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=116] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=116] Received exit status 1 INFO asyncssh:logging.py:92 [conn=229, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=116] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=229, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=118] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=118] Received exit status 1 INFO asyncssh:logging.py:92 [conn=229, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=118] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=229, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=229, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=120] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=229, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=229, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=122] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=229, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=229, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=124] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=229, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=229, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=126] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=229, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=128] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=229, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=128] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=229, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=130] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=229, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=229, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=130] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=229, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=229, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=132] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=229, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=229, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=134] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=229, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_shaper.py::test_qos_shaper[L3] | 172.43 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-12523' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_shaper[L3]">Starting testcase:test_qos_shaper[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=229, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=230] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=230] Local address: 172.17.0.4, port 56644 INFO asyncssh:logging.py:92 [conn=230] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=230] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=230] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:34:48 UTC 2087 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=230, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=2] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:34:48 UTC 2087 INFO asyncssh:logging.py:92 [conn=230, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=230, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=230, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=230, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=230, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=7] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 30:0 42:1 20:2 24:3 25:4 4:5 63:6 23:7 INFO asyncssh:logging.py:92 [conn=230, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=8] Command: dcb app add dev swp33 dscp-prio 30:0 42:1 20:2 24:3 25:4 4:5 63:6 23:7 INFO asyncssh:logging.py:92 [conn=230, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=230, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=230, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[4,5],[20,2],[23,7],[24,3],[25,4],[30,0],[42,1],[63,6]]} INFO asyncssh:logging.py:92 [conn=230, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=230, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=230, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=230, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=230, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=230, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6661884,"packets":41267,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1161198,"packets":10010,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":995814,"packets":8482,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":768451,"packets":6362,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3736421,"packets":16413,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10280,"packets":73,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2660,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4848,"packets":34,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1020,"packets":10,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4392,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4392,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=230, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6664340,"packets":41287,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1161440,"packets":10011,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":995814,"packets":8482,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":770581,"packets":6379,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3736505,"packets":16415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10594,"packets":75,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2974,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39251968,"packets":76664,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39252480,"packets":76665,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39251968,"packets":76664,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39251968,"packets":76664,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39251968,"packets":76664,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39257996,"packets":76703,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39252988,"packets":76674,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39251968,"packets":76664,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4636,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4636,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb93f70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76664 Rx 76664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76664 Rx 76664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76664 Rx 76664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76664 Rx 76664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76664 Rx 76664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76665 Rx 76665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76665 Rx 76665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76664 Rx 76664 Loss 0.000 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=230, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=230, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=230, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=230, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=230, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=230, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=230, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=44] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=230, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=230, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=46] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=230, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=48] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=48] Received exit status 1 INFO asyncssh:logging.py:92 [conn=230, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=48] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=230, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=50] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=50] Received exit status 1 INFO asyncssh:logging.py:92 [conn=230, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=50] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=230, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=52] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=52] Received exit status 1 INFO asyncssh:logging.py:92 [conn=230, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=52] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=230, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=54] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=54] Received exit status 1 INFO asyncssh:logging.py:92 [conn=230, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=54] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=230, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=56] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=230, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=56] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=230, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=58] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=230, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=58] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=230, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=60] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=230, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=60] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=230, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=62] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=230, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=62] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=230, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=230, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=64] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=230, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=230, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=66] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=230, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=230, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=68] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=230, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=230, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=70] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=230, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=70] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 110Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 124Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 113Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 125Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 87Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 52Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 57Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 92Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=230, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=72] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 110Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 124Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 113Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 125Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 87Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 52Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 57Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 92Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=230, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=74] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":15625000,"burst":1048562,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":15500000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":7125000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":10875000,"burst":1048567,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":13750000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":11500000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":6500000,"burst":1048573,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=230, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=76] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=76] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6706038,"packets":41682,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1162016,"packets":10015,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":995814,"packets":8482,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":777221,"packets":6437,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3770987,"packets":16748,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10594,"packets":75,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":15625000,"burst":1048562,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":15500000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":7125000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":10875000,"burst":1048567,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":13750000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":11500000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":6500000,"burst":1048573,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4880,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4880,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=230, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=78] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=78] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":6708432,"packets":41703,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1162300,"packets":10017,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":995814,"packets":8482,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":777221,"packets":6437,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3773097,"packets":16767,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10838,"packets":76,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":244,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":15625000,"burst":1048562,"lat":0},"bytes":44641792,"packets":87191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":15500000,"burst":1048575,"lat":0},"bytes":44641792,"packets":87191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":7125000,"burst":1048572,"lat":0},"bytes":44641280,"packets":87190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":10875000,"burst":1048567,"lat":0},"bytes":44641280,"packets":87190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0},"bytes":44641792,"packets":87191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":13750000,"burst":1048575,"lat":0},"bytes":44642300,"packets":87193,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":11500000,"burst":1048570,"lat":0},"bytes":44641280,"packets":87190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":6500000,"burst":1048573,"lat":0},"bytes":44641280,"packets":87190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5124,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5124,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acafc640>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87190 Rx 87190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87191 Rx 87191 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87190 Rx 87190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87191 Rx 87191 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87190 Rx 87190 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87191 Rx 87191 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87191 Rx 87191 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87190 Rx 87190 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_shaper[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py INFO asyncssh:logging.py:92 [conn=230, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=79] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=230, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=80] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=230, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=80] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=81] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=82] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:37:39 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=230, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=83] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=230, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=84] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=230, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=84] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":115,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=230, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=230, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=86] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=230, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=87] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=88] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:37:40 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=230, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=90] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=90] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":15625000,"burst":1048562,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":15500000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":7125000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":10875000,"burst":1048567,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":13750000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":11500000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":6500000,"burst":1048573,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=230, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=230, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=92] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=230, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=230, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=94] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=230, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=96] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=98] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=100] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=102] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=104] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=230, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=230, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=230, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=230, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=114] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=116] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=116] Received exit status 1 INFO asyncssh:logging.py:92 [conn=230, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=116] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=230, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=118] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=118] Received exit status 1 INFO asyncssh:logging.py:92 [conn=230, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=118] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=230, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=230, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=120] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=230, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=230, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=122] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=230, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=230, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=124] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=230, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=230, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=126] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=230, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=128] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=230, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=128] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=230, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=130] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=230, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=230, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=130] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=230, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=230, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=132] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=230, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=230, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=134] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=230, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[sp-L2] | 139.36 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-12670' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[sp-L2]">Starting testcase:test_qos_trust_mode[sp-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=230, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=231] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=231] Local address: 172.17.0.4, port 59148 INFO asyncssh:logging.py:92 [conn=231] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=231] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=231] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:37:40 UTC 2087 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=231, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=2] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:37:40 UTC 2087 INFO asyncssh:logging.py:92 [conn=231, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=231, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=231, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=231, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=231, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=231, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=231, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 3299 && bridge vlan add dev swp34 vid 3299 INFO asyncssh:logging.py:92 [conn=231, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=10] Command: bridge vlan add dev swp33 vid 3299 && bridge vlan add dev swp34 vid 3299 INFO asyncssh:logging.py:92 [conn=231, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=231, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=231, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=231, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=231, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=231, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=231, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 3299, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 3299, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc4a5c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229627 Rx 229627 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229627 Rx 229627 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229627 Rx 229627 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229627 Rx 229627 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229627 Rx 229627 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229627 Rx 229627 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229627 Rx 229627 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229627 Rx 229627 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] PCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 0 | 0 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 1 | 1 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 2 | 2 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 3 | 3 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 4 | 4 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 5 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 6 | 6 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 7 | 7 | 34.42 | 0.00 | 26.06 | True INFO asyncssh:logging.py:92 [conn=231, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=231, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=231, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2838,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117569024,"packets":229627,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117569024,"packets":229627,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117569024,"packets":229627,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117569024,"packets":229627,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117569024,"packets":229627,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117574652,"packets":229654,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117569564,"packets":229633,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117569024,"packets":229627,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 1] 8 | 0 | 117574652 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 7 | 1 | 117569024 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 6 | 2 | 117569024 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 5 | 3 | 117569024 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 4 | 4 | 117569024 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 3 | 5 | 117569024 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 2 | 6 | 117569024 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 1 | 7 | 117569564 | 34.42 | 34.42 | 0.0 | 26.06 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[sp-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=231, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=19] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=231, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=231, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:39:59 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=231, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=231, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=231, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":116,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=231, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=231, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=231, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:39:59 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=231, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=231, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=231, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=231, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=231, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=231, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=231, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=231, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=231, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=231, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=231, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=231, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=231, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=231, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=231, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=231, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=231, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=52] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=231, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=231, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=231, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=231, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=56] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=231, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=231, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=56] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=231, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=231, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=58] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=231, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=231, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=58] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=231, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=231, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=60] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=231, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=231, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=60] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=231, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=231, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=62] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=231, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=231, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=62] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=231, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=231, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=64] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=231, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=231, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=64] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=231, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=231, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=66] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=231, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=231, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=66] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=231, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=231, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=68] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=231, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=231, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=68] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=231, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=231, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=70] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=231, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=231, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=70] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=231, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=231, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=72] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=231, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=231, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=74] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=231, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[sp-L3] | 136.52 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-12757' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[sp-L3]">Starting testcase:test_qos_trust_mode[sp-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=231, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=232] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=232] Local address: 172.17.0.4, port 40750 INFO asyncssh:logging.py:92 [conn=232] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=232] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=232] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:40:00 UTC 2087 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=232, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=2] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:40:00 UTC 2087 INFO asyncssh:logging.py:92 [conn=232, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=232, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=232, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=232, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=232, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=7] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 18:0 13:1 59:2 26:3 16:4 60:5 9:6 24:7 INFO asyncssh:logging.py:92 [conn=232, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=8] Command: dcb app add dev swp33 dscp-prio 18:0 13:1 59:2 26:3 16:4 60:5 9:6 24:7 INFO asyncssh:logging.py:92 [conn=232, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=232, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=232, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[9,6],[13,1],[16,4],[18,0],[24,7],[26,3],[59,2],[60,5]]} INFO asyncssh:logging.py:92 [conn=232, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=232, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=232, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=232, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=232, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=232, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=232, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb3c6a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229448 Rx 229448 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229449 Rx 229449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229448 Rx 229448 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229449 Rx 229449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229448 Rx 229448 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229448 Rx 229448 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229448 Rx 229448 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229448 Rx 229448 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 18 | 0 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 13 | 1 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 59 | 2 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 26 | 3 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 16 | 4 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 60 | 5 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 9 | 6 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 24 | 7 | 34.42 | 0.00 | 26.04 | True INFO asyncssh:logging.py:92 [conn=232, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=232, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=232, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2690,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117477376,"packets":229448,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117477888,"packets":229449,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117477376,"packets":229448,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117477376,"packets":229448,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117477376,"packets":229448,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117482936,"packets":229486,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117478340,"packets":229458,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117477376,"packets":229448,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 1] 8 | 0 | 117482936 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 7 | 1 | 117477888 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 6 | 2 | 117477376 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 5 | 3 | 117477376 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 4 | 4 | 117477376 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 3 | 5 | 117477376 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 2 | 6 | 117477376 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 1 | 7 | 117478340 | 34.42 | 34.42 | 0.0 | 26.04 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[sp-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=232, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=19] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=232, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=232, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:42:15 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=232, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=232, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=232, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":117,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=232, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=232, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=232, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:42:15 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=232, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=232, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=232, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=232, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=232, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=232, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=232, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=232, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=232, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=52] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=232, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=232, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=232, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=232, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=56] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=232, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=232, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=56] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=232, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=232, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=58] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=232, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=232, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=58] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=232, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=232, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=60] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=232, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=232, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=60] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=232, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=232, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=62] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=232, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=232, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=62] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=232, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=232, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=64] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=232, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=232, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=64] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=232, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=232, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=66] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=232, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=232, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=66] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=232, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=232, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=68] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=232, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=232, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=68] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=232, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=232, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=70] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=232, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=232, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=70] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=232, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=232, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=72] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=232, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=232, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=74] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=232, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[wrr-L2] | 138.22 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-12844' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[wrr-L2]">Starting testcase:test_qos_trust_mode[wrr-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=232, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=233] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=233] Local address: 172.17.0.4, port 38380 INFO asyncssh:logging.py:92 [conn=233] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=233] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=233] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:42:16 UTC 2087 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=233, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=2] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:42:16 UTC 2087 INFO asyncssh:logging.py:92 [conn=233, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=233, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=233, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=233, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=233, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=233, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=233, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 634 && bridge vlan add dev swp34 vid 634 INFO asyncssh:logging.py:92 [conn=233, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=10] Command: bridge vlan add dev swp33 vid 634 && bridge vlan add dev swp34 vid 634 INFO asyncssh:logging.py:92 [conn=233, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 10 8 6 6 5 3 2 1 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=233, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 10 8 6 6 5 3 2 1 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=233, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=233, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=233, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=233, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=233, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,8,6,6,5,3,2,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 634, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 634, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acaf9c60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 230041 Rx 230041 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 230041 Rx 230041 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 230040 Rx 230040 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 230040 Rx 230040 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 230040 Rx 230040 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 230040 Rx 230040 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 230040 Rx 230040 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 230040 Rx 230040 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] PCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 0 | 0 | 34.42 | 0.00 | 26.11 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 1 | 1 | 34.42 | 0.00 | 26.11 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 2 | 2 | 34.42 | 0.00 | 26.11 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 3 | 3 | 34.42 | 0.00 | 26.11 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 4 | 4 | 34.42 | 0.00 | 26.11 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 5 | 34.42 | 0.00 | 26.11 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 6 | 6 | 34.42 | 0.00 | 26.11 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 7 | 7 | 34.42 | 0.00 | 26.11 | True INFO asyncssh:logging.py:92 [conn=233, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=233, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=233, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,8,6,6,5,3,2,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2408,"packets":12,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117780480,"packets":230040,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117780992,"packets":230041,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117780480,"packets":230040,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117780480,"packets":230040,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117780480,"packets":230040,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117785880,"packets":230064,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117780840,"packets":230044,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117780480,"packets":230040,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 1] 8 | 0 | 117785880 | 34.42 | 34.42 | 0.0 | 26.11 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 7 | 1 | 117780992 | 34.42 | 34.42 | 0.0 | 26.11 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 6 | 2 | 117780480 | 34.42 | 34.42 | 0.0 | 26.11 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 5 | 3 | 117780480 | 34.42 | 34.42 | 0.0 | 26.11 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 4 | 4 | 117780480 | 34.42 | 34.42 | 0.0 | 26.11 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 3 | 5 | 117780480 | 34.42 | 34.42 | 0.0 | 26.11 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 2 | 6 | 117780480 | 34.42 | 34.42 | 0.0 | 26.11 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 1 | 7 | 117780840 | 34.42 | 34.42 | 0.0 | 26.11 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[wrr-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=233, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=19] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=233, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=233, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:44:33 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=233, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=233, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=233, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":118,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=233, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=233, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=233, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:44:34 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=233, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=233, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=233, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,8,6,6,5,3,2,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=233, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=233, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=233, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=233, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=233, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=233, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=52] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=233, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=233, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=233, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=233, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=56] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=233, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=233, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=56] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=233, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=233, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=58] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=233, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=233, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=58] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=233, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=233, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=60] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=233, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=233, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=60] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=233, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=233, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=62] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=233, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=233, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=62] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=233, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=233, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=64] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=233, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=233, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=64] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=233, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=233, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=66] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=233, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=233, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=66] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=233, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=233, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=68] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=233, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=233, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=68] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=233, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=233, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=70] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=233, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=233, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=70] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=233, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=233, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=72] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=233, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=233, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=74] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=233, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[wrr-L3] | 141.83 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-12931' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[wrr-L3]">Starting testcase:test_qos_trust_mode[wrr-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=233, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=234] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=234] Local address: 172.17.0.4, port 35976 INFO asyncssh:logging.py:92 [conn=234] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=234] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=234] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:44:35 UTC 2087 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=234, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=2] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:44:35 UTC 2087 INFO asyncssh:logging.py:92 [conn=234, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=234, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=234, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=234, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=234, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=7] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 18:0 7:1 20:2 22:3 61:4 29:5 32:6 37:7 INFO asyncssh:logging.py:92 [conn=234, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=8] Command: dcb app add dev swp33 dscp-prio 18:0 7:1 20:2 22:3 61:4 29:5 32:6 37:7 INFO asyncssh:logging.py:92 [conn=234, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=234, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=234, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[7,1],[18,0],[20,2],[22,3],[29,5],[32,6],[37,7],[61,4]]} INFO asyncssh:logging.py:92 [conn=234, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 10 9 9 8 8 7 4 1 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=234, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 10 9 9 8 8 7 4 1 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=234, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=234, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=234, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=234, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=234, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,9,9,8,8,7,4,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb90f40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 228847 Rx 228847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 228847 Rx 228847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 228847 Rx 228847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 228846 Rx 228846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 228846 Rx 228846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 228846 Rx 228846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 228846 Rx 228846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 228846 Rx 228846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 18 | 0 | 34.42 | 0.00 | 25.97 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 7 | 1 | 34.42 | 0.00 | 25.97 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 20 | 2 | 34.42 | 0.00 | 25.97 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 22 | 3 | 34.42 | 0.00 | 25.97 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 61 | 4 | 34.42 | 0.00 | 25.97 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 29 | 5 | 34.42 | 0.00 | 25.97 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 32 | 6 | 34.42 | 0.00 | 25.97 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 37 | 7 | 34.42 | 0.00 | 25.97 | True INFO asyncssh:logging.py:92 [conn=234, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=234, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=234, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,9,9,8,8,7,4,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2730,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117169152,"packets":228846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117169664,"packets":228847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117169152,"packets":228846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117169152,"packets":228846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117169664,"packets":228847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117174682,"packets":228883,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117170226,"packets":228857,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117169152,"packets":228846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 1] 8 | 0 | 117174682 | 34.42 | 34.42 | 0.0 | 25.97 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 7 | 1 | 117169664 | 34.42 | 34.42 | 0.0 | 25.97 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 6 | 2 | 117169664 | 34.42 | 34.42 | 0.0 | 25.97 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 5 | 3 | 117169152 | 34.42 | 34.42 | 0.0 | 25.97 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 4 | 4 | 117169152 | 34.42 | 34.42 | 0.0 | 25.97 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 3 | 5 | 117169152 | 34.42 | 34.42 | 0.0 | 25.97 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 2 | 6 | 117169152 | 34.42 | 34.42 | 0.0 | 25.97 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 1 | 7 | 117170226 | 34.42 | 34.42 | 0.0 | 25.97 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[wrr-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=234, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=19] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=234, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=234, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:46:55 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=234, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=234, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=234, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":119,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=234, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=234, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=234, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:46:56 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=234, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=234, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=234, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,9,9,8,8,7,4,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=234, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=234, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=234, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=234, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=234, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=234, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=234, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=234, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=234, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=234, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=234, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=234, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=234, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=234, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=52] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=234, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=234, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=234, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=234, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=56] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=234, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=234, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=56] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=234, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=234, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=58] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=234, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=234, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=58] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=234, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=234, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=60] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=234, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=234, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=60] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=234, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=234, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=62] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=234, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=234, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=62] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=234, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=234, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=64] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=234, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=234, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=64] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=234, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=234, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=66] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=234, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=234, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=66] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=234, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=234, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=68] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=234, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=234, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=68] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=234, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=234, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=70] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=234, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=234, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=70] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=234, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=234, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=72] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=234, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=234, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=74] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=234, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py::test_storm_control_br_and_mc_lag_and_vlan_membership | 202.73 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_br_and_mc_lag_and_vlan_membership">Starting testcase:test_storm_control_br_and_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13019' coro=<test_storm_control_br_and_mc_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=234, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=235] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=235] Local address: 172.17.0.4, port 58332 INFO asyncssh:logging.py:92 [conn=235] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=235] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=235] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:46:56 UTC 2087 INFO asyncssh:logging.py:92 [conn=235, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=235, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=235, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=235, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=235, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=235, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=235, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=235, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=235, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=235, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=235, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=235, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=235, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=235, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=235, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=235, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=235, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=235, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=235, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=235, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=235, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=235, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=235, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=235, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=235, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=28] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=235, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 12010 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 12010 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=32] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":12010}]}]}} INFO asyncssh:logging.py:92 [conn=235, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 42099 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 42099 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=36] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":42099}]}]}} INFO asyncssh:logging.py:92 [conn=235, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=39] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=40] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=235, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=41] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=43] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=44] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=235, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=235, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=52] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_br INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc4ab00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 1046942 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2191588 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=235, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=235, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=235, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=54] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":12010}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":42099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=235, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=57] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=59] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=60] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_br_and_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=235, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=62] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:50:14 UTC 2087 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=235, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=235, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=235, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":120,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":121,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":122,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":102.88,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=235, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=235, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=235, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=235, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=235, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=235, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=69] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=70] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:50:14 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=235, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=71] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=72] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:50:19 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=235, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=235, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=235, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":122,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=235, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=235, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=235, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=76] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py::test_storm_control_br_and_unk_un_and_vlan_membership | 198.92 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_br_and_unk_un_and_vlan_membership">Starting testcase:test_storm_control_br_and_unk_un_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13108' coro=<test_storm_control_br_and_unk_un_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=235, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=236] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=236] Local address: 172.17.0.4, port 47852 INFO asyncssh:logging.py:92 [conn=236] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=236] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=236] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:50:19 UTC 2087 INFO asyncssh:logging.py:92 [conn=236, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=236, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=236, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=236, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=236, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=236, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=236, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=236, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=236, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=236, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=236, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=236, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=236, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=236, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=236, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=236, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=236, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=236, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=236, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=236, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=236, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=236, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=236, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=236, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=236, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=28] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=236, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=32] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=236, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=36] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=236, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=39] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=40] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=236, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=41] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=43] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=44] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=236, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 20511 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 20511 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":20511}]}]}} INFO asyncssh:logging.py:92 [conn=236, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=52] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_br INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb3d360>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1383560 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 585078 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=236, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=236, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=236, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=54] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":20511}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=236, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=57] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=59] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=60] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_br_and_unk_un_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=236, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=62] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:53:32 UTC 2087 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=236, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=236, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=236, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":123,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":124,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":125,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":107.65,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=236, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=236, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=236, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=236, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=236, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=236, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=69] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=70] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:53:32 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=236, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=71] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=72] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:53:38 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=236, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=236, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=236, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":125,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=236, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=236, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=236, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=76] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_broadcast_traffic.py::test_storm_control_broadcast_traffic | 155.79 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_broadcast_traffic">Starting testcase:test_storm_control_broadcast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13196' coro=<test_storm_control_broadcast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=236, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=237] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=237] Local address: 172.17.0.4, port 35078 INFO asyncssh:logging.py:92 [conn=237] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=237] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=237] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=237, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:53:38 UTC 2087 INFO asyncssh:logging.py:92 [conn=237, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=237, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=237, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=237, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=237, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=237, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=237, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=237, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=8] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=237, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=8] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=237, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 118227 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 118227 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=237, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=237, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118227}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc49e40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2710151 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2710004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 2709902 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 2709769 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=237, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=237, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=237, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118227}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=237, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=18] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=22] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=22] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_broadcast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=237, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=237, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:56:08 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=237, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=237, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:56:13 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=237, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=237, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=237, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":126,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=237, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=237, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=237, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_different_rates.py::test_storm_control_different_rates | 315.91 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_different_rates">Starting testcase:test_storm_control_different_rates from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13236' coro=<test_storm_control_different_rates() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py:90> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=237, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=238] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=238] Local address: 172.17.0.4, port 49278 INFO asyncssh:logging.py:92 [conn=238] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=238] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=238] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 22:56:14 UTC 2087 INFO asyncssh:logging.py:92 [conn=238, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=238, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=2] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=238, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=238, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=238, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=238, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=238, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=238, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=8] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=238, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1 pvid untagged && bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp35 vid 2 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=10] Command: bridge vlan add dev swp33 vid 1 pvid untagged && bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp35 vid 2 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1688 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1688 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1688}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2845 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2845 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2845}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3899 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3899 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=22] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=22] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3899}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4642 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=24] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4642 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=26] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=26] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4642}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1012 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=28] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1012 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=30] Command: devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=30] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1012}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5181 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=32] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5181 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=34] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=34] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5181}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc4ae60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 184866 Rx 0 Frames Delta 184866 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 307727 Rx 0 Frames Delta 307727 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 57610 Rx 5770 Frames Delta 51840 Loss 89.984 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 55172 Rx 0 Frames Delta 55172 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 85127 Rx 0 Frames Delta 85127 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 72539 Rx 11357 Frames Delta 61182 Loss 84.344 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 107705 Rx 0 Frames Delta 107705 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 45874 Rx 0 Frames Delta 45874 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 83831 Rx 18016 Frames Delta 65815 Loss 78.509 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 73182 Rx 0 Frames Delta 73182 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 49005 Rx 0 Frames Delta 49005 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 41564 Rx 10600 Frames Delta 30964 Loss 74.497 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 32942 Rx 1958 Frames Delta 30984 Loss 94.056 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 66952 Rx 0 Frames Delta 66952 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 122634 Rx 0 Frames Delta 122634 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 137241 Rx 40950 Frames Delta 96291 Loss 70.162 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 298458 Rx 0 Frames Delta 298458 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 100905 Rx 0 Frames Delta 100905 Loss 100.000 INFO asyncssh:logging.py:92 [conn=238, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1688 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=36] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1688 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=38] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=38] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1688}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=39] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2845 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=40] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2845 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=41] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=42] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=42] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2845}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=43] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3899 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=44] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3899 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=46] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=46] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3899}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4642 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=48] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4642 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=50] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=50] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4642}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1012 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=52] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1012 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=54] Command: devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=54] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1012}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5181 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=56] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5181 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=57] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=58] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=58] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5181}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acafc040>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 604642 Rx 0 Frames Delta 604642 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 1006484 Rx 0 Frames Delta 1006484 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 188424 Rx 18822 Frames Delta 169602 Loss 90.011 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 180450 Rx 0 Frames Delta 180450 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 278426 Rx 0 Frames Delta 278426 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 237254 Rx 37096 Frames Delta 200158 Loss 84.364 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 352270 Rx 0 Frames Delta 352270 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 150041 Rx 0 Frames Delta 150041 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 274186 Rx 58885 Frames Delta 215301 Loss 78.524 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 239356 Rx 0 Frames Delta 239356 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 160281 Rx 0 Frames Delta 160281 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 135943 Rx 34648 Frames Delta 101295 Loss 74.513 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 107742 Rx 6414 Frames Delta 101328 Loss 94.047 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 218979 Rx 0 Frames Delta 218979 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 401099 Rx 0 Frames Delta 401099 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 448876 Rx 133835 Frames Delta 315041 Loss 70.184 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 976169 Rx 0 Frames Delta 976169 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 330029 Rx 0 Frames Delta 330029 Loss 100.000 INFO asyncssh:logging.py:92 [conn=238, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=59] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1688 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1688 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=61] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=62] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=62] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1688}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=63] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2845 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=64] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2845 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=65] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=66] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=66] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2845}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=67] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3899 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=68] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3899 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=69] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=70] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=70] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3899}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=71] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4642 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=72] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4642 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=73] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=74] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=74] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4642}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=75] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1012 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=76] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1012 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=76] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=77] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=78] Command: devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=78] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1012}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=79] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5181 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=80] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5181 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=80] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=81] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=82] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=82] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5181}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad440ee0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 1024418 Rx 0 Frames Delta 1024418 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 1705242 Rx 0 Frames Delta 1705242 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 319238 Rx 31893 Frames Delta 287345 Loss 90.010 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 305729 Rx 0 Frames Delta 305729 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 471725 Rx 0 Frames Delta 471725 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 401968 Rx 62845 Frames Delta 339123 Loss 84.366 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 596835 Rx 0 Frames Delta 596835 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 254208 Rx 0 Frames Delta 254208 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 464542 Rx 99736 Frames Delta 364806 Loss 78.530 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 405531 Rx 0 Frames Delta 405531 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 271557 Rx 0 Frames Delta 271557 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 230323 Rx 58702 Frames Delta 171621 Loss 74.513 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 182543 Rx 10867 Frames Delta 171676 Loss 94.047 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 371006 Rx 0 Frames Delta 371006 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 679565 Rx 0 Frames Delta 679565 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 760510 Rx 226724 Frames Delta 533786 Loss 70.188 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 1653879 Rx 0 Frames Delta 1653879 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 559153 Rx 0 Frames Delta 559153 Loss 100.000 INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=238, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=83] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=238, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=84] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=238, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=84] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1688}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3899}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2845}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4642}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1012}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5181}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=85] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=86] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=87] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=88] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=88] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=89] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=90] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=90] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad0909d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 1397552 Rx 0 Frames Delta 1397552 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 2326360 Rx 0 Frames Delta 2326360 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 435517 Rx 124823 Frames Delta 310694 Loss 71.339 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 417087 Rx 0 Frames Delta 417087 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 643547 Rx 0 Frames Delta 643547 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 548381 Rx 181102 Frames Delta 367279 Loss 66.975 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 814226 Rx 0 Frames Delta 814226 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 346800 Rx 0 Frames Delta 346800 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 633747 Rx 238950 Frames Delta 394797 Loss 62.296 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 553241 Rx 0 Frames Delta 553241 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 370469 Rx 0 Frames Delta 370469 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 314215 Rx 128616 Frames Delta 185599 Loss 59.068 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 249032 Rx 63053 Frames Delta 185979 Loss 74.681 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 506141 Rx 0 Frames Delta 506141 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 927089 Rx 0 Frames Delta 927089 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 1037518 Rx 459721 Frames Delta 577797 Loss 55.690 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 2256289 Rx 0 Frames Delta 2256289 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 762819 Rx 0 Frames Delta 762819 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=238, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=91] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=238, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=92] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=238, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=92] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=93] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=94] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=94] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=95] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=96] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=96] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=97] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=98] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=98] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_different_rates from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=238, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=99] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=100] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=100] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:01:24 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=238, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=101] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=102] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=102] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:01:29 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=238, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=103] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=238, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=104] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=238, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=104] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":127,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=238, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=105] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=238, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=106] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=238, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=106] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_interaction_policer_rules.py::test_storm_control_interaction_policer_rules | 256.44 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-13353' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_interaction_policer_rules">Starting testcase:test_storm_control_interaction_policer_rules from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_policer_rules.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=238, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=239] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=239] Local address: 172.17.0.4, port 57774 INFO asyncssh:logging.py:92 [conn=239] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=239] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=239] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:01:30 UTC 2087 INFO asyncssh:logging.py:92 [conn=239, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=239, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=239, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=239, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=239, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=239, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=239, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=239, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=239, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=239, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:01:30 UTC 2087 INFO asyncssh:logging.py:92 [conn=239, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=239, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=239, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 37686 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 37686 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37686}]}]}} INFO asyncssh:logging.py:92 [conn=239, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 109413 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=16] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 109413 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=18] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":109413}]}]}} INFO asyncssh:logging.py:92 [conn=239, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 75373 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 75373 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=22] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=22] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75373}]}]}} INFO asyncssh:logging.py:92 [conn=239, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=239, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=24] Command: tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=239, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=239, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=26] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=239, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=239, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=28] Command: tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=239, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=239, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=30] Command: tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=239, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=239, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=31] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=239, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=32] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=239, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=32] Channel closed DEBUG infra1:Logger.py:156 4043 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=239, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49152 && tc filter delete dev swp34 ingress pref 49152 && tc filter delete dev swp35 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=239, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=34] Command: tc filter delete dev swp33 ingress pref 49152 && tc filter delete dev swp34 ingress pref 49152 && tc filter delete dev swp35 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=239, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=239, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=36] Command: ip link add br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=239, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=239, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=38] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=239, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=239, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=40] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=239, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=239, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=42] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=239, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=239, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=44] Command: tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=239, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=239, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=46] Command: tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=239, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49accf8640>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 2727643 Rx 15668 Frames Delta 2711975 Loss 99.426 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 2727643 Rx 15722 Frames Delta 2711921 Loss 99.424 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 681918 Rx 16771 Frames Delta 665147 Loss 97.541 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp4 Tx 681918 Rx 681910 Frames Delta 8 Loss 0.001 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp2 Tx 681917 Rx 681909 Frames Delta 8 Loss 0.001 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp1 Tx 681917 Rx 681909 Frames Delta 8 Loss 0.001 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=239, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=239, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=48] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=239, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37686}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":109413}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75373}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=239, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=50] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=52] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=54] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=54] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_interaction_policer_rules from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_policer_rules.py INFO asyncssh:logging.py:92 [conn=239, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=239, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=239, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=57] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=58] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:05:40 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=239, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=239, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=60] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=239, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=60] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=239, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=239, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=62] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=239, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=239, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=239, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=239, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=64] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=239, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=239, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=239, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=239, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=66] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=239, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=239, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=239, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=239, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=68] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=239, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=239, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=239, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=239, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=70] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=239, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=239, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=239, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=239, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=72] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=239, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=239, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=239, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=239, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=74] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=239, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=239, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=239, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=239, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=76] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=239, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=239, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=239, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=239, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=78] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=239, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=239, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=239, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=239, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=80] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=239, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=239, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=239, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=239, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=82] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=239, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=239, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=239, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=239, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=84] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=239, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=239, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=86] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=239, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=239, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=239, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=239, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=88] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=239, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=88] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=239, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=90] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=239, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=239, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=239, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=239, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=92] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=239, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=92] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=239, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=94] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=239, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=239, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=239, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=239, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=96] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=239, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=239, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=239, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=97] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=98] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=98] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:05:40 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=239, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=99] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=100] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=100] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:05:46 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=239, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=101] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=239, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=102] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=239, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=102] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":128,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=239, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=103] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=239, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=104] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=239, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=104] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_interaction_span_rule.py::test_storm_control_interaction_span_rule | 209.40 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_interaction_span_rule">Starting testcase:test_storm_control_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13472' coro=<test_storm_control_interaction_span_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py:65> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=239, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=240] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=240] Local address: 172.17.0.4, port 53026 INFO asyncssh:logging.py:92 [conn=240] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=240] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=240] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:05:46 UTC 2087 INFO asyncssh:logging.py:92 [conn=240, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=240, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=240, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=240, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=240, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=240, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=240, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 1523 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=8] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 1523 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=240, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=10] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=240, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1523}]}]}} INFO asyncssh:logging.py:92 [conn=240, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 3804 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 3804 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=240, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=240, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3804}]}]}} INFO asyncssh:logging.py:92 [conn=240, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 5129 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 5129 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=240, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=240, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5129}]}]}} INFO asyncssh:logging.py:92 [conn=240, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=240, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=20] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=240, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=240, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=22] Command: tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=240, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acafa770>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 491074 Rx 471533 Frames Delta 19541 Loss 3.979 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 491073 Rx 46725 Frames Delta 444348 Loss 90.485 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 491073 Rx 63000 Frames Delta 428073 Loss 87.171 INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=240, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=240, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=24] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=240, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=24] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5129}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1523}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3804}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=240, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=28] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=30] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acaf9810>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 1599283 Rx 1580386 Frames Delta 18897 Loss 1.182 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 1599282 Rx 899105 Frames Delta 700177 Loss 43.781 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 1599282 Rx 929035 Frames Delta 670247 Loss 41.909 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=240, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=240, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=32] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=240, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=32] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=240, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=34] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=36] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=38] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=38] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py INFO asyncssh:logging.py:92 [conn=240, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=40] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:09:10 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=240, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=240, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=42] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=240, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=240, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=240, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=44] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=240, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=240, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=240, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=240, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=46] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=240, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=240, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=240, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=240, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=240, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=240, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=240, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=240, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=240, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=240, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=240, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=240, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=240, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=240, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=240, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=240, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=240, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=240, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=240, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=240, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=240, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=240, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=240, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=240, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=240, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=240, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=240, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=240, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=240, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=240, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=240, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=240, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=240, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=240, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=240, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=240, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=64] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=240, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=240, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=240, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=240, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=66] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=240, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=240, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=68] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=240, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=240, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=240, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=240, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=70] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=240, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=240, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=240, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=240, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=72] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=240, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=240, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=240, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=240, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=74] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=240, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=240, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=240, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=75] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=76] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:09:11 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=240, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=77] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=78] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=78] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:09:15 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=240, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=240, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=80] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=240, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=80] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":129,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=240, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=81] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=240, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=82] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=240, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=82] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py::test_storm_control_mc_lag_and_vlan_membership | 198.81 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_mc_lag_and_vlan_membership">Starting testcase:test_storm_control_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13567' coro=<test_storm_control_mc_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=240, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=241] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=241] Local address: 172.17.0.4, port 55304 INFO asyncssh:logging.py:92 [conn=241] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=241] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=241] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:09:16 UTC 2087 INFO asyncssh:logging.py:92 [conn=241, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=241, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=241, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=241, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=241, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=241, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=241, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=241, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=241, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=241, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=241, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=241, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=241, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=241, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=241, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=241, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=241, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=241, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=241, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=241, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=241, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=241, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=241, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=241, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=241, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=28] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=241, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=32] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=241, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=36] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=241, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=39] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=40] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=241, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=41] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=43] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=44] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=241, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=241, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=52] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_mc_swp4->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_mc_swp4->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_mc_swp4->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc48e80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 1945966 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 2416926 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=241, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=241, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=241, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=54] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=241, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=57] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=59] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=60] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=241, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=62] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:12:29 UTC 2087 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=241, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=241, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=241, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":130,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":131,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":132,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":106.75,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=241, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=241, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=241, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=241, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=241, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=241, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=69] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=70] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:12:30 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=241, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=71] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=72] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:12:34 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=241, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=241, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=241, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":132,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=241, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=241, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=241, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=76] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_packets.py::test_storm_control_packets | 588.76 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-13655' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_packets">Starting testcase:test_storm_control_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_packets.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=241, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=242] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=242] Local address: 172.17.0.4, port 58016 INFO asyncssh:logging.py:92 [conn=242] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=242] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=242] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:12:34 UTC 2087 INFO asyncssh:logging.py:92 [conn=242, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=242, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=242, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=242, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=242, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=242, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=242, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=242, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=242, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=6] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=242, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=8] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:12:35 UTC 2087 INFO asyncssh:logging.py:92 [conn=242, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=242, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=242, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.5/24 broadcast 192.168.1.255 dev swp33 && ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp34 INFO asyncssh:logging.py:92 [conn=242, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=12] Command: ip address add 192.168.1.5/24 broadcast 192.168.1.255 dev swp33 && ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp34 INFO asyncssh:logging.py:92 [conn=242, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=14] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=242, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=16] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=242, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=16] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO asyncssh:logging.py:92 [conn=242, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=18] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=242, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=20] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=242, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=20] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO asyncssh:logging.py:92 [conn=242, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=22] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=242, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=24] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=242, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=24] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.6/24', 'count': 1, 'ip': '192.168.1.6', 'gw': '192.168.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_192.168.1.7/24', 'count': 1, 'ip': '192.168.1.7', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=242, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=25] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=242, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=26] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=242, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=26] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=242, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=242, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=28] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=242, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.5","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.5","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.6/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_192.168.1.7/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=242, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=29] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=242, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=30] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=242, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=30] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=242, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=31] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=242, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=32] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=242, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=32] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=242, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=33] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=242, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=34] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=242, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=34] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=242, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=35] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=242, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=36] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=242, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=36] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=242, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=37] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=242, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=38] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=242, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=38] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=242, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=39] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=242, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=40] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=242, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=40] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=242, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=41] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=242, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=42] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=242, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=42] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=242, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=43] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=242, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=44] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=242, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=44] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=242, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=46] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=242, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=48] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=242, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO asyncssh:logging.py:92 [conn=242, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=50] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=242, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=52] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=242, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=52] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO asyncssh:logging.py:92 [conn=242, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=54] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=242, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=56] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=242, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=56] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=242, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=57] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=242, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=58] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=242, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=58] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=242, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=59] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=242, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=60] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=242, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=60] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=242, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=61] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=242, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=62] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=242, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=62] Channel closed DEBUG infra1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 203 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=242, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=63] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=242, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=64] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=242, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=64] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=242, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=65] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=242, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=66] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=242, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=66] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=242, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=67] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=242, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=68] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=242, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=68] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=242, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=69] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=242, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=70] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=242, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=70] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=242, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=71] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=242, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=72] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=242, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=72] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=242, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=73] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=242, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=74] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=242, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=74] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=242, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=75] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=76] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=76] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=77] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=78] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=78] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=79] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=80] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=80] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_packets.py INFO asyncssh:logging.py:92 [conn=242, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=81] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=242, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=82] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=242, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=82] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=242, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=83] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=84] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=84] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:22:17 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=242, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=242, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=86] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=242, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=242, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=88] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=242, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=88] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=242, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=242, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=90] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=242, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=90] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=242, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=91] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=92] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:22:17 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py::test_storm_control_rule_set_for_br_and_mc_traffic | 210.49 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_rule_set_for_br_and_mc_traffic">Starting testcase:test_storm_control_rule_set_for_br_and_mc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13759' coro=<test_storm_control_rule_set_for_br_and_mc_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=242, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=243] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=243] Local address: 172.17.0.4, port 58336 INFO asyncssh:logging.py:92 [conn=243] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=243] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=243] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:22:23 UTC 2087 INFO asyncssh:logging.py:92 [conn=243, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=243, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=243, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=243, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=243, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=243, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=243, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 15689 cmode runtime INFO asyncssh:logging.py:92 [conn=243, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=8] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 15689 cmode runtime INFO asyncssh:logging.py:92 [conn=243, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=243, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=10] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=243, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad5831f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 486367 Rx 210523 Frames Delta 275844 Loss 56.715 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 260297 Rx 260296 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 881181 Rx 881179 Frames Delta 2 Loss 0.000 INFO asyncssh:logging.py:92 [conn=243, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=243, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=243, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=243, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=243, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=243, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 27713 cmode runtime INFO asyncssh:logging.py:92 [conn=243, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 27713 cmode runtime INFO asyncssh:logging.py:92 [conn=243, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=243, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=243, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":27713}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad441240>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 1582146 Rx 1153819 Frames Delta 428327 Loss 27.073 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 846744 Rx 737634 Frames Delta 109110 Loss 12.886 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 2866475 Rx 2866474 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=243, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=243, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=20] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=243, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=20] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":27713}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=243, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=243, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=22] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=243, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=243, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=24] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=243, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=243, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=243, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=26] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_rule_set_for_br_and_mc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=243, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:25:48 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=243, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:25:53 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=243, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=243, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=243, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":133,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=243, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=243, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=243, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py::test_storm_control_rule_set_for_br_and_unk_uc_traffic | 210.33 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_rule_set_for_br_and_unk_uc_traffic">Starting testcase:test_storm_control_rule_set_for_br_and_unk_uc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13803' coro=<test_storm_control_rule_set_for_br_and_unk_uc_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=243, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=244] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=244] Local address: 172.17.0.4, port 36972 INFO asyncssh:logging.py:92 [conn=244] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=244] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=244] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:25:54 UTC 2087 INFO asyncssh:logging.py:92 [conn=244, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=244, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=244, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=244, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=244, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=244, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=244, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 21689 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=8] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 21689 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=244, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=10] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=244, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":21689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49accf8400>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 1216896 Rx 766823 Frames Delta 450073 Loss 36.985 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 377975 Rx 377974 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 437656 Rx 437655 Frames Delta 1 Loss 0.000 INFO asyncssh:logging.py:92 [conn=244, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=244, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=244, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=244, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 7229 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 7229 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=244, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=244, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":7229}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acafc190>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 3960798 Rx 3264182 Frames Delta 696616 Loss 17.588 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 1230248 Rx 1230247 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 1424498 Rx 828078 Frames Delta 596420 Loss 41.869 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=244, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=244, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=20] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=244, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=20] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":7229}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=244, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=22] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=24] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=26] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=28] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=30] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=32] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=34] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=36] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=244, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=36] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_rule_set_for_br_and_unk_uc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=244, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=38] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:29:19 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=244, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=40] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:29:24 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=244, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=244, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=244, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":134,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=244, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=244, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=44] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=244, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=44] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py::test_storm_control_unk_un_lag_and_vlan_membership | 201.80 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unk_un_lag_and_vlan_membership">Starting testcase:test_storm_control_unk_un_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13858' coro=<test_storm_control_unk_un_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=244, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=245] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=245] Local address: 172.17.0.4, port 38522 INFO asyncssh:logging.py:92 [conn=245] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=245] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=245] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:29:24 UTC 2087 INFO asyncssh:logging.py:92 [conn=245, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=245, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=245, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=245, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=245, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=245, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=245, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=245, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=245, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=245, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=245, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=245, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=245, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=245, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=245, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=245, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=245, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=245, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=245, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=245, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=245, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=245, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=245, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=245, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=245, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=245, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=245, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=28] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=245, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=245, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=245, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=32] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=245, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=245, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=245, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=36] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=245, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=39] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=245, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=245, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=40] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=245, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=41] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=43] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=245, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=245, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=44] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=245, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=245, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=245, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=245, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=245, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=245, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=52] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_unk_un_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_unk_un_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_unk_un_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad442aa0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 859092 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 744064 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=245, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=245, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=245, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=54] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=245, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=57] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=59] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=245, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=60] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unk_un_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=245, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=62] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:32:41 UTC 2087 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=245, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=245, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=245, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":135,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":136,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":137,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":103.74,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=245, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=245, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=245, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=245, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=245, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=245, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=69] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=70] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:32:41 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=245, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=71] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=72] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:32:46 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=245, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=245, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=245, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":137,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=245, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=245, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=245, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=76] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_unknown_unicast_traffic.py::test_storm_control_unknown_unicast_traffic | 150.54 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unknown_unicast_traffic">Starting testcase:test_storm_control_unknown_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13946' coro=<test_storm_control_unknown_unicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=245, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=246] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=246] Local address: 172.17.0.4, port 39680 INFO asyncssh:logging.py:92 [conn=246] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=246] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=246] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:32:46 UTC 2087 INFO asyncssh:logging.py:92 [conn=246, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=246, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=246, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=246, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=246, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=246, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=246, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=246, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=8] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=246, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=8] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=246, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 23093 cmode runtime INFO asyncssh:logging.py:92 [conn=246, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 23093 cmode runtime INFO asyncssh:logging.py:92 [conn=246, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=246, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=246, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":23093}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acc511e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1098799 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 207192 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 207212 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 207200 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=246, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=246, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=246, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":23093}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=246, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=246, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=246, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=246, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=18] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=246, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=246, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=246, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=246, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=22] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=246, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=22] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unknown_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=246, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:35:12 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=246, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:35:16 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=246, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=246, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=246, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":138,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=246, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=246, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=246, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_unregistered_multicast_traffic.py::test_storm_control_unregistered_multicast_traffic | 150.17 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unregistered_multicast_traffic">Starting testcase:test_storm_control_unregistered_multicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13986' coro=<test_storm_control_unregistered_multicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=246, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=247] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=247] Local address: 172.17.0.4, port 40266 INFO asyncssh:logging.py:92 [conn=247] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=247] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=247] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:35:16 UTC 2087 INFO asyncssh:logging.py:92 [conn=247, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=247, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=247, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=247, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=247, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=247, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=247, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=247, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=8] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=247, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=8] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=247, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 118689 cmode runtime INFO asyncssh:logging.py:92 [conn=247, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 118689 cmode runtime INFO asyncssh:logging.py:92 [conn=247, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=247, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=247, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad0927a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 3577037 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 3576843 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3887159 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3886973 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=247, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=247, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=247, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118689}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=247, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=247, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=247, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=247, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=18] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=247, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=247, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=247, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=247, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=22] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=247, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=22] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unregistered_multicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=247, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=24] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:37:42 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=247, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=26] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:37:46 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=247, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=247, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=247, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":139,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=247, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=247, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=247, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_negative_known_unicast_traffic.py::test_storm_negative_known_unicast_traffic | 174.24 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_negative_known_unicast_traffic">Starting testcase:test_storm_negative_known_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-14026' coro=<test_storm_negative_known_unicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=247, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=248] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=248] Local address: 172.17.0.4, port 36268 INFO asyncssh:logging.py:92 [conn=248] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=248] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=248] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:37:47 UTC 2087 INFO asyncssh:logging.py:92 [conn=248, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=248, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=248, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=248, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=248, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=248, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=248, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge fdb add 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=248, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=8] Command: bridge fdb add 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=248, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=248, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=10] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=248, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=248, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 50420 cmode runtime INFO asyncssh:logging.py:92 [conn=248, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=12] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 50420 cmode runtime INFO asyncssh:logging.py:92 [conn=248, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=248, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=14] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=248, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":50420}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acaffc70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 776495 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 776457 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 6475907 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 6475904 INFO asyncssh:logging.py:92 [conn=248, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge fdb delete 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=248, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=16] Command: bridge fdb delete 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=248, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49ad581570>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 1849161 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2472384 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 6910311 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 6910277 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=248, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=248, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=248, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":50420}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=248, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=248, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=248, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=248, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=248, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=248, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=248, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=248, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=248, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=26] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_negative_known_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=248, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=28] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:40:35 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=248, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=30] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:40:40 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=248, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=248, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=248, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":140,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=248, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=248, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=248, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=34] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_config.py::test_stp_bpdu_guard | 139.41 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14070' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_bpdu_guard">Starting testcase:test_stp_bpdu_guard from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=248, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=249] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=249] Local address: 172.17.0.4, port 50892 INFO asyncssh:logging.py:92 [conn=249] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=249] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=249] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:40:41 UTC 2087 INFO asyncssh:logging.py:92 [conn=249, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=249, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=249, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=249, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=249, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=4] Channel closed DEBUG infra1:Logger.py:156 1089 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=249, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:40:41 UTC 2087 INFO asyncssh:logging.py:92 [conn=249, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=249, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=249, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev br0 up address 22:3f:af:90:6f:3a INFO asyncssh:logging.py:92 [conn=249, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev br0 up address 22:3f:af:90:6f:3a INFO asyncssh:logging.py:92 [conn=249, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=249, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 guard on INFO asyncssh:logging.py:92 [conn=249, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=12] Command: bridge link set dev swp33 guard on INFO asyncssh:logging.py:92 [conn=249, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=249, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -j link show dev swp33 INFO asyncssh:logging.py:92 [conn=249, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=14] Command: bridge -j link show dev swp33 INFO asyncssh:logging.py:92 [conn=249, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"master":"br0","state":"disabled","priority":32,"cost":4}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_bpdu_guard from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=249, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=15] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=249, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=16] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=249, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=249, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=18] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:43:00 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=249, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:43:00 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=249, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=249, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=249, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":141,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:3f:af:90:6f:3a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=249, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=249, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=249, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=24] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_config.py::test_stp_forward_delay | 137.97 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14109' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_forward_delay">Starting testcase:test_stp_forward_delay from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=249, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=250] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=250] Local address: 172.17.0.4, port 39528 INFO asyncssh:logging.py:92 [conn=250] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=250] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=250] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:43:00 UTC 2087 INFO asyncssh:logging.py:92 [conn=250, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=250, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=250, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=250, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=250, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:43:00 UTC 2087 INFO asyncssh:logging.py:92 [conn=250, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 && ip link add br1 type bridge stp_state 1 && ip link add br2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=250, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=8] Command: ip link add br0 type bridge stp_state 1 && ip link add br1 type bridge stp_state 1 && ip link add br2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=250, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 up master br0 && ip link set dev swp7 up master br0 && ip link set dev swp8 up master br1 && ip link set dev swp9 up master br1 && ip link set dev swp10 up master br2 && ip link set dev swp5 up master br2 && ip link set dev br0 up && ip link set dev br1 up && ip link set dev br2 up INFO asyncssh:logging.py:92 [conn=250, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=10] Command: ip link set dev swp6 up master br0 && ip link set dev swp7 up master br0 && ip link set dev swp8 up master br1 && ip link set dev swp9 up master br1 && ip link set dev swp10 up master br2 && ip link set dev swp5 up master br2 && ip link set dev br0 up && ip link set dev br1 up && ip link set dev br2 up INFO asyncssh:logging.py:92 [conn=250, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 80 interval = 10 INFO asyncssh:logging.py:92 [conn=250, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=12] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.96,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":0.06,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.96,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":0.06,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.97,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":0.07,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Expected only 1 root bridge assert 3 == 1 + where 3 = len(['br0', 'br1', 'br2']) INFO asyncssh:logging.py:92 [conn=250, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=14] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":7.33,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.26,"forward_delay_timer":7.39,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":7.17,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.26,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.26,"forward_delay_timer":7.24,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":7.31,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":290.00,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":290.00,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.23,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":290.02,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Expected ports to be 'forwarding' assert False + where False = all([False, False, False, False, False]) INFO asyncssh:logging.py:92 [conn=250, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=16] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":12.46,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.18,"forward_delay_timer":12.45,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":12.20,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.18,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.18,"forward_delay_timer":12.20,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":12.46,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":279.94,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":279.94,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.17,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":279.96,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Expected ports to be 'forwarding' assert False + where False = all([False, False, False, False, False]) INFO asyncssh:logging.py:92 [conn=250, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=18] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":2.39,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.14,"forward_delay_timer":2.39,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":2.14,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.13,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.14,"forward_delay_timer":2.13,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":2.40,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":269.88,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":269.88,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.10,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":269.89,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Expected ports to be 'forwarding' assert False + where False = all([False, False, False, False, False]) INFO asyncssh:logging.py:92 [conn=250, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=20] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.06,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.06,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.06,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.82,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.82,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.05,"tcn_timer":0.00,"topology_change_timer":27.44,"gc_timer":259.84,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 40s INFO asyncssh:logging.py:92 [conn=250, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=22] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.01,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.01,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.76,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.77,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":27.39,"gc_timer":259.78,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=250, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 down INFO asyncssh:logging.py:92 [conn=250, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=24] Command: ip link set dev swp6 down INFO asyncssh:logging.py:92 [conn=250, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 80 interval = 10 INFO asyncssh:logging.py:92 [conn=250, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=26] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.90,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","hold_timer":0.90,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":1,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.93,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.93,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.90,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.96,"tcn_timer":0.00,"topology_change_timer":34.96,"gc_timer":259.67,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.67,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.90,"tcn_timer":0.00,"topology_change_timer":27.29,"gc_timer":259.68,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Expected only 1 root bridge assert 2 == 1 + where 2 = len(['br0', 'br2']) INFO asyncssh:logging.py:92 [conn=250, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=28] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","hold_timer":0.83,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":9.87,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.86,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.84,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.83,"tcn_timer":0.00,"topology_change_timer":24.91,"gc_timer":249.62,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":249.62,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.84,"tcn_timer":0.00,"topology_change_timer":17.24,"gc_timer":249.63,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Expected only 1 root bridge assert 2 == 1 + where 2 = len(['br0', 'br2']) INFO asyncssh:logging.py:92 [conn=250, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=30] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","hold_timer":0.77,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.82,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.78,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.77,"tcn_timer":0.00,"topology_change_timer":14.85,"gc_timer":239.56,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":239.56,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.78,"tcn_timer":0.00,"topology_change_timer":7.18,"gc_timer":239.57,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Expected only 1 root bridge assert 2 == 1 + where 2 = len(['br0', 'br2']) INFO asyncssh:logging.py:92 [conn=250, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=32] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.74,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.72,"message_age_timer":0.00,"forward_delay_timer":5.53,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.74,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.72,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":2,"root_path_cost":8,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":229.50,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":229.50,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.72,"tcn_timer":0.00,"topology_change_timer":26.76,"gc_timer":229.51,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Port swp8 should be 'forwarding' assert 'listening' == 'forwarding' - forwarding + listening INFO asyncssh:logging.py:92 [conn=250, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=34] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.69,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.66,"message_age_timer":0.00,"forward_delay_timer":10.57,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.70,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.66,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":2,"root_path_cost":8,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":219.44,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":219.44,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.66,"tcn_timer":0.00,"topology_change_timer":16.70,"gc_timer":219.45,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Port swp8 should be 'forwarding' assert 'learning' == 'forwarding' - forwarding + learning INFO asyncssh:logging.py:92 [conn=250, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=36] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.62,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.61,"message_age_timer":0.00,"forward_delay_timer":0.52,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.62,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.61,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":2,"root_path_cost":8,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":209.38,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":209.38,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.60,"tcn_timer":0.00,"topology_change_timer":6.64,"gc_timer":209.39,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Port swp8 should be 'forwarding' assert 'learning' == 'forwarding' - forwarding + learning INFO asyncssh:logging.py:92 [conn=250, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=38] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.57,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.54,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.58,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.54,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":2,"root_path_cost":8,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":199.32,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":199.32,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.54,"tcn_timer":0.00,"topology_change_timer":25.57,"gc_timer":199.33,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 60s INFO asyncssh:logging.py:92 [conn=250, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br2 && ip link set dev swp6 up INFO asyncssh:logging.py:92 [conn=250, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=40] Command: ip link set dev br2 && ip link set dev swp6 up INFO asyncssh:logging.py:92 [conn=250, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 40.0 interval = 5 INFO asyncssh:logging.py:92 [conn=250, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=42] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.49,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.46,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.49,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.46,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":2,"root_path_cost":8,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":199.23,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":199.24,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.46,"tcn_timer":0.00,"topology_change_timer":25.49,"gc_timer":199.25,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Expected only 1 blocked port assert 0 == 1 + where 0 = len([]) INFO asyncssh:logging.py:92 [conn=250, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=44] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":12.27,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.44,"forward_delay_timer":12.31,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.40,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.43,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.43,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.40,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":194.18,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":194.18,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.40,"tcn_timer":0.00,"topology_change_timer":33.46,"gc_timer":194.19,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=250, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=46] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.35,"message_age_timer":0.00,"forward_delay_timer":7.21,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.36,"forward_delay_timer":7.26,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.35,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.36,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.36,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.35,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":189.12,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":189.12,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.35,"tcn_timer":0.00,"topology_change_timer":28.41,"gc_timer":189.14,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=250, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=48] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=48] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":2.16,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.31,"forward_delay_timer":2.20,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.30,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.31,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":184.06,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":184.06,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.29,"tcn_timer":0.00,"topology_change_timer":23.35,"gc_timer":184.08,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=250, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=50] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.24,"message_age_timer":0.00,"forward_delay_timer":12.13,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.27,"forward_delay_timer":12.38,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.24,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.26,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.27,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.24,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":179.01,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":179.01,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.24,"tcn_timer":0.00,"topology_change_timer":18.30,"gc_timer":179.02,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=250, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=52] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":7.07,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.21,"forward_delay_timer":7.32,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.20,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.21,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":173.95,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":173.95,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.18,"tcn_timer":0.00,"topology_change_timer":13.24,"gc_timer":173.96,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=250, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=54] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.12,"message_age_timer":0.00,"forward_delay_timer":2.02,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.14,"forward_delay_timer":2.27,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.12,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.14,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.14,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.12,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":168.90,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":168.90,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.12,"tcn_timer":0.00,"topology_change_timer":8.18,"gc_timer":168.91,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=250, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=56] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=250, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.07,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.08,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.07,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.07,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.08,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":163.84,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":163.84,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.07,"tcn_timer":0.00,"topology_change_timer":32.34,"gc_timer":163.86,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 35s -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_forward_delay from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=250, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=57] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=250, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=58] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=250, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=59] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=60] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:45:17 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=250, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=62] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:45:17 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=250, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=250, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=64] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=250, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":142,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":143,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":144,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=250, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 && ip link delete br1 && ip link delete br2 INFO asyncssh:logging.py:92 [conn=250, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=66] Command: ip link delete br0 && ip link delete br1 && ip link delete br2 INFO asyncssh:logging.py:92 [conn=250, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=66] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_config.py::test_stp_max_age | 288.00 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14190' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_max_age">Starting testcase:test_stp_max_age from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=251] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=251] Local address: 172.17.0.4, port 57994 INFO asyncssh:logging.py:92 [conn=251] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=251] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=251] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:45:18 UTC 2087 INFO asyncssh:logging.py:92 [conn=251, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=251, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=251, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=251, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=251, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:45:18 UTC 2087 INFO asyncssh:logging.py:92 [conn=251, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=251, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=251, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 22:6f:ce:fc:1a:69 INFO asyncssh:logging.py:92 [conn=251, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 22:6f:ce:fc:1a:69 INFO asyncssh:logging.py:92 [conn=251, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=251, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=251, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=12] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=251, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.2:4b:d1:b4:58:8e","root_id":"8000.2:4b:d1:b4:58:8e","hold_timer":0.00,"message_age_timer":18.34,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:68:49:31:b6:fc","root_id":"8000.2:4b:d1:b4:58:8e","hold_timer":0.00,"message_age_timer":18.34,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":4,"bridge_id":"8000.22:6f:ce:fc:1a:69","root_id":"8000.2:4b:d1:b4:58:8e","hold_timer":0.16,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":145,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:6f:ce:fc:1a:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:6f:ce:fc:1a:69","root_id":"8000.22:6f:ce:fc:1a:69","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":0.44,"topology_change_timer":0.00,"gc_timer":134.78,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 30 interval = 5 INFO asyncssh:logging.py:92 [conn=251, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=14] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:68:49:31:b6:fc","root_id":"8000.2:4b:d1:b4:58:8e","hold_timer":0.00,"message_age_timer":18.04,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Port swp34 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=251, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=16] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:68:49:31:b6:fc","root_id":"8000.2:4b:d1:b4:58:8e","hold_timer":0.00,"message_age_timer":13.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Port swp34 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=251, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=18] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:68:49:31:b6:fc","root_id":"8000.2:4b:d1:b4:58:8e","hold_timer":0.00,"message_age_timer":7.96,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Port swp34 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=251, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=20] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:68:49:31:b6:fc","root_id":"8000.2:4b:d1:b4:58:8e","hold_timer":0.00,"message_age_timer":2.92,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Port swp34 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=251, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=22] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.22:6f:ce:fc:1a:69","root_id":"8000.22:6f:ce:fc:1a:69","hold_timer":0.71,"message_age_timer":0.00,"forward_delay_timer":14.66,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 20s INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=251, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=251, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=24] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=251, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.2:4b:d1:b4:58:8e","root_id":"8000.2:4b:d1:b4:58:8e","hold_timer":0.00,"message_age_timer":4.35,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:68:49:31:b6:fc","root_id":"8000.2:4b:d1:b4:58:8e","hold_timer":0.00,"message_age_timer":4.35,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":4,"bridge_id":"8000.22:6f:ce:fc:1a:69","root_id":"8000.2:4b:d1:b4:58:8e","hold_timer":0.24,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":145,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:6f:ce:fc:1a:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":600,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:6f:ce:fc:1a:69","root_id":"8000.22:6f:ce:fc:1a:69","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":0.46,"topology_change_timer":0.00,"gc_timer":19.86,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 15.0 interval = 2 INFO asyncssh:logging.py:92 [conn=251, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=26] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:68:49:31:b6:fc","root_id":"8000.2:4b:d1:b4:58:8e","hold_timer":0.00,"message_age_timer":4.95,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 2s Port swp34 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=251, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=28] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:68:49:31:b6:fc","root_id":"8000.2:4b:d1:b4:58:8e","hold_timer":0.00,"message_age_timer":2.92,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 2s Port swp34 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=251, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=30] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:68:49:31:b6:fc","root_id":"8000.2:4b:d1:b4:58:8e","hold_timer":0.00,"message_age_timer":0.88,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 2s Port swp34 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=251, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=32] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=251, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.22:6f:ce:fc:1a:69","root_id":"8000.22:6f:ce:fc:1a:69","hold_timer":0.74,"message_age_timer":0.00,"forward_delay_timer":14.04,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 6s -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_max_age from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=251, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=33] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=251, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=34] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=251, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=36] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:50:05 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=251, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=38] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:50:06 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=251, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=251, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=251, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":145,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:6f:ce:fc:1a:69","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=251, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=251, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=42] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=251, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=42] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_config.py::test_stp_root_guard | 180.83 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14247' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_root_guard">Starting testcase:test_stp_root_guard from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=252] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=252] Local address: 172.17.0.4, port 44498 INFO asyncssh:logging.py:92 [conn=252] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=252] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=252] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:50:06 UTC 2087 INFO asyncssh:logging.py:92 [conn=252, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=252, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=252, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=252, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=252, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:50:06 UTC 2087 INFO asyncssh:logging.py:92 [conn=252, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=252, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=252, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev br0 up address 22:77:1a:d7:06:ac INFO asyncssh:logging.py:92 [conn=252, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev br0 up address 22:77:1a:d7:06:ac INFO asyncssh:logging.py:92 [conn=252, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=252, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=252, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=12] Command: ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=252, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":146,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:77:1a:d7:06:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:77:1a:d7:6:ac","root_id":"8000.22:77:1a:d7:6:ac","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":0.30,"topology_change_timer":0.00,"gc_timer":160.40,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=252, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 root_block on INFO asyncssh:logging.py:92 [conn=252, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=14] Command: bridge link set dev swp33 root_block on INFO asyncssh:logging.py:92 [conn=252, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=252, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=16] Command: ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=252, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":146,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:77:1a:d7:06:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:77:1a:d7:6:ac","root_id":"8000.22:77:1a:d7:6:ac","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":120.22,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_root_guard from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=252, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=17] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=252, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=18] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=252, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=20] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:53:07 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=252, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=22] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:53:07 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=252, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=252, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=252, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":146,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:77:1a:d7:06:ac","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=252, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=252, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=252, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=26] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_convergence.py::test_stp_topology_convergence_with_down_link[stp] | 229.26 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14287' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_topology_convergence_with_down_link[stp]">Starting testcase:test_stp_topology_convergence_with_down_link[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_convergence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=253] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=253] Local address: 172.17.0.4, port 44070 INFO asyncssh:logging.py:92 [conn=253] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=253] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=253] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:53:07 UTC 2087 INFO asyncssh:logging.py:92 [conn=253, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=253, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=253, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=253, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=253, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=253, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:53:07 UTC 2087 INFO asyncssh:logging.py:92 [conn=253, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=253, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=253, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=9] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=253, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=253, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=253, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=12] Command: mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=253, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=253, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=253, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=253, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=253, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=18] Command: ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=253, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=20] Command: ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=253, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=253, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=22] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=253, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=253, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=24] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=253, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=253, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=26] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=253, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp5","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"yes","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"20","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp7","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"yes","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"20","num-rx-bpdu":"4","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=253, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=28] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"20","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp9","bridge":"bridge_2","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3C","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3C","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"21","num-rx-bpdu":"2","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=253, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=29] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=253, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=30] Command: mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=253, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp8","bridge":"bridge_3","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"20","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp10","bridge":"bridge_3","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3C","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3C","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"2","num-rx-bpdu":"19","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"2","num-transition-fwd":"0","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=253, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 down INFO asyncssh:logging.py:92 [conn=253, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=32] Command: ip link set dev swp6 down INFO asyncssh:logging.py:92 [conn=253, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp10 INFO asyncssh:logging.py:92 [conn=253, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=34] Command: ip -j -d link show swp10 INFO asyncssh:logging.py:92 [conn=253, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bridge_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=253, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 down && ip link set dev swp6 up INFO asyncssh:logging.py:92 [conn=253, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=36] Command: ip link set dev swp8 down && ip link set dev swp6 up INFO asyncssh:logging.py:92 [conn=253, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp10 INFO asyncssh:logging.py:92 [conn=253, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=38] Command: ip -j -d link show swp10 INFO asyncssh:logging.py:92 [conn=253, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bridge_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=253, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=253, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=40] Command: ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=253, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=253, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=42] Command: ip link set dev swp33 master bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=253, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=44] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=253, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp33 INFO asyncssh:logging.py:92 [conn=253, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=46] Command: ip -j -d link show swp33 INFO asyncssh:logging.py:92 [conn=253, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bridge_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_topology_convergence_with_down_link[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_convergence.py INFO asyncssh:logging.py:92 [conn=253, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=47] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=253, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=48] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=253, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=49] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=50] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:56:55 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=253, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=253, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=52] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=253, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":147,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":148,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":149,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=253, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=253, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=54] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=253, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=54] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_convergence.py::test_stp_topology_convergence_with_down_link[rstp] | 186.75 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14354' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_topology_convergence_with_down_link[rstp]">Starting testcase:test_stp_topology_convergence_with_down_link[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_convergence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=253, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=254] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=254] Local address: 172.17.0.4, port 41888 INFO asyncssh:logging.py:92 [conn=254] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=254] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=254] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:56:56 UTC 2087 INFO asyncssh:logging.py:92 [conn=254, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=254, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=254, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=254, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=254, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=254, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=6] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 16 23:56:56 UTC 2087 INFO asyncssh:logging.py:92 [conn=254, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=254, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=254, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=9] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=254, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=254, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=254, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=12] Command: mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=254, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=254, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=254, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=254, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=254, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=254, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=18] Command: ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=254, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=254, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=20] Command: ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=254, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=254, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=22] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=254, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=254, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=24] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=254, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=254, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=26] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=254, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp5","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"12","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp7","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"5","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=254, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=254, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=28] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=254, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"12","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"4","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp9","bridge":"bridge_2","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3C","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3C","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"12","num-rx-bpdu":"4","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=254, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=29] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=254, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=30] Command: mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=254, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp8","bridge":"bridge_3","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"10","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp10","bridge":"bridge_3","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3C","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3C","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"4","num-transition-fwd":"0","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=254, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 down INFO asyncssh:logging.py:92 [conn=254, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=32] Command: ip link set dev swp6 down INFO asyncssh:logging.py:92 [conn=254, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp10 INFO asyncssh:logging.py:92 [conn=254, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=34] Command: ip -j -d link show swp10 INFO asyncssh:logging.py:92 [conn=254, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bridge_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=254, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 down && ip link set dev swp6 up INFO asyncssh:logging.py:92 [conn=254, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=36] Command: ip link set dev swp8 down && ip link set dev swp6 up INFO asyncssh:logging.py:92 [conn=254, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp10 INFO asyncssh:logging.py:92 [conn=254, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=38] Command: ip -j -d link show swp10 INFO asyncssh:logging.py:92 [conn=254, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bridge_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=254, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=254, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=40] Command: ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=254, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 60 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=254, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bridge_2 INFO asyncssh:logging.py:92 [conn=254, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=42] Command: ip link set dev swp33 master bridge_2 INFO asyncssh:logging.py:92 [conn=254, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=254, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=44] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=254, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp33 INFO asyncssh:logging.py:92 [conn=254, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=46] Command: ip -j -d link show swp33 INFO asyncssh:logging.py:92 [conn=254, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bridge_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_topology_convergence_with_down_link[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_convergence.py INFO asyncssh:logging.py:92 [conn=254, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=47] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=254, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=48] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=254, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=49] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=50] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 00:00:02 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=254, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=254, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=52] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=254, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":150,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":151,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":152,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=254, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=254, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=54] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=254, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=54] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_rstp_config.py::test_stp_hello_time[stp] | 141.22 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14668' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_hello_time[stp]">Starting testcase:test_stp_hello_time[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=260, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=261] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=261] Local address: 172.17.0.4, port 54330 INFO asyncssh:logging.py:92 [conn=261] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=261] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=261] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:54:00 UTC 2087 INFO asyncssh:logging.py:92 [conn=261, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=261, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=261, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=261, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=261, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=261, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:54:00 UTC 2087 INFO asyncssh:logging.py:92 [conn=261, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=261, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=261, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=261, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=261, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=261, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=261, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=261, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=14] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=261, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 30 tcpdump -i swp33 -n llc on infra1... INFO asyncssh:logging.py:92 [conn=261, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=15] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=261, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=16] Command: echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=261, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=16] Channel closed DEBUG infra1:Logger.py:156 01:54:41.697901 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:54:43.698572 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:54:45.698477 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:54:47.698411 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:54:49.698678 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:54:51.698089 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:54:53.697938 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:54:55.698040 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:54:57.698040 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:54:59.698783 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:55:01.698466 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:55:03.697987 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:55:05.697935 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:55:07.698492 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:55:09.698750 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 15 packets captured 15 packets received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=261, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=17] Channel closed DEBUG infra1:Logger.py:156 mstpctl sethello br0 1 INFO asyncssh:logging.py:92 [conn=261, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=18] Command: mstpctl sethello br0 1 INFO asyncssh:logging.py:92 [conn=261, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 30 tcpdump -i swp33 -n llc on infra1... INFO asyncssh:logging.py:92 [conn=261, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=261, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=20] Command: echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=261, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=20] Channel closed DEBUG infra1:Logger.py:156 01:55:51.697900 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:55:52.697903 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:55:53.697985 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:55:54.698520 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:55:55.698585 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:55:56.698771 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:55:57.698859 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:55:58.698012 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:55:59.698089 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:00.698692 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:01.698756 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:02.697904 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:03.697988 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:04.698463 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:05.698522 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:06.697894 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:07.697974 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:08.698061 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:09.698128 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:10.698062 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:11.698135 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:12.698553 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:13.698628 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:14.698016 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:15.698088 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:16.697895 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:17.697969 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:18.698116 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:19.698193 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 01:56:20.697889 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 30 packets captured 30 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_hello_time[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py INFO asyncssh:logging.py:92 [conn=261, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=21] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=261, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=22] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=261, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=261, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=24] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:56:21 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=261, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=26] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:56:21 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=261, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=261, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=261, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":159,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=261, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=261, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=261, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_rstp_config.py::test_stp_hello_time[rstp] | 101.23 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14713' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_hello_time[rstp]">Starting testcase:test_stp_hello_time[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=261, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=262] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=262] Local address: 172.17.0.4, port 36310 INFO asyncssh:logging.py:92 [conn=262] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=262] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=262] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:56:22 UTC 2087 INFO asyncssh:logging.py:92 [conn=262, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=262, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=262, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=262, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=262, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=262, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:56:22 UTC 2087 INFO asyncssh:logging.py:92 [conn=262, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=262, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=262, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=262, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=262, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=262, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=262, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=262, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=14] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=262, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 30 tcpdump -i swp33 -n llc on infra1... INFO asyncssh:logging.py:92 [conn=262, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=15] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=262, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=16] Command: echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=262, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=16] Channel closed DEBUG infra1:Logger.py:156 01:56:43.697930 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:56:45.698391 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:56:47.698774 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:56:49.698411 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:56:51.697983 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:56:53.698184 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:56:55.698631 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:56:57.698727 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:56:59.698291 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:01.698117 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:03.697935 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:05.698365 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:07.698651 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:09.698250 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:11.698753 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 15 packets captured 15 packets received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=262, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=17] Channel closed DEBUG infra1:Logger.py:156 mstpctl sethello br0 1 INFO asyncssh:logging.py:92 [conn=262, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=18] Command: mstpctl sethello br0 1 INFO asyncssh:logging.py:92 [conn=262, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 30 tcpdump -i swp33 -n llc on infra1... INFO asyncssh:logging.py:92 [conn=262, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=262, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=20] Command: echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=262, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=20] Channel closed DEBUG infra1:Logger.py:156 01:57:32.697897 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:33.697985 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:34.698046 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:35.698105 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:36.698382 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:37.698467 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:38.698461 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:39.698523 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:40.697988 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:41.698053 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:42.698711 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:43.698792 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:44.698085 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:45.698134 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:46.698567 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:47.698638 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:48.698271 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:49.698330 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:50.698369 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:51.698427 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:52.698052 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:53.698143 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:54.698417 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:55.698485 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:56.698163 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:57.698228 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:58.698519 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:57:59.698586 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:58:00.698136 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 01:58:01.698183 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 30 packets captured 30 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_hello_time[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py INFO asyncssh:logging.py:92 [conn=262, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=21] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=262, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=22] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=262, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=262, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=24] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:58:02 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=262, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=26] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:58:03 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=262, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=262, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=262, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":160,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=262, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=262, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=262, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=30] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_select_root.py::test_stp_select_root_bridge[stp] | 82.62 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14758' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_bridge[stp]">Starting testcase:test_stp_select_root_bridge[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=262, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=263] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=263] Local address: 172.17.0.4, port 40096 INFO asyncssh:logging.py:92 [conn=263] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=263] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=263] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:58:03 UTC 2087 INFO asyncssh:logging.py:92 [conn=263, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=263, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=263, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=263, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=263, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=263, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:58:03 UTC 2087 INFO asyncssh:logging.py:92 [conn=263, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=263, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=263, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=9] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=263, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=263, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=263, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=12] Command: mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=263, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=263, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=263, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=263, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=263, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=263, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=18] Command: ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=263, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=263, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=20] Command: ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=263, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 address 44:DD:D2:85:22:A4 INFO asyncssh:logging.py:92 [conn=263, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=22] Command: ip link set dev bridge_1 address 44:DD:D2:85:22:A4 INFO asyncssh:logging.py:92 [conn=263, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_2 address 22:67:05:4B:CC:25 INFO asyncssh:logging.py:92 [conn=263, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=24] Command: ip link set dev bridge_2 address 22:67:05:4B:CC:25 INFO asyncssh:logging.py:92 [conn=263, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_3 address 00:97:03:21:D9:68 INFO asyncssh:logging.py:92 [conn=263, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=26] Command: ip link set dev bridge_3 address 00:97:03:21:D9:68 INFO asyncssh:logging.py:92 [conn=263, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=263, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=28] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=263, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=263, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=30] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=263, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=31] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_1 0 2 INFO asyncssh:logging.py:92 [conn=263, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=32] Command: mstpctl settreeprio bridge_1 0 2 INFO asyncssh:logging.py:92 [conn=263, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=33] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_2 0 3 INFO asyncssh:logging.py:92 [conn=263, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=34] Command: mstpctl settreeprio bridge_2 0 3 INFO asyncssh:logging.py:92 [conn=263, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=35] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_3 0 4 INFO asyncssh:logging.py:92 [conn=263, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=36] Command: mstpctl settreeprio bridge_3 0 4 INFO asyncssh:logging.py:92 [conn=263, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=37] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=263, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=38] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=263, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"2.000.44:DD:D2:85:22:A4","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"2.000.44:DD:D2:85:22:A4","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"swp5","last-topology-change-port":"swp7"}] INFO asyncssh:logging.py:92 [conn=263, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=39] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=263, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=40] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=263, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"3.000.22:67:05:4B:CC:25","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"3.000.22:67:05:4B:CC:25","root-port":"swp6 (#2)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"swp6","last-topology-change-port":"swp9"}] INFO asyncssh:logging.py:92 [conn=263, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=41] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=263, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=42] Command: mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=263, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_3","enabled":"yes","bridge-id":"4.000.00:97:03:21:D9:68","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"4.000.00:97:03:21:D9:68","root-port":"swp8 (#1)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"swp8"}] INFO asyncssh:logging.py:92 [conn=263, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=43] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=263, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=44] Command: mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=263, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp8","bridge":"bridge_3","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"2.000.44:DD:D2:85:22:A4","dsgn-external-cost":"0","dsgn-regional-root":"2.000.44:DD:D2:85:22:A4","dsgn-internal-cost":"0","designated-bridge":"2.000.44:DD:D2:85:22:A4","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"20","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp10","bridge":"bridge_3","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"2.000.44:DD:D2:85:22:A4","dsgn-external-cost":"20000","dsgn-regional-root":"3.000.22:67:05:4B:CC:25","dsgn-internal-cost":"0","designated-bridge":"3.000.22:67:05:4B:CC:25","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"22","num-rx-bpdu-filtered":"0","num-tx-tcn":"1","num-rx-tcn":"3","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"yes","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=263, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=45] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=263, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=46] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=263, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"2.000.44:DD:D2:85:22:A4","dsgn-external-cost":"0","dsgn-regional-root":"2.000.44:DD:D2:85:22:A4","dsgn-internal-cost":"0","designated-bridge":"2.000.44:DD:D2:85:22:A4","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"19","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp9","bridge":"bridge_2","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"2.000.44:DD:D2:85:22:A4","dsgn-external-cost":"20000","dsgn-regional-root":"3.000.22:67:05:4B:CC:25","dsgn-internal-cost":"0","designated-bridge":"3.000.22:67:05:4B:CC:25","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"22","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"1","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=263, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=47] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_3 0 1 INFO asyncssh:logging.py:92 [conn=263, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=48] Command: mstpctl settreeprio bridge_3 0 1 INFO asyncssh:logging.py:92 [conn=263, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=49] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=263, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=50] Command: mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=263, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_3","enabled":"yes","bridge-id":"1.000.00:97:03:21:D9:68","designated-root":"1.000.00:97:03:21:D9:68","regional-root":"1.000.00:97:03:21:D9:68","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"2","topology-change":"yes","topology-change-port":"swp8","last-topology-change-port":"swp10"}] INFO asyncssh:logging.py:92 [conn=263, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=51] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=263, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=52] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=263, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"2.000.44:DD:D2:85:22:A4","designated-root":"1.000.00:97:03:21:D9:68","regional-root":"2.000.44:DD:D2:85:22:A4","root-port":"swp7 (#2)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"2","topology-change":"yes","topology-change-port":"swp7","last-topology-change-port":"swp5"}] INFO asyncssh:logging.py:92 [conn=263, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=53] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=263, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=54] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=263, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"1.000.00:97:03:21:D9:68","dsgn-external-cost":"20000","dsgn-regional-root":"2.000.44:DD:D2:85:22:A4","dsgn-internal-cost":"0","designated-bridge":"2.000.44:DD:D2:85:22:A4","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"6","num-rx-bpdu":"40","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"22","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp9","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"1.000.00:97:03:21:D9:68","dsgn-external-cost":"0","dsgn-regional-root":"1.000.00:97:03:21:D9:68","dsgn-internal-cost":"0","designated-bridge":"1.000.00:97:03:21:D9:68","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"38","num-rx-bpdu":"24","num-rx-bpdu-filtered":"0","num-tx-tcn":"19","num-rx-tcn":"7","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=263, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=55] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=263, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=56] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=263, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp5","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"1.000.00:97:03:21:D9:68","dsgn-external-cost":"20000","dsgn-regional-root":"2.000.44:DD:D2:85:22:A4","dsgn-internal-cost":"0","designated-bridge":"2.000.44:DD:D2:85:22:A4","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"42","num-rx-bpdu":"6","num-rx-bpdu-filtered":"0","num-tx-tcn":"23","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp7","bridge":"bridge_1","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"1.000.00:97:03:21:D9:68","dsgn-external-cost":"0","dsgn-regional-root":"1.000.00:97:03:21:D9:68","dsgn-internal-cost":"0","designated-bridge":"1.000.00:97:03:21:D9:68","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"21","num-rx-bpdu":"25","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"20","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_bridge[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=263, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=57] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=263, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=58] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=263, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=263, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=59] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=60] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:59:24 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=263, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=62] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:59:25 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=263, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=263, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=64] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=263, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":161,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:dd:d2:85:22:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":162,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:67:05:4b:cc:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":163,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"00:97:03:21:d9:68","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=263, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=263, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=66] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=263, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=66] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_select_root.py::test_stp_select_root_bridge[rstp] | 42.48 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14839' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_bridge[rstp]">Starting testcase:test_stp_select_root_bridge[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=263, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=264] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=264] Local address: 172.17.0.4, port 40030 INFO asyncssh:logging.py:92 [conn=264] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=264] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=264] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:59:25 UTC 2087 INFO asyncssh:logging.py:92 [conn=264, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=264, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=264, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=264, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=264, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=264, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 01:59:26 UTC 2087 INFO asyncssh:logging.py:92 [conn=264, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=264, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=264, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=9] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=264, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=264, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=264, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=12] Command: mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=264, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=264, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=264, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=264, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=264, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=264, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=18] Command: ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=264, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=264, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=20] Command: ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=264, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 address 44:DD:D2:85:22:A4 INFO asyncssh:logging.py:92 [conn=264, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=22] Command: ip link set dev bridge_1 address 44:DD:D2:85:22:A4 INFO asyncssh:logging.py:92 [conn=264, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_2 address 22:67:05:4B:CC:25 INFO asyncssh:logging.py:92 [conn=264, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=24] Command: ip link set dev bridge_2 address 22:67:05:4B:CC:25 INFO asyncssh:logging.py:92 [conn=264, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_3 address 00:97:03:21:D9:68 INFO asyncssh:logging.py:92 [conn=264, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=26] Command: ip link set dev bridge_3 address 00:97:03:21:D9:68 INFO asyncssh:logging.py:92 [conn=264, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=264, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=28] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=264, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=264, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=30] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=264, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=31] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_1 0 2 INFO asyncssh:logging.py:92 [conn=264, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=32] Command: mstpctl settreeprio bridge_1 0 2 INFO asyncssh:logging.py:92 [conn=264, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=33] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_2 0 3 INFO asyncssh:logging.py:92 [conn=264, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=34] Command: mstpctl settreeprio bridge_2 0 3 INFO asyncssh:logging.py:92 [conn=264, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=35] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_3 0 4 INFO asyncssh:logging.py:92 [conn=264, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=36] Command: mstpctl settreeprio bridge_3 0 4 INFO asyncssh:logging.py:92 [conn=264, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=37] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=264, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=38] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=264, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"2.000.44:DD:D2:85:22:A4","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"2.000.44:DD:D2:85:22:A4","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"11","topology-change-count":"1","topology-change":"no","topology-change-port":"swp5","last-topology-change-port":"swp7"}] INFO asyncssh:logging.py:92 [conn=264, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=39] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=264, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=40] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=264, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"3.000.22:67:05:4B:CC:25","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"3.000.22:67:05:4B:CC:25","root-port":"swp6 (#2)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"11","topology-change-count":"1","topology-change":"no","topology-change-port":"swp6","last-topology-change-port":"swp9"}] INFO asyncssh:logging.py:92 [conn=264, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=41] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=264, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=42] Command: mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=264, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_3","enabled":"yes","bridge-id":"4.000.00:97:03:21:D9:68","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"4.000.00:97:03:21:D9:68","root-port":"swp8 (#1)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"15","topology-change-count":"1","topology-change":"no","topology-change-port":"swp8","last-topology-change-port":"swp10"}] INFO asyncssh:logging.py:92 [conn=264, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=43] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=264, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=44] Command: mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=264, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp8","bridge":"bridge_3","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"2.000.44:DD:D2:85:22:A4","dsgn-external-cost":"0","dsgn-regional-root":"2.000.44:DD:D2:85:22:A4","dsgn-internal-cost":"0","designated-bridge":"2.000.44:DD:D2:85:22:A4","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"12","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"4","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp10","bridge":"bridge_3","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"2.000.44:DD:D2:85:22:A4","dsgn-external-cost":"20000","dsgn-regional-root":"3.000.22:67:05:4B:CC:25","dsgn-internal-cost":"0","designated-bridge":"3.000.22:67:05:4B:CC:25","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"14","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"6","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=264, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=45] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=264, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=46] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=264, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"2.000.44:DD:D2:85:22:A4","dsgn-external-cost":"0","dsgn-regional-root":"2.000.44:DD:D2:85:22:A4","dsgn-internal-cost":"0","designated-bridge":"2.000.44:DD:D2:85:22:A4","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"10","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp9","bridge":"bridge_2","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"2.000.44:DD:D2:85:22:A4","dsgn-external-cost":"20000","dsgn-regional-root":"3.000.22:67:05:4B:CC:25","dsgn-internal-cost":"0","designated-bridge":"3.000.22:67:05:4B:CC:25","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"14","num-rx-bpdu":"5","num-rx-bpdu-filtered":"0","num-tx-tcn":"6","num-rx-tcn":"2","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=264, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=47] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_3 0 1 INFO asyncssh:logging.py:92 [conn=264, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=48] Command: mstpctl settreeprio bridge_3 0 1 INFO asyncssh:logging.py:92 [conn=264, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=49] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=264, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=50] Command: mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=264, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_3","enabled":"yes","bridge-id":"1.000.00:97:03:21:D9:68","designated-root":"1.000.00:97:03:21:D9:68","regional-root":"1.000.00:97:03:21:D9:68","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"16","topology-change-count":"2","topology-change":"no","topology-change-port":"swp10","last-topology-change-port":"swp8"}] INFO asyncssh:logging.py:92 [conn=264, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=51] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=264, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=52] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=264, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"2.000.44:DD:D2:85:22:A4","designated-root":"1.000.00:97:03:21:D9:68","regional-root":"2.000.44:DD:D2:85:22:A4","root-port":"swp7 (#2)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"16","topology-change-count":"2","topology-change":"no","topology-change-port":"swp7","last-topology-change-port":"swp5"}] INFO asyncssh:logging.py:92 [conn=264, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=53] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=264, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=54] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=264, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"1.000.00:97:03:21:D9:68","dsgn-external-cost":"20000","dsgn-regional-root":"2.000.44:DD:D2:85:22:A4","dsgn-internal-cost":"0","designated-bridge":"2.000.44:DD:D2:85:22:A4","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"7","num-rx-bpdu":"21","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"4","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp9","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"1.000.00:97:03:21:D9:68","dsgn-external-cost":"0","dsgn-regional-root":"1.000.00:97:03:21:D9:68","dsgn-internal-cost":"0","designated-bridge":"1.000.00:97:03:21:D9:68","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"15","num-rx-bpdu":"16","num-rx-bpdu-filtered":"0","num-tx-tcn":"6","num-rx-tcn":"4","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=264, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=55] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=264, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=56] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=264, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp5","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"1.000.00:97:03:21:D9:68","dsgn-external-cost":"20000","dsgn-regional-root":"2.000.44:DD:D2:85:22:A4","dsgn-internal-cost":"0","designated-bridge":"2.000.44:DD:D2:85:22:A4","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"22","num-rx-bpdu":"7","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp7","bridge":"bridge_1","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"1.000.00:97:03:21:D9:68","dsgn-external-cost":"0","dsgn-regional-root":"1.000.00:97:03:21:D9:68","dsgn-internal-cost":"0","designated-bridge":"1.000.00:97:03:21:D9:68","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"13","num-rx-bpdu":"15","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"5","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_bridge[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=264, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=57] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=264, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=58] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=264, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=264, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=59] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=60] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:00:07 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=264, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=62] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:00:07 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=264, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=264, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=64] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=264, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":164,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:dd:d2:85:22:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":165,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:67:05:4b:cc:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":166,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"00:97:03:21:d9:68","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=264, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=264, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=66] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=264, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=66] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_select_root.py::test_stp_select_root_port[stp] | 81.84 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14920' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_port[stp]">Starting testcase:test_stp_select_root_port[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=264, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=265] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=265] Local address: 172.17.0.4, port 46700 INFO asyncssh:logging.py:92 [conn=265] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=265] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=265] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=265, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:00:08 UTC 2087 INFO asyncssh:logging.py:92 [conn=265, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=265, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=265, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=265, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=265, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=265, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=265, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:00:08 UTC 2087 INFO asyncssh:logging.py:92 [conn=265, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=265, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=265, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=9] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=265, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=265, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp INFO asyncssh:logging.py:92 [conn=265, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=12] Command: mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp INFO asyncssh:logging.py:92 [conn=265, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=265, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=265, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=265, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=265, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 master bridge_2 && ip link set dev swp8 master bridge_2 INFO asyncssh:logging.py:92 [conn=265, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=18] Command: ip link set dev swp6 master bridge_2 && ip link set dev swp8 master bridge_2 INFO asyncssh:logging.py:92 [conn=265, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 address 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=265, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=20] Command: ip link set dev bridge_1 address 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=265, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_2 address 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=265, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=22] Command: ip link set dev bridge_2 address 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=265, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=265, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=24] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=265, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=265, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=26] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=265, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=265, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=28] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=265, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"swp7","last-topology-change-port":"swp5"}] INFO asyncssh:logging.py:92 [conn=265, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=29] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=265, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=30] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=265, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"swp6 (#1)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"swp6"}] INFO asyncssh:logging.py:92 [conn=265, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=31] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=265, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=32] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=265, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"20","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp8","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"2","num-rx-bpdu":"19","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"2","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=265, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=33] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeportprio bridge_1 swp7 0 7 INFO asyncssh:logging.py:92 [conn=265, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=34] Command: mstpctl settreeportprio bridge_1 swp7 0 7 INFO asyncssh:logging.py:92 [conn=265, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=35] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=265, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=36] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=265, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"40","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"18","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp8","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"7.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"40","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"22","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_port[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=265, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=37] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=265, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=38] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=265, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=265, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=265, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=40] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:01:29 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=265, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=41] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=265, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=42] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:01:29 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=265, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=265, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=44] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=265, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":167,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":168,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=265, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=265, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=46] Command: ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=265, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=46] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_select_root.py::test_stp_select_root_port[rstp] | 41.84 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14981' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_port[rstp]">Starting testcase:test_stp_select_root_port[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=265, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=266] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=266] Local address: 172.17.0.4, port 34534 INFO asyncssh:logging.py:92 [conn=266] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=266] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=266] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=266, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:01:30 UTC 2087 INFO asyncssh:logging.py:92 [conn=266, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=266, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=266, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=266, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=266, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=266, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=266, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:01:30 UTC 2087 INFO asyncssh:logging.py:92 [conn=266, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=266, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=266, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=9] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=266, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=266, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp INFO asyncssh:logging.py:92 [conn=266, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=12] Command: mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp INFO asyncssh:logging.py:92 [conn=266, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=266, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=266, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=266, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=266, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 master bridge_2 && ip link set dev swp8 master bridge_2 INFO asyncssh:logging.py:92 [conn=266, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=18] Command: ip link set dev swp6 master bridge_2 && ip link set dev swp8 master bridge_2 INFO asyncssh:logging.py:92 [conn=266, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 address 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=266, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=20] Command: ip link set dev bridge_1 address 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=266, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_2 address 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=266, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=22] Command: ip link set dev bridge_2 address 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=266, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=266, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=24] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=266, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=266, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=26] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=266, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=266, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=28] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=266, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"11","topology-change-count":"1","topology-change":"no","topology-change-port":"swp5","last-topology-change-port":"swp7"}] INFO asyncssh:logging.py:92 [conn=266, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=29] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=266, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=30] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=266, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"swp6 (#1)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"13","topology-change-count":"2","topology-change":"no","topology-change-port":"swp8","last-topology-change-port":"swp6"}] INFO asyncssh:logging.py:92 [conn=266, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=31] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=266, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=32] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=266, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"6","num-rx-bpdu":"10","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp8","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"12","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"4","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=266, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=33] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeportprio bridge_1 swp7 0 7 INFO asyncssh:logging.py:92 [conn=266, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=34] Command: mstpctl settreeportprio bridge_1 swp7 0 7 INFO asyncssh:logging.py:92 [conn=266, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=35] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=266, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=36] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=266, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"6","num-rx-bpdu":"21","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"4","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp8","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"7.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"6","num-rx-bpdu":"23","num-rx-bpdu-filtered":"0","num-tx-tcn":"5","num-rx-tcn":"4","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_port[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=266, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=37] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=266, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=38] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=266, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=266, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=266, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=40] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:02:11 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=266, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=41] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=266, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=42] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:02:11 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=266, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=266, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=44] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=266, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":169,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":170,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=266, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=266, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=46] Command: ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=266, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=46] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_select_root.py::test_stp_select_root_port_on_cost[rstp] | 272.44 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15177' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_port_on_cost[rstp]">Starting testcase:test_stp_select_root_port_on_cost[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=269, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=270] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=270] Local address: 172.17.0.4, port 33128 INFO asyncssh:logging.py:92 [conn=270] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=270] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=270] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=270, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:23:12 UTC 2087 INFO asyncssh:logging.py:92 [conn=270, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=270, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=270, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=270, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=270, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=270, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=270, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:23:12 UTC 2087 INFO asyncssh:logging.py:92 [conn=270, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=270, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=270, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=270, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=270, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=270, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=12] Command: ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=270, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=270, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=270, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=270, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=16] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=270, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=270, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=270, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=270, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=270, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=270, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=270, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=270, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:AA:4D:A8:6D","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:AA:4D:A8:6D","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:AA:4D:A8:6D","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"86","num-rx-bpdu":"16","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:AA:4D:A8:6D","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:66:A0:1B:8A:53","dsgn-internal-cost":"0","designated-bridge":"8.000.00:66:A0:1B:8A:53","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"83","num-rx-bpdu":"16","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:AA:4D:A8:6D","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"73","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:AA:4D:A8:6D","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"72","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca3e1d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 14 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 14 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 1020965 Rx 1020963 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 1020964 Rx 668 Loss 99.935 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 1020964 Rx 1020963 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=270, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=23] Channel closed DEBUG infra1:Logger.py:156 mstpctl setportpathcost br0 swp34 16 INFO asyncssh:logging.py:92 [conn=270, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=24] Command: mstpctl setportpathcost br0 swp34 16 INFO asyncssh:logging.py:92 [conn=270, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=270, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=26] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=270, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:98","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"97","num-rx-bpdu":"19","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"0","num-transition-fwd":"4","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"16","internal-port-cost":"20000","admin-external-cost":"16","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:98","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"96","num-rx-bpdu":"19","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"4","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:98","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"85","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:98","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"84","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca3e9b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 16 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 16 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 1168232 Rx 1307 Loss 99.888 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 1168232 Rx 1166285 Loss 0.167 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 1168232 Rx 1168230 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_port_on_cost[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=270, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=27] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=270, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=28] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=270, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=270, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=270, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=30] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:27:44 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=270, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=270, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=32] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:27:44 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=270, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=270, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=270, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":174,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:bb:4d:85:e7:98","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=270, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=270, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=270, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=36] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_with_traffic.py::test_stp_traffic_during_mode_change[stp] | 394.17 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15228' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_traffic_during_mode_change[stp]">Starting testcase:test_stp_traffic_during_mode_change[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_with_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=270, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=271] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=271] Local address: 172.17.0.4, port 37094 INFO asyncssh:logging.py:92 [conn=271] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=271] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=271] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=271, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:27:45 UTC 2087 INFO asyncssh:logging.py:92 [conn=271, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=271, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=271, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=271, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=271, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=271, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=271, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:27:45 UTC 2087 INFO asyncssh:logging.py:92 [conn=271, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=271, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=271, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=271, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=271, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=271, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=12] Command: ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=271, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=271, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=271, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=271, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=16] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=271, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=271, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=271, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=271, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=271, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=271, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=271, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=271, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:F9:29:87:A0","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:F9:29:87:A0","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:F9:29:87:A0","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"69","num-rx-bpdu":"35","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:F9:29:87:A0","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:48:B9:D6:9E:20","dsgn-internal-cost":"0","designated-bridge":"8.000.22:48:B9:D6:9E:20","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"67","num-rx-bpdu":"35","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:F9:29:87:A0","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"82","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:F9:29:87:A0","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"81","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf3fd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 stp SIP-DIP Tx 74 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 stp SIP-DIP Tx 74 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 5414741 Rx 5414740 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 5414741 Rx 698 Loss 99.987 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 5414741 Rx 5414740 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:11:01:00:00:01 Tx 5414741 Rx 5414740 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:12:01:00:00:01 Tx 5414741 Rx 698 Loss 99.987 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:13:01:00:00:01 Tx 5414741 Rx 5414740 Loss 0.000 INFO asyncssh:logging.py:92 [conn=271, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=23] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=271, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=24] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=271, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=271, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=26] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=271, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:F9:29:87:A0","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:F9:29:87:A0","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:F9:29:87:A0","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"74","num-rx-bpdu":"118","num-rx-bpdu-filtered":"0","num-tx-tcn":"21","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:F9:29:87:A0","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:48:B9:D6:9E:20","dsgn-internal-cost":"0","designated-bridge":"8.000.22:48:B9:D6:9E:20","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"71","num-rx-bpdu":"118","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:F9:29:87:A0","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"127","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:F9:29:87:A0","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"125","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca1d6c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 stp SIP-DIP Tx 156 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 stp SIP-DIP Tx 156 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 11420601 Rx 11143857 Loss 2.423 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 11420601 Rx 698 Loss 99.994 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 11420601 Rx 11203431 Loss 1.902 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:11:01:00:00:01 Tx 11420601 Rx 11094188 Loss 2.858 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:12:01:00:00:01 Tx 11420601 Rx 698 Loss 99.994 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:13:01:00:00:01 Tx 11420601 Rx 11203432 Loss 1.902 INFO asyncssh:logging.py:92 [conn=271, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=271, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=28] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=271, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=28] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_traffic_during_mode_change[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_with_traffic.py INFO asyncssh:logging.py:92 [conn=271, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=29] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=271, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=30] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=271, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=271, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=271, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=32] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:34:18 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=271, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=271, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=34] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:34:18 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=271, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=271, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=271, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":175,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:bb:4d:85:e7:98","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=271, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=271, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=38] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=271, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=38] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_with_traffic.py::test_stp_traffic_during_mode_change[rstp] | 298.85 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15281' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_traffic_during_mode_change[rstp]">Starting testcase:test_stp_traffic_during_mode_change[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_with_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=271, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=272] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=272] Local address: 172.17.0.4, port 39364 INFO asyncssh:logging.py:92 [conn=272] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=272] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=272] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=272, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:34:19 UTC 2087 INFO asyncssh:logging.py:92 [conn=272, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=272, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=272, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=272, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=272, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=272, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=272, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:34:19 UTC 2087 INFO asyncssh:logging.py:92 [conn=272, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=272, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=272, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=272, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=272, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=272, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=12] Command: ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=272, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=272, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=272, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=272, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=16] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=272, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=272, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=272, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=272, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=272, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=272, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=272, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=272, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:BF:7F:97:38","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:BF:7F:97:38","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:BF:7F:97:38","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"87","num-rx-bpdu":"15","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:BF:7F:97:38","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:49:4B:5D:D7:FA","dsgn-internal-cost":"0","designated-bridge":"8.000.22:49:4B:5D:D7:FA","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"84","num-rx-bpdu":"15","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:BF:7F:97:38","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"74","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:BF:7F:97:38","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"72","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acafdd80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 34 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 34 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 2485332 Rx 2456702 Loss 1.152 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 2485332 Rx 2456 Loss 99.901 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 2485331 Rx 2485330 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:11:01:00:00:01 Tx 2485332 Rx 2436524 Loss 1.964 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:12:01:00:00:01 Tx 2485332 Rx 2456 Loss 99.901 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:13:01:00:00:01 Tx 2485331 Rx 2485330 Loss 0.000 INFO asyncssh:logging.py:92 [conn=272, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=23] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=272, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=24] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=272, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=272, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=26] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=272, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"learning","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:BF:7F:97:38","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:BF:7F:97:38","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:BF:7F:97:38","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"133","num-rx-bpdu":"58","num-rx-bpdu-filtered":"0","num-tx-tcn":"24","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:BF:7F:97:38","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:49:4B:5D:D7:FA","dsgn-internal-cost":"0","designated-bridge":"8.000.22:49:4B:5D:D7:FA","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"110","num-rx-bpdu":"58","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"learning","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:BF:7F:97:38","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"97","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"learning","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:BF:7F:97:38","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"94","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca1f190>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 76 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 76 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 5561504 Rx 3018285 Loss 45.729 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 5561504 Rx 2456 Loss 99.956 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 5561503 Rx 3053439 Loss 45.097 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:11:01:00:00:01 Tx 5561504 Rx 2992992 Loss 46.184 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:12:01:00:00:01 Tx 5561504 Rx 2456 Loss 99.956 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:13:01:00:00:01 Tx 5561503 Rx 3053440 Loss 45.097 INFO asyncssh:logging.py:92 [conn=272, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=272, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=28] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=272, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=28] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_traffic_during_mode_change[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_with_traffic.py INFO asyncssh:logging.py:92 [conn=272, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=29] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=272, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=30] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=272, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=272, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=272, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=32] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:39:17 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=272, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=272, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=34] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:39:17 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=272, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=272, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=272, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":176,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:bb:4d:85:e7:98","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=272, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=272, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=38] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=272, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=38] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_with_traffic.py::test_stp_switching_off_on[stp] | 688.59 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15334' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_switching_off_on[stp]">Starting testcase:test_stp_switching_off_on[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_with_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=272, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=273] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=273] Local address: 172.17.0.4, port 57726 INFO asyncssh:logging.py:92 [conn=273] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=273] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=273] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=273, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:39:18 UTC 2087 INFO asyncssh:logging.py:92 [conn=273, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=273, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=273, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=273, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=273, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=273, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=273, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:39:18 UTC 2087 INFO asyncssh:logging.py:92 [conn=273, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=273, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=273, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=273, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=273, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=11] Channel closed DEBUG infra1:Logger.py:156 ifconfig br0 hw ether 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=273, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=12] Command: ifconfig br0 hw ether 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=273, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=273, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=273, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=273, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=16] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=273, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=273, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=273, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=273, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=273, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=273, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=273, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=273, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:76:C5:9E:C6","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:76:C5:9E:C6","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:76:C5:9E:C6","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"64","num-rx-bpdu":"36","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:76:C5:9E:C6","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:66:74:37:1B:B1","dsgn-internal-cost":"0","designated-bridge":"8.000.00:66:74:37:1B:B1","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"62","num-rx-bpdu":"36","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:76:C5:9E:C6","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"78","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:76:C5:9E:C6","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"76","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf2a70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 stp SIP-DIP Tx 72 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 stp SIP-DIP Tx 72 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 5269830 Rx 5269828 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 5269829 Rx 777 Loss 99.985 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 5269829 Rx 5269828 Loss 0.000 INFO asyncssh:logging.py:92 [conn=273, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=273, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=24] Command: ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=273, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=273, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=26] Command: ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=273, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=273, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=28] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=273, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=29] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=273, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=30] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=273, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=31] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=273, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=32] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=273, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"2","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf0d30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 stp SIP-DIP Tx 166 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 stp SIP-DIP Tx 166 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 12154596 Rx 9588457 Loss 21.112 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 12154596 Rx 3743159 Loss 69.204 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 12154595 Rx 9590560 Loss 21.095 INFO asyncssh:logging.py:92 [conn=273, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=273, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=34] Command: ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=273, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=273, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=36] Command: ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=273, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=37] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=273, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=38] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=273, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=39] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=273, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=40] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=273, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=41] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=273, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=42] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=273, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"2","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca1da20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 stp SIP-DIP Tx 260 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 stp SIP-DIP Tx 260 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 19039362 Rx 13952712 Loss 26.716 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 19039362 Rx 7481202 Loss 60.707 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 19039361 Rx 13957386 Loss 26.692 INFO asyncssh:logging.py:92 [conn=273, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=273, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=44] Command: ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=273, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=273, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=46] Command: ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=273, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=47] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=273, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=48] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=273, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=49] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=273, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=50] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=273, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=51] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=273, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=52] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=273, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"2","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca1c730>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 stp SIP-DIP Tx 354 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 stp SIP-DIP Tx 354 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 25924128 Rx 18300947 Loss 29.406 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 25924128 Rx 11222138 Loss 56.712 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 25924128 Rx 18308931 Loss 29.375 INFO asyncssh:logging.py:92 [conn=273, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=273, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=54] Command: ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=273, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=273, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=56] Command: ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=273, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=57] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=273, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=58] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=273, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=59] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=273, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=60] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=273, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=61] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=273, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=62] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=273, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=62] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:76:C5:9E:C6","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"6","num-rx-bpdu":"1","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:76:C5:9E:C6","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:66:74:37:1B:B1","dsgn-internal-cost":"0","designated-bridge":"8.000.00:66:74:37:1B:B1","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"1","num-rx-bpdu-filtered":"0","num-tx-tcn":"1","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:76:C5:9E:C6","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:76:C5:9E:C6","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acafd4b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 stp SIP-DIP Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 stp SIP-DIP Tx 448 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 32808895 Rx 22639701 Loss 30.995 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 32808894 Rx 14964866 Loss 54.388 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 32808894 Rx 22650108 Loss 30.964 INFO asyncssh:logging.py:92 [conn=273, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=273, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=64] Command: ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=273, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=273, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=66] Command: ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=273, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=67] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=273, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=68] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=273, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=69] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=273, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=70] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=273, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=70] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_switching_off_on[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_with_traffic.py INFO asyncssh:logging.py:92 [conn=273, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=71] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=273, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=72] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=273, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=273, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=73] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=273, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=74] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:50:46 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=273, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=75] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=273, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=76] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:50:46 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=273, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=273, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=78] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=273, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=78] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":177,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:bb:4d:85:e7:09","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=273, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=273, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=80] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=273, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=80] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/stp/test_stp_with_traffic.py::test_stp_switching_off_on[rstp] | 473.99 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15429' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_switching_off_on[rstp]">Starting testcase:test_stp_switching_off_on[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_with_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=273, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=274] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=274] Local address: 172.17.0.4, port 57432 INFO asyncssh:logging.py:92 [conn=274] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=274] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=274] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=274, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:50:46 UTC 2087 INFO asyncssh:logging.py:92 [conn=274, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=274, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=274, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=274, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=274, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=4] Channel closed DEBUG infra1:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=274, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=274, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=6] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:50:46 UTC 2087 INFO asyncssh:logging.py:92 [conn=274, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=274, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=274, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=274, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=274, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=11] Channel closed DEBUG infra1:Logger.py:156 ifconfig br0 hw ether 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=274, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=12] Command: ifconfig br0 hw ether 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=274, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=274, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=274, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=274, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=16] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=274, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=274, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=274, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=274, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=274, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=274, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=274, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=274, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:A4:19:8B:EF","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:A4:19:8B:EF","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:A4:19:8B:EF","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"84","num-rx-bpdu":"16","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:A4:19:8B:EF","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:66:A7:8A:31:94","dsgn-internal-cost":"0","designated-bridge":"8.000.00:66:A7:8A:31:94","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"82","num-rx-bpdu":"16","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:A4:19:8B:EF","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"71","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:A4:19:8B:EF","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"68","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acafff40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 32 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 32 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 2339668 Rx 2339667 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 2339668 Rx 1843 Loss 99.921 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 2339667 Rx 2339666 Loss 0.000 INFO asyncssh:logging.py:92 [conn=274, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=274, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=24] Command: ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=274, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=274, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=26] Command: ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=274, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=274, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=28] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=274, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=29] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=274, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=30] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=274, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=31] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=274, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=32] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=274, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf36d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 86 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 86 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 6294747 Rx 6080327 Loss 3.406 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 6294746 Rx 2278530 Loss 63.803 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 6294746 Rx 6082877 Loss 3.366 INFO asyncssh:logging.py:92 [conn=274, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=274, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=34] Command: ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=274, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=274, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=36] Command: ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=274, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=37] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=274, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=38] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=274, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=39] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=274, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=40] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=274, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=41] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=274, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=42] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=274, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca1e8c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 140 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 140 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 10249825 Rx 9785494 Loss 4.530 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 10249825 Rx 4551019 Loss 55.599 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 10249824 Rx 9791192 Loss 4.475 INFO asyncssh:logging.py:92 [conn=274, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=274, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=44] Command: ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=274, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=274, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=46] Command: ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=274, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=47] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=274, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=48] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=274, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=49] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=274, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=50] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=274, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=51] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=274, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=52] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=274, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:A4:19:8B:EF","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:A4:19:8B:EF","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:A4:19:8B:EF","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"1","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:A4:19:8B:EF","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:66:A7:8A:31:94","dsgn-internal-cost":"0","designated-bridge":"8.000.00:66:A7:8A:31:94","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"1","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:A4:19:8B:EF","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"2","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:A4:19:8B:EF","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"2","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb08940>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 194 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 194 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 14204904 Rx 13547979 Loss 4.625 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 14204903 Rx 6829133 Loss 51.924 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 14204903 Rx 13556340 Loss 4.566 INFO asyncssh:logging.py:92 [conn=274, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=274, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=54] Command: ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=274, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=274, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=56] Command: ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=274, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=57] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=274, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=58] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=274, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=59] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=274, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=60] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=274, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=61] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=274, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=62] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=274, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=62] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca1cd00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 248 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 248 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 18159982 Rx 17297386 Loss 4.750 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 18159982 Rx 9103594 Loss 49.870 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 18159981 Rx 17308003 Loss 4.692 INFO asyncssh:logging.py:92 [conn=274, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=274, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=64] Command: ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=274, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=274, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=66] Command: ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=274, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=67] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=274, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=68] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=274, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=69] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=274, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=70] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=274, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=70] Channel closed DEBUG infra1:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_switching_off_on[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_with_traffic.py INFO asyncssh:logging.py:92 [conn=274, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=71] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=274, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=72] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=274, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=274, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=73] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=274, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=74] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:58:39 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=274, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=75] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=274, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=76] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:58:40 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=274, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=274, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=78] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=274, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=78] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":178,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:bb:4d:85:e7:09","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=274, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=274, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=80] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=274, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=80] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/table_size/test_table_size.py::test_ipv4_route_table_fill | 57.80 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_route_table_fill">Starting testcase:test_ipv4_route_table_fill from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-15523' coro=<test_ipv4_route_table_fill() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:70> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=274, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=275] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=275] Local address: 172.17.0.4, port 55974 INFO asyncssh:logging.py:92 [conn=275] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=275] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=275] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=275, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:58:40 UTC 2087 INFO asyncssh:logging.py:92 [conn=275, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=275, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=275, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=2] Channel closed DEBUG infra1:Logger.py:156 arm64-accton-as4224-52p-r0 INFO asyncssh:logging.py:92 [conn=275, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=275, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=4] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=275, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=5] Channel closed DEBUG infra1:Logger.py:156 for x in `seq 40` do for y in `seq 250` do ip ro add dev swp33 1.1.$x.$y done done INFO asyncssh:logging.py:92 [conn=275, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=6] Command: for x in `seq 40` do for y in `seq 250` do ip ro add dev swp33 1.1.$x.$y done done INFO asyncssh:logging.py:92 [conn=275, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip route | grep rt_offload | wc -l INFO asyncssh:logging.py:92 [conn=275, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=8] Command: ip route | grep rt_offload | wc -l INFO asyncssh:logging.py:92 [conn=275, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=8] Channel closed DEBUG infra1:Logger.py:156 10001 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_route_table_fill from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=275, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=275, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=10] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:59:38 UTC 2087 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=275, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=275, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=12] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=275, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=275, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=275, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5e:cd:be:b6:2c:07","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=275, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=275, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=16] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=275, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=16] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/table_size/test_table_size.py::test_bridging_mac_table_size | 131.54 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_mac_table_size">Starting testcase:test_bridging_mac_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-15548' coro=<test_bridging_mac_table_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:111> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=275, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=276] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=276] Local address: 172.17.0.4, port 58584 INFO asyncssh:logging.py:92 [conn=276] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=276] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=276] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=276, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 02:59:38 UTC 2087 INFO asyncssh:logging.py:92 [conn=276, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=276, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=276, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=276, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=276, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=276, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=276, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=276, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=8] Command: bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=276, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acbf1420>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 14343 Rx 14343 Loss 0.000 INFO asyncssh:logging.py:92 [conn=276, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=276, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=276, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=10] Channel closed DEBUG infra1:Logger.py:156 4002 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_mac_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=276, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=276, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=12] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:01:49 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=276, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=276, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:01:49 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=276, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=276, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=276, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":179,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=276, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=276, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=276, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/table_size/test_table_size.py::test_acl_table_size | 224.21 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_table_size">Starting testcase:test_acl_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-15575' coro=<test_acl_table_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:200> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=276, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=277] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=277] Local address: 172.17.0.4, port 51992 INFO asyncssh:logging.py:92 [conn=277] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=277] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=277] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=277, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:01:50 UTC 2087 INFO asyncssh:logging.py:92 [conn=277, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=277, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=277, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=2] Channel closed DEBUG infra1:Logger.py:156 arm64-accton-as4224-52p-r0 INFO asyncssh:logging.py:92 [conn=277, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=3] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=277, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=4] Command: tc qdisc add dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=277, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=5] Channel closed DEBUG infra1:Logger.py:156 for x in `seq 1636` do tc filter add dev swp33 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=277, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=6] Command: for x in `seq 1636` do tc filter add dev swp33 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=277, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter show dev swp33 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=277, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=8] Command: tc filter show dev swp33 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=277, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=8] Channel closed DEBUG infra1:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=277, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter show dev swp33 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=277, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=10] Command: tc filter show dev swp33 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=277, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=10] Channel closed DEBUG infra1:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=277, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=277, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=12] Command: tc qdisc delete dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=277, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=277, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=14] Command: tc qdisc add dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=277, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc chain add dev swp33 ingress chain 0 flower INFO asyncssh:logging.py:92 [conn=277, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=16] Command: tc chain add dev swp33 ingress chain 0 flower INFO asyncssh:logging.py:92 [conn=277, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=17] Channel closed DEBUG infra1:Logger.py:156 for x in `seq 4196` do tc filter add dev swp33 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=277, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=18] Command: for x in `seq 4196` do tc filter add dev swp33 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=277, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc f show dev swp33 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=277, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=20] Command: tc f show dev swp33 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=277, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=20] Channel closed DEBUG infra1:Logger.py:156 4096 INFO asyncssh:logging.py:92 [conn=277, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc f show dev swp33 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=277, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=22] Command: tc f show dev swp33 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=277, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=22] Channel closed DEBUG infra1:Logger.py:156 4096 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO asyncssh:logging.py:92 [conn=277, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=277, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=24] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:05:21 UTC 2087 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=277, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=277, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=277, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=277, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=277, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=277, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=277, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=277, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=277, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=277, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=277, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=277, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=277, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=277, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=277, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=277, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=277, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=277, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=277, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=277, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=277, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=277, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=277, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=277, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=277, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=277, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=277, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=277, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=277, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=277, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=277, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=277, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=277, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=277, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=277, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=48] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=277, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=277, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=277, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=50] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=277, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=277, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=277, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=52] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=277, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=277, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=277, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=54] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=277, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=277, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=277, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=56] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=277, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=277, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=277, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=58] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=277, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=277, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=277, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=60] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=277, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=277, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=277, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=62] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=277, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=62] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=277, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=64] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=277, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=277, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=277, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=66] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=277, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=277, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=277, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=68] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=277, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=277, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_broadcast | 232.10 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_broadcast">Starting testcase:test_vlan_all_supported_modes_broadcast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-15654' coro=<test_vlan_all_supported_modes_broadcast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:43> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=277, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=278] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=278] Local address: 172.17.0.4, port 40020 INFO asyncssh:logging.py:92 [conn=278] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=278] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=278] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=278, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:05:34 UTC 2087 INFO asyncssh:logging.py:92 [conn=278, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=278, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=278, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=278, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=278, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=278, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=278, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=278, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=278, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=278, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=278, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=278, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=278, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=278, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=278, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=278, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=278, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=278, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=278, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=278, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=278, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca1cd30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 238 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 238 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 238 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 238 Rx 238 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 238 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 238 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 238 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 238 Rx 238 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 238 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 238 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 238 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 238 Rx 238 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 238 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 238 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 238 Rx 238 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_broadcast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=278, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=278, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=16] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:09:25 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=278, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=278, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=18] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:09:25 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=278, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=278, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=278, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":180,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=278, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=278, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=278, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_multicast | 234.48 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_multicast">Starting testcase:test_vlan_all_supported_modes_multicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-15686' coro=<test_vlan_all_supported_modes_multicast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:124> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=278, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=279] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=279] Local address: 172.17.0.4, port 49658 INFO asyncssh:logging.py:92 [conn=279] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=279] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=279] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=279, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:09:26 UTC 2087 INFO asyncssh:logging.py:92 [conn=279, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=279, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=279, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=279, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=279, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=279, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=279, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=279, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=279, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=279, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=279, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=279, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=279, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=279, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=279, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=279, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=279, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=279, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=279, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=279, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=279, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca1d270>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_multicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=279, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=279, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=16] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:13:20 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=279, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=279, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=18] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:13:20 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=279, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=279, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=279, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":181,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=279, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=279, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=279, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_unicast | 253.33 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_unicast">Starting testcase:test_vlan_all_supported_modes_unicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-15718' coro=<test_vlan_all_supported_modes_unicast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:207> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=279, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=280] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=280] Local address: 172.17.0.4, port 38932 INFO asyncssh:logging.py:92 [conn=280] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=280] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=280] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=280, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:13:21 UTC 2087 INFO asyncssh:logging.py:92 [conn=280, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=280, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=280, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=280, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=280, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=280, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=280, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=280, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=280, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=280, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=280, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=280, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=280, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=280, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=280, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=280, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=280, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=280, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=280, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=280, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=280, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> X INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb09e40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 1 SIP-DIP N/A Tx 276 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 1 SIP-DIP N/A Tx 276 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 1 SIP-DIP N/A Tx 275 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 2 SIP-DIP N/A Tx 276 Rx 276 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 2 SIP-DIP N/A Tx 276 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 2 SIP-DIP N/A Tx 275 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 3 SIP-DIP N/A Tx 276 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 3 SIP-DIP N/A Tx 276 Rx 276 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 3 SIP-DIP N/A Tx 275 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 4 SIP-DIP N/A Tx 276 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 4 SIP-DIP N/A Tx 276 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 4 SIP-DIP N/A Tx 275 Rx 275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> X SIP-DIP N/A Tx 276 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> X SIP-DIP N/A Tx 276 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> X SIP-DIP N/A Tx 275 Rx 275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 -> 10.36.118.199:2:1 SIP-DIP N/A Tx 276 Rx 276 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:3 -> 10.36.118.199:2:1 SIP-DIP N/A Tx 276 Rx 276 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 -> 10.36.118.199:2:1 SIP-DIP N/A Tx 276 Rx 276 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_unicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=280, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=280, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=16] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:17:30 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=280, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=280, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=18] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:17:33 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=280, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=280, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=280, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":182,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=280, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=280, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=280, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_configuration_checks.py::test_vlan_can_set_max_vlans | 179.05 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_can_set_max_vlans">Starting testcase:test_vlan_can_set_max_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-15750' coro=<test_vlan_can_set_max_vlans() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py:26> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=280, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=281] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=281] Local address: 172.17.0.4, port 55018 INFO asyncssh:logging.py:92 [conn=281] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=281] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=281] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=281, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:17:34 UTC 2087 INFO asyncssh:logging.py:92 [conn=281, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=281, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=281, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=281, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=281, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=281, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=281, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 up master br0 INFO asyncssh:logging.py:92 [conn=281, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=6] Command: ip link set dev swp6 up master br0 INFO asyncssh:logging.py:92 [conn=281, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=281, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=7] Channel closed DEBUG infra1:Logger.py:156 time for i in {1..4094}; do bridge vlan add vid $i dev swp6; done INFO asyncssh:logging.py:92 [conn=281, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=8] Command: time for i in {1..4094}; do bridge vlan add vid $i dev swp6; done INFO asyncssh:logging.py:92 [conn=281, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=8] Channel closed DEBUG infra1:Logger.py:156 real 1m58.683s user 0m3.034s sys 1m55.859s INFO asyncssh:logging.py:92 [conn=281, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp6 INFO asyncssh:logging.py:92 [conn=281, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=10] Command: bridge -j vlan show dev swp6 INFO asyncssh:logging.py:92 [conn=281, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifname":"swp6","vlans":[{"vlan":1},{"vlan":2},{"vlan":3},{"vlan":4},{"vlan":5},{"vlan":6},{"vlan":7},{"vlan":8},{"vlan":9},{"vlan":10},{"vlan":11},{"vlan":12},{"vlan":13},{"vlan":14},{"vlan":15},{"vlan":16},{"vlan":17},{"vlan":18},{"vlan":19},{"vlan":20},{"vlan":21},{"vlan":22},{"vlan":23},{"vlan":24},{"vlan":25},{"vlan":26},{"vlan":27},{"vlan":28},{"vlan":29},{"vlan":30},{"vlan":31},{"vlan":32},{"vlan":33},{"vlan":34},{"vlan":35},{"vlan":36},{"vlan":37},{"vlan":38},{"vlan":39},{"vlan":40},{"vlan":41},{"vlan":42},{"vlan":43},{"vlan":44},{"vlan":45},{"vlan":46},{"vlan":47},{"vlan":48},{"vlan":49},{"vlan":50},{"vlan":51},{"vlan":52},{"vlan":53},{"vlan":54},{"vlan":55},{"vlan":56},{"vlan":57},{"vlan":58},{"vlan":59},{"vlan":60},{"vlan":61},{"vlan":62},{"vlan":63},{"vlan":64},{"vlan":65},{"vlan":66},{"vlan":67},{"vlan":68},{"vlan":69},{"vlan":70},{"vlan":71},{"vlan":72},{"vlan":73},{"vlan":74},{"vlan":75},{"vlan":76},{"vlan":77},{"vlan":78},{"vlan":79},{"vlan":80},{"vlan":81},{"vlan":82},{"vlan":83},{"vlan":84},{"vlan":85},{"vlan":86},{"vlan":87},{"vlan":88},{"vlan":89},{"vlan":90},{"vlan":91},{"vlan":92},{"vlan":93},{"vlan":94},{"vlan":95},{"vlan":96},{"vlan":97},{"vlan":98},{"vlan":99},{"vlan":100},{"vlan":101},{"vlan":102},{"vlan":103},{"vlan":104},{"vlan":105},{"vlan":106},{"vlan":107},{"vlan":108},{"vlan":109},{"vlan":110},{"vlan":111},{"vlan":112},{"vlan":113},{"vlan":114},{"vlan":115},{"vlan":116},{"vlan":117},{"vlan":118},{"vlan":119},{"vlan":120},{"vlan":121},{"vlan":122},{"vlan":123},{"vlan":124},{"vlan":125},{"vlan":126},{"vlan":127},{"vlan":128},{"vlan":129},{"vlan":130},{"vlan":131},{"vlan":132},{"vlan":133},{"vlan":134},{"vlan":135},{"vlan":136},{"vlan":137},{"vlan":138},{"vlan":139},{"vlan":140},{"vlan":141},{"vlan":142},{"vlan":143},{"vlan":144},{"vlan":145},{"vlan":146},{"vlan":147},{"vlan":148},{"vlan":149},{"vlan":150},{"vlan":151},{"vlan":152},{"vlan":153},{"vlan":154},{"vlan":155},{"vlan":156},{"vlan":157},{"vlan":158},{"vlan":159},{"vlan":160},{"vlan":161},{"vlan":162},{"vlan":163},{"vlan":164},{"vlan":165},{"vlan":166},{"vlan":167},{"vlan":168},{"vlan":169},{"vlan":170},{"vlan":171},{"vlan":172},{"vlan":173},{"vlan":174},{"vlan":175},{"vlan":176},{"vlan":177},{"vlan":178},{"vlan":179},{"vlan":180},{"vlan":181},{"vlan":182},{"vlan":183},{"vlan":184},{"vlan":185},{"vlan":186},{"vlan":187},{"vlan":188},{"vlan":189},{"vlan":190},{"vlan":191},{"vlan":192},{"vlan":193},{"vlan":194},{"vlan":195},{"vlan":196},{"vlan":197},{"vlan":198},{"vlan":199},{"vlan":200},{"vlan":201},{"vlan":202},{"vlan":203},{"vlan":204},{"vlan":205},{"vlan":206},{"vlan":207},{"vlan":208},{"vlan":209},{"vlan":210},{"vlan":211},{"vlan":212},{"vlan":213},{"vlan":214},{"vlan":215},{"vlan":216},{"vlan":217},{"vlan":218},{"vlan":219},{"vlan":220},{"vlan":221},{"vlan":222},{"vlan":223},{"vlan":224},{"vlan":225},{"vlan":226},{"vlan":227},{"vlan":228},{"vlan":229},{"vlan":230},{"vlan":231},{"vlan":232},{"vlan":233},{"vlan":234},{"vlan":235},{"vlan":236},{"vlan":237},{"vlan":238},{"vlan":239},{"vlan":240},{"vlan":241},{"vlan":242},{"vlan":243},{"vlan":244},{"vlan":245},{"vlan":246},{"vlan":247},{"vlan":248},{"vlan":249},{"vlan":250},{"vlan":251},{"vlan":252},{"vlan":253},{"vlan":254},{"vlan":255},{"vlan":256},{"vlan":257},{"vlan":258},{"vlan":259},{"vlan":260},{"vlan":261},{"vlan":262},{"vlan":263},{"vlan":264},{"vlan":265},{"vlan":266},{"vlan":267},{"vlan":268},{"vlan":269},{"vlan":270},{"vlan":271},{"vlan":272},{"vlan":273},{"vlan":274},{"vlan":275},{"vlan":276},{"vlan":277},{"vlan":278},{"vlan":279},{"vlan":280},{"vlan":281},{"vlan":282},{"vlan":283},{"vlan":284},{"vlan":285},{"vlan":286},{"vlan":287},{"vlan":288},{"vlan":289},{"vlan":290},{"vlan":291},{"vlan":292},{"vlan":293},{"vlan":294},{"vlan":295},{"vlan":296},{"vlan":297},{"vlan":298},{"vlan":299},{"vlan":300},{"vlan":301},{"vlan":302},{"vlan":303},{"vlan":304},{"vlan":305},{"vlan":306},{"vlan":307},{"vlan":308},{"vlan":309},{"vlan":310},{"vlan":311},{"vlan":312},{"vlan":313},{"vlan":314},{"vlan":315},{"vlan":316},{"vlan":317},{"vlan":318},{"vlan":319},{"vlan":320},{"vlan":321},{"vlan":322},{"vlan":323},{"vlan":324},{"vlan":325},{"vlan":326},{"vlan":327},{"vlan":328},{"vlan":329},{"vlan":330},{"vlan":331},{"vlan":332},{"vlan":333},{"vlan":334},{"vlan":335},{"vlan":336},{"vlan":337},{"vlan":338},{"vlan":339},{"vlan":340},{"vlan":341},{"vlan":342},{"vlan":343},{"vlan":344},{"vlan":345},{"vlan":346},{"vlan":347},{"vlan":348},{"vlan":349},{"vlan":350},{"vlan":351},{"vlan":352},{"vlan":353},{"vlan":354},{"vlan":355},{"vlan":356},{"vlan":357},{"vlan":358},{"vlan":359},{"vlan":360},{"vlan":361},{"vlan":362},{"vlan":363},{"vlan":364},{"vlan":365},{"vlan":366},{"vlan":367},{"vlan":368},{"vlan":369},{"vlan":370},{"vlan":371},{"vlan":372},{"vlan":373},{"vlan":374},{"vlan":375},{"vlan":376},{"vlan":377},{"vlan":378},{"vlan":379},{"vlan":380},{"vlan":381},{"vlan":382},{"vlan":383},{"vlan":384},{"vlan":385},{"vlan":386},{"vlan":387},{"vlan":388},{"vlan":389},{"vlan":390},{"vlan":391},{"vlan":392},{"vlan":393},{"vlan":394},{"vlan":395},{"vlan":396},{"vlan":397},{"vlan":398},{"vlan":399},{"vlan":400},{"vlan":401},{"vlan":402},{"vlan":403},{"vlan":404},{"vlan":405},{"vlan":406},{"vlan":407},{"vlan":408},{"vlan":409},{"vlan":410},{"vlan":411},{"vlan":412},{"vlan":413},{"vlan":414},{"vlan":415},{"vlan":416},{"vlan":417},{"vlan":418},{"vlan":419},{"vlan":420},{"vlan":421},{"vlan":422},{"vlan":423},{"vlan":424},{"vlan":425},{"vlan":426},{"vlan":427},{"vlan":428},{"vlan":429},{"vlan":430},{"vlan":431},{"vlan":432},{"vlan":433},{"vlan":434},{"vlan":435},{"vlan":436},{"vlan":437},{"vlan":438},{"vlan":439},{"vlan":440},{"vlan":441},{"vlan":442},{"vlan":443},{"vlan":444},{"vlan":445},{"vlan":446},{"vlan":447},{"vlan":448},{"vlan":449},{"vlan":450},{"vlan":451},{"vlan":452},{"vlan":453},{"vlan":454},{"vlan":455},{"vlan":456},{"vlan":457},{"vlan":458},{"vlan":459},{"vlan":460},{"vlan":461},{"vlan":462},{"vlan":463},{"vlan":464},{"vlan":465},{"vlan":466},{"vlan":467},{"vlan":468},{"vlan":469},{"vlan":470},{"vlan":471},{"vlan":472},{"vlan":473},{"vlan":474},{"vlan":475},{"vlan":476},{"vlan":477},{"vlan":478},{"vlan":479},{"vlan":480},{"vlan":481},{"vlan":482},{"vlan":483},{"vlan":484},{"vlan":485},{"vlan":486},{"vlan":487},{"vlan":488},{"vlan":489},{"vlan":490},{"vlan":491},{"vlan":492},{"vlan":493},{"vlan":494},{"vlan":495},{"vlan":496},{"vlan":497},{"vlan":498},{"vlan":499},{"vlan":500},{"vlan":501},{"vlan":502},{"vlan":503},{"vlan":504},{"vlan":505},{"vlan":506},{"vlan":507},{"vlan":508},{"vlan":509},{"vlan":510},{"vlan":511},{"vlan":512},{"vlan":513},{"vlan":514},{"vlan":515},{"vlan":516},{"vlan":517},{"vlan":518},{"vlan":519},{"vlan":520},{"vlan":521},{"vlan":522},{"vlan":523},{"vlan":524},{"vlan":525},{"vlan":526},{"vlan":527},{"vlan":528},{"vlan":529},{"vlan":530},{"vlan":531},{"vlan":532},{"vlan":533},{"vlan":534},{"vlan":535},{"vlan":536},{"vlan":537},{"vlan":538},{"vlan":539},{"vlan":540},{"vlan":541},{"vlan":542},{"vlan":543},{"vlan":544},{"vlan":545},{"vlan":546},{"vlan":547},{"vlan":548},{"vlan":549},{"vlan":550},{"vlan":551},{"vlan":552},{"vlan":553},{"vlan":554},{"vlan":555},{"vlan":556},{"vlan":557},{"vlan":558},{"vlan":559},{"vlan":560},{"vlan":561},{"vlan":562},{"vlan":563},{"vlan":564},{"vlan":565},{"vlan":566},{"vlan":567},{"vlan":568},{"vlan":569},{"vlan":570},{"vlan":571},{"vlan":572},{"vlan":573},{"vlan":574},{"vlan":575},{"vlan":576},{"vlan":577},{"vlan":578},{"vlan":579},{"vlan":580},{"vlan":581},{"vlan":582},{"vlan":583},{"vlan":584},{"vlan":585},{"vlan":586},{"vlan":587},{"vlan":588},{"vlan":589},{"vlan":590},{"vlan":591},{"vlan":592},{"vlan":593},{"vlan":594},{"vlan":595},{"vlan":596},{"vlan":597},{"vlan":598},{"vlan":599},{"vlan":600},{"vlan":601},{"vlan":602},{"vlan":603},{"vlan":604},{"vlan":605},{"vlan":606},{"vlan":607},{"vlan":608},{"vlan":609},{"vlan":610},{"vlan":611},{"vlan":612},{"vlan":613},{"vlan":614},{"vlan":615},{"vlan":616},{"vlan":617},{"vlan":618},{"vlan":619},{"vlan":620},{"vlan":621},{"vlan":622},{"vlan":623},{"vlan":624},{"vlan":625},{"vlan":626},{"vlan":627},{"vlan":628},{"vlan":629},{"vlan":630},{"vlan":631},{"vlan":632},{"vlan":633},{"vlan":634},{"vlan":635},{"vlan":636},{"vlan":637},{"vlan":638},{"vlan":639},{"vlan":640},{"vlan":641},{"vlan":642},{"vlan":643},{"vlan":644},{"vlan":645},{"vlan":646},{"vlan":647},{"vlan":648},{"vlan":649},{"vlan":650},{"vlan":651},{"vlan":652},{"vlan":653},{"vlan":654},{"vlan":655},{"vlan":656},{"vlan":657},{"vlan":658},{"vlan":659},{"vlan":660},{"vlan":661},{"vlan":662},{"vlan":663},{"vlan":664},{"vlan":665},{"vlan":666},{"vlan":667},{"vlan":668},{"vlan":669},{"vlan":670},{"vlan":671},{"vlan":672},{"vlan":673},{"vlan":674},{"vlan":675},{"vlan":676},{"vlan":677},{"vlan":678},{"vlan":679},{"vlan":680},{"vlan":681},{"vlan":682},{"vlan":683},{"vlan":684},{"vlan":685},{"vlan":686},{"vlan":687},{"vlan":688},{"vlan":689},{"vlan":690},{"vlan":691},{"vlan":692},{"vlan":693},{"vlan":694},{"vlan":695},{"vlan":696},{"vlan":697},{"vlan":698},{"vlan":699},{"vlan":700},{"vlan":701},{"vlan":702},{"vlan":703},{"vlan":704},{"vlan":705},{"vlan":706},{"vlan":707},{"vlan":708},{"vlan":709},{"vlan":710},{"vlan":711},{"vlan":712},{"vlan":713},{"vlan":714},{"vlan":715},{"vlan":716},{"vlan":717},{"vlan":718},{"vlan":719},{"vlan":720},{"vlan":721},{"vlan":722},{"vlan":723},{"vlan":724},{"vlan":725},{"vlan":726},{"vlan":727},{"vlan":728},{"vlan":729},{"vlan":730},{"vlan":731},{"vlan":732},{"vlan":733},{"vlan":734},{"vlan":735},{"vlan":736},{"vlan":737},{"vlan":738},{"vlan":739},{"vlan":740},{"vlan":741},{"vlan":742},{"vlan":743},{"vlan":744},{"vlan":745},{"vlan":746},{"vlan":747},{"vlan":748},{"vlan":749},{"vlan":750},{"vlan":751},{"vlan":752},{"vlan":753},{"vlan":754},{"vlan":755},{"vlan":756},{"vlan":757},{"vlan":758},{"vlan":759},{"vlan":760},{"vlan":761},{"vlan":762},{"vlan":763},{"vlan":764},{"vlan":765},{"vlan":766},{"vlan":767},{"vlan":768},{"vlan":769},{"vlan":770},{"vlan":771},{"vlan":772},{"vlan":773},{"vlan":774},{"vlan":775},{"vlan":776},{"vlan":777},{"vlan":778},{"vlan":779},{"vlan":780},{"vlan":781},{"vlan":782},{"vlan":783},{"vlan":784},{"vlan":785},{"vlan":786},{"vlan":787},{"vlan":788},{"vlan":789},{"vlan":790},{"vlan":791},{"vlan":792},{"vlan":793},{"vlan":794},{"vlan":795},{"vlan":796},{"vlan":797},{"vlan":798},{"vlan":799},{"vlan":800},{"vlan":801},{"vlan":802},{"vlan":803},{"vlan":804},{"vlan":805},{"vlan":806},{"vlan":807},{"vlan":808},{"vlan":809},{"vlan":810},{"vlan":811},{"vlan":812},{"vlan":813},{"vlan":814},{"vlan":815},{"vlan":816},{"vlan":817},{"vlan":818},{"vlan":819},{"vlan":820},{"vlan":821},{"vlan":822},{"vlan":823},{"vlan":824},{"vlan":825},{"vlan":826},{"vlan":827},{"vlan":828},{"vlan":829},{"vlan":830},{"vlan":831},{"vlan":832},{"vlan":833},{"vlan":834},{"vlan":835},{"vlan":836},{"vlan":837},{"vlan":838},{"vlan":839},{"vlan":840},{"vlan":841},{"vlan":842},{"vlan":843},{"vlan":844},{"vlan":845},{"vlan":846},{"vlan":847},{"vlan":848},{"vlan":849},{"vlan":850},{"vlan":851},{"vlan":852},{"vlan":853},{"vlan":854},{"vlan":855},{"vlan":856},{"vlan":857},{"vlan":858},{"vlan":859},{"vlan":860},{"vlan":861},{"vlan":862},{"vlan":863},{"vlan":864},{"vlan":865},{"vlan":866},{"vlan":867},{"vlan":868},{"vlan":869},{"vlan":870},{"vlan":871},{"vlan":872},{"vlan":873},{"vlan":874},{"vlan":875},{"vlan":876},{"vlan":877},{"vlan":878},{"vlan":879},{"vlan":880},{"vlan":881},{"vlan":882},{"vlan":883},{"vlan":884},{"vlan":885},{"vlan":886},{"vlan":887},{"vlan":888},{"vlan":889},{"vlan":890},{"vlan":891},{"vlan":892},{"vlan":893},{"vlan":894},{"vlan":895},{"vlan":896},{"vlan":897},{"vlan":898},{"vlan":899},{"vlan":900},{"vlan":901},{"vlan":902},{"vlan":903},{"vlan":904},{"vlan":905},{"vlan":906},{"vlan":907},{"vlan":908},{"vlan":909},{"vlan":910},{"vlan":911},{"vlan":912},{"vlan":913},{"vlan":914},{"vlan":915},{"vlan":916},{"vlan":917},{"vlan":918},{"vlan":919},{"vlan":920},{"vlan":921},{"vlan":922},{"vlan":923},{"vlan":924},{"vlan":925},{"vlan":926},{"vlan":927},{"vlan":928},{"vlan":929},{"vlan":930},{"vlan":931},{"vlan":932},{"vlan":933},{"vlan":934},{"vlan":935},{"vlan":936},{"vlan":937},{"vlan":938},{"vlan":939},{"vlan":940},{"vlan":941},{"vlan":942},{"vlan":943},{"vlan":944},{"vlan":945},{"vlan":946},{"vlan":947},{"vlan":948},{"vlan":949},{"vlan":950},{"vlan":951},{"vlan":952},{"vlan":953},{"vlan":954},{"vlan":955},{"vlan":956},{"vlan":957},{"vlan":958},{"vlan":959},{"vlan":960},{"vlan":961},{"vlan":962},{"vlan":963},{"vlan":964},{"vlan":965},{"vlan":966},{"vlan":967},{"vlan":968},{"vlan":969},{"vlan":970},{"vlan":971},{"vlan":972},{"vlan":973},{"vlan":974},{"vlan":975},{"vlan":976},{"vlan":977},{"vlan":978},{"vlan":979},{"vlan":980},{"vlan":981},{"vlan":982},{"vlan":983},{"vlan":984},{"vlan":985},{"vlan":986},{"vlan":987},{"vlan":988},{"vlan":989},{"vlan":990},{"vlan":991},{"vlan":992},{"vlan":993},{"vlan":994},{"vlan":995},{"vlan":996},{"vlan":997},{"vlan":998},{"vlan":999},{"vlan":1000},{"vlan":1001},{"vlan":1002},{"vlan":1003},{"vlan":1004},{"vlan":1005},{"vlan":1006},{"vlan":1007},{"vlan":1008},{"vlan":1009},{"vlan":1010},{"vlan":1011},{"vlan":1012},{"vlan":1013},{"vlan":1014},{"vlan":1015},{"vlan":1016},{"vlan":1017},{"vlan":1018},{"vlan":1019},{"vlan":1020},{"vlan":1021},{"vlan":1022},{"vlan":1023},{"vlan":1024},{"vlan":1025},{"vlan":1026},{"vlan":1027},{"vlan":1028},{"vlan":1029},{"vlan":1030},{"vlan":1031},{"vlan":1032},{"vlan":1033},{"vlan":1034},{"vlan":1035},{"vlan":1036},{"vlan":1037},{"vlan":1038},{"vlan":1039},{"vlan":1040},{"vlan":1041},{"vlan":1042},{"vlan":1043},{"vlan":1044},{"vlan":1045},{"vlan":1046},{"vlan":1047},{"vlan":1048},{"vlan":1049},{"vlan":1050},{"vlan":1051},{"vlan":1052},{"vlan":1053},{"vlan":1054},{"vlan":1055},{"vlan":1056},{"vlan":1057},{"vlan":1058},{"vlan":1059},{"vlan":1060},{"vlan":1061},{"vlan":1062},{"vlan":1063},{"vlan":1064},{"vlan":1065},{"vlan":1066},{"vlan":1067},{"vlan":1068},{"vlan":1069},{"vlan":1070},{"vlan":1071},{"vlan":1072},{"vlan":1073},{"vlan":1074},{"vlan":1075},{"vlan":1076},{"vlan":1077},{"vlan":1078},{"vlan":1079},{"vlan":1080},{"vlan":1081},{"vlan":1082},{"vlan":1083},{"vlan":1084},{"vlan":1085},{"vlan":1086},{"vlan":1087},{"vlan":1088},{"vlan":1089},{"vlan":1090},{"vlan":1091},{"vlan":1092},{"vlan":1093},{"vlan":1094},{"vlan":1095},{"vlan":1096},{"vlan":1097},{"vlan":1098},{"vlan":1099},{"vlan":1100},{"vlan":1101},{"vlan":1102},{"vlan":1103},{"vlan":1104},{"vlan":1105},{"vlan":1106},{"vlan":1107},{"vlan":1108},{"vlan":1109},{"vlan":1110},{"vlan":1111},{"vlan":1112},{"vlan":1113},{"vlan":1114},{"vlan":1115},{"vlan":1116},{"vlan":1117},{"vlan":1118},{"vlan":1119},{"vlan":1120},{"vlan":1121},{"vlan":1122},{"vlan":1123},{"vlan":1124},{"vlan":1125},{"vlan":1126},{"vlan":1127},{"vlan":1128},{"vlan":1129},{"vlan":1130},{"vlan":1131},{"vlan":1132},{"vlan":1133},{"vlan":1134},{"vlan":1135},{"vlan":1136},{"vlan":1137},{"vlan":1138},{"vlan":1139},{"vlan":1140},{"vlan":1141},{"vlan":1142},{"vlan":1143},{"vlan":1144},{"vlan":1145},{"vlan":1146},{"vlan":1147},{"vlan":1148},{"vlan":1149},{"vlan":1150},{"vlan":1151},{"vlan":1152},{"vlan":1153},{"vlan":1154},{"vlan":1155},{"vlan":1156},{"vlan":1157},{"vlan":1158},{"vlan":1159},{"vlan":1160},{"vlan":1161},{"vlan":1162},{"vlan":1163},{"vlan":1164},{"vlan":1165},{"vlan":1166},{"vlan":1167},{"vlan":1168},{"vlan":1169},{"vlan":1170},{"vlan":1171},{"vlan":1172},{"vlan":1173},{"vlan":1174},{"vlan":1175},{"vlan":1176},{"vlan":1177},{"vlan":1178},{"vlan":1179},{"vlan":1180},{"vlan":1181},{"vlan":1182},{"vlan":1183},{"vlan":1184},{"vlan":1185},{"vlan":1186},{"vlan":1187},{"vlan":1188},{"vlan":1189},{"vlan":1190},{"vlan":1191},{"vlan":1192},{"vlan":1193},{"vlan":1194},{"vlan":1195},{"vlan":1196},{"vlan":1197},{"vlan":1198},{"vlan":1199},{"vlan":1200},{"vlan":1201},{"vlan":1202},{"vlan":1203},{"vlan":1204},{"vlan":1205},{"vlan":1206},{"vlan":1207},{"vlan":1208},{"vlan":1209},{"vlan":1210},{"vlan":1211},{"vlan":1212},{"vlan":1213},{"vlan":1214},{"vlan":1215},{"vlan":1216},{"vlan":1217},{"vlan":1218},{"vlan":1219},{"vlan":1220},{"vlan":1221},{"vlan":1222},{"vlan":1223},{"vlan":1224},{"vlan":1225},{"vlan":1226},{"vlan":1227},{"vlan":1228},{"vlan":1229},{"vlan":1230},{"vlan":1231},{"vlan":1232},{"vlan":1233},{"vlan":1234},{"vlan":1235},{"vlan":1236},{"vlan":1237},{"vlan":1238},{"vlan":1239},{"vlan":1240},{"vlan":1241},{"vlan":1242},{"vlan":1243},{"vlan":1244},{"vlan":1245},{"vlan":1246},{"vlan":1247},{"vlan":1248},{"vlan":1249},{"vlan":1250},{"vlan":1251},{"vlan":1252},{"vlan":1253},{"vlan":1254},{"vlan":1255},{"vlan":1256},{"vlan":1257},{"vlan":1258},{"vlan":1259},{"vlan":1260},{"vlan":1261},{"vlan":1262},{"vlan":1263},{"vlan":1264},{"vlan":1265},{"vlan":1266},{"vlan":1267},{"vlan":1268},{"vlan":1269},{"vlan":1270},{"vlan":1271},{"vlan":1272},{"vlan":1273},{"vlan":1274},{"vlan":1275},{"vlan":1276},{"vlan":1277},{"vlan":1278},{"vlan":1279},{"vlan":1280},{"vlan":1281},{"vlan":1282},{"vlan":1283},{"vlan":1284},{"vlan":1285},{"vlan":1286},{"vlan":1287},{"vlan":1288},{"vlan":1289},{"vlan":1290},{"vlan":1291},{"vlan":1292},{"vlan":1293},{"vlan":1294},{"vlan":1295},{"vlan":1296},{"vlan":1297},{"vlan":1298},{"vlan":1299},{"vlan":1300},{"vlan":1301},{"vlan":1302},{"vlan":1303},{"vlan":1304},{"vlan":1305},{"vlan":1306},{"vlan":1307},{"vlan":1308},{"vlan":1309},{"vlan":1310},{"vlan":1311},{"vlan":1312},{"vlan":1313},{"vlan":1314},{"vlan":1315},{"vlan":1316},{"vlan":1317},{"vlan":1318},{"vlan":1319},{"vlan":1320},{"vlan":1321},{"vlan":1322},{"vlan":1323},{"vlan":1324},{"vlan":1325},{"vlan":1326},{"vlan":1327},{"vlan":1328},{"vlan":1329},{"vlan":1330},{"vlan":1331},{"vlan":1332},{"vlan":1333},{"vlan":1334},{"vlan":1335},{"vlan":1336},{"vlan":1337},{"vlan":1338},{"vlan":1339},{"vlan":1340},{"vlan":1341},{"vlan":1342},{"vlan":1343},{"vlan":1344},{"vlan":1345},{"vlan":1346},{"vlan":1347},{"vlan":1348},{"vlan":1349},{"vlan":1350},{"vlan":1351},{"vlan":1352},{"vlan":1353},{"vlan":1354},{"vlan":1355},{"vlan":1356},{"vlan":1357},{"vlan":1358},{"vlan":1359},{"vlan":1360},{"vlan":1361},{"vlan":1362},{"vlan":1363},{"vlan":1364},{"vlan":1365},{"vlan":1366},{"vlan":1367},{"vlan":1368},{"vlan":1369},{"vlan":1370},{"vlan":1371},{"vlan":1372},{"vlan":1373},{"vlan":1374},{"vlan":1375},{"vlan":1376},{"vlan":1377},{"vlan":1378},{"vlan":1379},{"vlan":1380},{"vlan":1381},{"vlan":1382},{"vlan":1383},{"vlan":1384},{"vlan":1385},{"vlan":1386},{"vlan":1387},{"vlan":1388},{"vlan":1389},{"vlan":1390},{"vlan":1391},{"vlan":1392},{"vlan":1393},{"vlan":1394},{"vlan":1395},{"vlan":1396},{"vlan":1397},{"vlan":1398},{"vlan":1399},{"vlan":1400},{"vlan":1401},{"vlan":1402},{"vlan":1403},{"vlan":1404},{"vlan":1405},{"vlan":1406},{"vlan":1407},{"vlan":1408},{"vlan":1409},{"vlan":1410},{"vlan":1411},{"vlan":1412},{"vlan":1413},{"vlan":1414},{"vlan":1415},{"vlan":1416},{"vlan":1417},{"vlan":1418},{"vlan":1419},{"vlan":1420},{"vlan":1421},{"vlan":1422},{"vlan":1423},{"vlan":1424},{"vlan":1425},{"vlan":1426},{"vlan":1427},{"vlan":1428},{"vlan":1429},{"vlan":1430},{"vlan":1431},{"vlan":1432},{"vlan":1433},{"vlan":1434},{"vlan":1435},{"vlan":1436},{"vlan":1437},{"vlan":1438},{"vlan":1439},{"vlan":1440},{"vlan":1441},{"vlan":1442},{"vlan":1443},{"vlan":1444},{"vlan":1445},{"vlan":1446},{"vlan":1447},{"vlan":1448},{"vlan":1449},{"vlan":1450},{"vlan":1451},{"vlan":1452},{"vlan":1453},{"vlan":1454},{"vlan":1455},{"vlan":1456},{"vlan":1457},{"vlan":1458},{"vlan":1459},{"vlan":1460},{"vlan":1461},{"vlan":1462},{"vlan":1463},{"vlan":1464},{"vlan":1465},{"vlan":1466},{"vlan":1467},{"vlan":1468},{"vlan":1469},{"vlan":1470},{"vlan":1471},{"vlan":1472},{"vlan":1473},{"vlan":1474},{"vlan":1475},{"vlan":1476},{"vlan":1477},{"vlan":1478},{"vlan":1479},{"vlan":1480},{"vlan":1481},{"vlan":1482},{"vlan":1483},{"vlan":1484},{"vlan":1485},{"vlan":1486},{"vlan":1487},{"vlan":1488},{"vlan":1489},{"vlan":1490},{"vlan":1491},{"vlan":1492},{"vlan":1493},{"vlan":1494},{"vlan":1495},{"vlan":1496},{"vlan":1497},{"vlan":1498},{"vlan":1499},{"vlan":1500},{"vlan":1501},{"vlan":1502},{"vlan":1503},{"vlan":1504},{"vlan":1505},{"vlan":1506},{"vlan":1507},{"vlan":1508},{"vlan":1509},{"vlan":1510},{"vlan":1511},{"vlan":1512},{"vlan":1513},{"vlan":1514},{"vlan":1515},{"vlan":1516},{"vlan":1517},{"vlan":1518},{"vlan":1519},{"vlan":1520},{"vlan":1521},{"vlan":1522},{"vlan":1523},{"vlan":1524},{"vlan":1525},{"vlan":1526},{"vlan":1527},{"vlan":1528},{"vlan":1529},{"vlan":1530},{"vlan":1531},{"vlan":1532},{"vlan":1533},{"vlan":1534},{"vlan":1535},{"vlan":1536},{"vlan":1537},{"vlan":1538},{"vlan":1539},{"vlan":1540},{"vlan":1541},{"vlan":1542},{"vlan":1543},{"vlan":1544},{"vlan":1545},{"vlan":1546},{"vlan":1547},{"vlan":1548},{"vlan":1549},{"vlan":1550},{"vlan":1551},{"vlan":1552},{"vlan":1553},{"vlan":1554},{"vlan":1555},{"vlan":1556},{"vlan":1557},{"vlan":1558},{"vlan":1559},{"vlan":1560},{"vlan":1561},{"vlan":1562},{"vlan":1563},{"vlan":1564},{"vlan":1565},{"vlan":1566},{"vlan":1567},{"vlan":1568},{"vlan":1569},{"vlan":1570},{"vlan":1571},{"vlan":1572},{"vlan":1573},{"vlan":1574},{"vlan":1575},{"vlan":1576},{"vlan":1577},{"vlan":1578},{"vlan":1579},{"vlan":1580},{"vlan":1581},{"vlan":1582},{"vlan":1583},{"vlan":1584},{"vlan":1585},{"vlan":1586},{"vlan":1587},{"vlan":1588},{"vlan":1589},{"vlan":1590},{"vlan":1591},{"vlan":1592},{"vlan":1593},{"vlan":1594},{"vlan":1595},{"vlan":1596},{"vlan":1597},{"vlan":1598},{"vlan":1599},{"vlan":1600},{"vlan":1601},{"vlan":1602},{"vlan":1603},{"vlan":1604},{"vlan":1605},{"vlan":1606},{"vlan":1607},{"vlan":1608},{"vlan":1609},{"vlan":1610},{"vlan":1611},{"vlan":1612},{"vlan":1613},{"vlan":1614},{"vlan":1615},{"vlan":1616},{"vlan":1617},{"vlan":1618},{"vlan":1619},{"vlan":1620},{"vlan":1621},{"vlan":1622},{"vlan":1623},{"vlan":1624},{"vlan":1625},{"vlan":1626},{"vlan":1627},{"vlan":1628},{"vlan":1629},{"vlan":1630},{"vlan":1631},{"vlan":1632},{"vlan":1633},{"vlan":1634},{"vlan":1635},{"vlan":1636},{"vlan":1637},{"vlan":1638},{"vlan":1639},{"vlan":1640},{"vlan":1641},{"vlan":1642},{"vlan":1643},{"vlan":1644},{"vlan":1645},{"vlan":1646},{"vlan":1647},{"vlan":1648},{"vlan":1649},{"vlan":1650},{"vlan":1651},{"vlan":1652},{"vlan":1653},{"vlan":1654},{"vlan":1655},{"vlan":1656},{"vlan":1657},{"vlan":1658},{"vlan":1659},{"vlan":1660},{"vlan":1661},{"vlan":1662},{"vlan":1663},{"vlan":1664},{"vlan":1665},{"vlan":1666},{"vlan":1667},{"vlan":1668},{"vlan":1669},{"vlan":1670},{"vlan":1671},{"vlan":1672},{"vlan":1673},{"vlan":1674},{"vlan":1675},{"vlan":1676},{"vlan":1677},{"vlan":1678},{"vlan":1679},{"vlan":1680},{"vlan":1681},{"vlan":1682},{"vlan":1683},{"vlan":1684},{"vlan":1685},{"vlan":1686},{"vlan":1687},{"vlan":1688},{"vlan":1689},{"vlan":1690},{"vlan":1691},{"vlan":1692},{"vlan":1693},{"vlan":1694},{"vlan":1695},{"vlan":1696},{"vlan":1697},{"vlan":1698},{"vlan":1699},{"vlan":1700},{"vlan":1701},{"vlan":1702},{"vlan":1703},{"vlan":1704},{"vlan":1705},{"vlan":1706},{"vlan":1707},{"vlan":1708},{"vlan":1709},{"vlan":1710},{"vlan":1711},{"vlan":1712},{"vlan":1713},{"vlan":1714},{"vlan":1715},{"vlan":1716},{"vlan":1717},{"vlan":1718},{"vlan":1719},{"vlan":1720},{"vlan":1721},{"vlan":1722},{"vlan":1723},{"vlan":1724},{"vlan":1725},{"vlan":1726},{"vlan":1727},{"vlan":1728},{"vlan":1729},{"vlan":1730},{"vlan":1731},{"vlan":1732},{"vlan":1733},{"vlan":1734},{"vlan":1735},{"vlan":1736},{"vlan":1737},{"vlan":1738},{"vlan":1739},{"vlan":1740},{"vlan":1741},{"vlan":1742},{"vlan":1743},{"vlan":1744},{"vlan":1745},{"vlan":1746},{"vlan":1747},{"vlan":1748},{"vlan":1749},{"vlan":1750},{"vlan":1751},{"vlan":1752},{"vlan":1753},{"vlan":1754},{"vlan":1755},{"vlan":1756},{"vlan":1757},{"vlan":1758},{"vlan":1759},{"vlan":1760},{"vlan":1761},{"vlan":1762},{"vlan":1763},{"vlan":1764},{"vlan":1765},{"vlan":1766},{"vlan":1767},{"vlan":1768},{"vlan":1769},{"vlan":1770},{"vlan":1771},{"vlan":1772},{"vlan":1773},{"vlan":1774},{"vlan":1775},{"vlan":1776},{"vlan":1777},{"vlan":1778},{"vlan":1779},{"vlan":1780},{"vlan":1781},{"vlan":1782},{"vlan":1783},{"vlan":1784},{"vlan":1785},{"vlan":1786},{"vlan":1787},{"vlan":1788},{"vlan":1789},{"vlan":1790},{"vlan":1791},{"vlan":1792},{"vlan":1793},{"vlan":1794},{"vlan":1795},{"vlan":1796},{"vlan":1797},{"vlan":1798},{"vlan":1799},{"vlan":1800},{"vlan":1801},{"vlan":1802},{"vlan":1803},{"vlan":1804},{"vlan":1805},{"vlan":1806},{"vlan":1807},{"vlan":1808},{"vlan":1809},{"vlan":1810},{"vlan":1811},{"vlan":1812},{"vlan":1813},{"vlan":1814},{"vlan":1815},{"vlan":1816},{"vlan":1817},{"vlan":1818},{"vlan":1819},{"vlan":1820},{"vlan":1821},{"vlan":1822},{"vlan":1823},{"vlan":1824},{"vlan":1825},{"vlan":1826},{"vlan":1827},{"vlan":1828},{"vlan":1829},{"vlan":1830},{"vlan":1831},{"vlan":1832},{"vlan":1833},{"vlan":1834},{"vlan":1835},{"vlan":1836},{"vlan":1837},{"vlan":1838},{"vlan":1839},{"vlan":1840},{"vlan":1841},{"vlan":1842},{"vlan":1843},{"vlan":1844},{"vlan":1845},{"vlan":1846},{"vlan":1847},{"vlan":1848},{"vlan":1849},{"vlan":1850},{"vlan":1851},{"vlan":1852},{"vlan":1853},{"vlan":1854},{"vlan":1855},{"vlan":1856},{"vlan":1857},{"vlan":1858},{"vlan":1859},{"vlan":1860},{"vlan":1861},{"vlan":1862},{"vlan":1863},{"vlan":1864},{"vlan":1865},{"vlan":1866},{"vlan":1867},{"vlan":1868},{"vlan":1869},{"vlan":1870},{"vlan":1871},{"vlan":1872},{"vlan":1873},{"vlan":1874},{"vlan":1875},{"vlan":1876},{"vlan":1877},{"vlan":1878},{"vlan":1879},{"vlan":1880},{"vlan":1881},{"vlan":1882},{"vlan":1883},{"vlan":1884},{"vlan":1885},{"vlan":1886},{"vlan":1887},{"vlan":1888},{"vlan":1889},{"vlan":1890},{"vlan":1891},{"vlan":1892},{"vlan":1893},{"vlan":1894},{"vlan":1895},{"vlan":1896},{"vlan":1897},{"vlan":1898},{"vlan":1899},{"vlan":1900},{"vlan":1901},{"vlan":1902},{"vlan":1903},{"vlan":1904},{"vlan":1905},{"vlan":1906},{"vlan":1907},{"vlan":1908},{"vlan":1909},{"vlan":1910},{"vlan":1911},{"vlan":1912},{"vlan":1913},{"vlan":1914},{"vlan":1915},{"vlan":1916},{"vlan":1917},{"vlan":1918},{"vlan":1919},{"vlan":1920},{"vlan":1921},{"vlan":1922},{"vlan":1923},{"vlan":1924},{"vlan":1925},{"vlan":1926},{"vlan":1927},{"vlan":1928},{"vlan":1929},{"vlan":1930},{"vlan":1931},{"vlan":1932},{"vlan":1933},{"vlan":1934},{"vlan":1935},{"vlan":1936},{"vlan":1937},{"vlan":1938},{"vlan":1939},{"vlan":1940},{"vlan":1941},{"vlan":1942},{"vlan":1943},{"vlan":1944},{"vlan":1945},{"vlan":1946},{"vlan":1947},{"vlan":1948},{"vlan":1949},{"vlan":1950},{"vlan":1951},{"vlan":1952},{"vlan":1953},{"vlan":1954},{"vlan":1955},{"vlan":1956},{"vlan":1957},{"vlan":1958},{"vlan":1959},{"vlan":1960},{"vlan":1961},{"vlan":1962},{"vlan":1963},{"vlan":1964},{"vlan":1965},{"vlan":1966},{"vlan":1967},{"vlan":1968},{"vlan":1969},{"vlan":1970},{"vlan":1971},{"vlan":1972},{"vlan":1973},{"vlan":1974},{"vlan":1975},{"vlan":1976},{"vlan":1977},{"vlan":1978},{"vlan":1979},{"vlan":1980},{"vlan":1981},{"vlan":1982},{"vlan":1983},{"vlan":1984},{"vlan":1985},{"vlan":1986},{"vlan":1987},{"vlan":1988},{"vlan":1989},{"vlan":1990},{"vlan":1991},{"vlan":1992},{"vlan":1993},{"vlan":1994},{"vlan":1995},{"vlan":1996},{"vlan":1997},{"vlan":1998},{"vlan":1999},{"vlan":2000},{"vlan":2001},{"vlan":2002},{"vlan":2003},{"vlan":2004},{"vlan":2005},{"vlan":2006},{"vlan":2007},{"vlan":2008},{"vlan":2009},{"vlan":2010},{"vlan":2011},{"vlan":2012},{"vlan":2013},{"vlan":2014},{"vlan":2015},{"vlan":2016},{"vlan":2017},{"vlan":2018},{"vlan":2019},{"vlan":2020},{"vlan":2021},{"vlan":2022},{"vlan":2023},{"vlan":2024},{"vlan":2025},{"vlan":2026},{"vlan":2027},{"vlan":2028},{"vlan":2029},{"vlan":2030},{"vlan":2031},{"vlan":2032},{"vlan":2033},{"vlan":2034},{"vlan":2035},{"vlan":2036},{"vlan":2037},{"vlan":2038},{"vlan":2039},{"vlan":2040},{"vlan":2041},{"vlan":2042},{"vlan":2043},{"vlan":2044},{"vlan":2045},{"vlan":2046},{"vlan":2047},{"vlan":2048},{"vlan":2049},{"vlan":2050},{"vlan":2051},{"vlan":2052},{"vlan":2053},{"vlan":2054},{"vlan":2055},{"vlan":2056},{"vlan":2057},{"vlan":2058},{"vlan":2059},{"vlan":2060},{"vlan":2061},{"vlan":2062},{"vlan":2063},{"vlan":2064},{"vlan":2065},{"vlan":2066},{"vlan":2067},{"vlan":2068},{"vlan":2069},{"vlan":2070},{"vlan":2071},{"vlan":2072},{"vlan":2073},{"vlan":2074},{"vlan":2075},{"vlan":2076},{"vlan":2077},{"vlan":2078},{"vlan":2079},{"vlan":2080},{"vlan":2081},{"vlan":2082},{"vlan":2083},{"vlan":2084},{"vlan":2085},{"vlan":2086},{"vlan":2087},{"vlan":2088},{"vlan":2089},{"vlan":2090},{"vlan":2091},{"vlan":2092},{"vlan":2093},{"vlan":2094},{"vlan":2095},{"vlan":2096},{"vlan":2097},{"vlan":2098},{"vlan":2099},{"vlan":2100},{"vlan":2101},{"vlan":2102},{"vlan":2103},{"vlan":2104},{"vlan":2105},{"vlan":2106},{"vlan":2107},{"vlan":2108},{"vlan":2109},{"vlan":2110},{"vlan":2111},{"vlan":2112},{"vlan":2113},{"vlan":2114},{"vlan":2115},{"vlan":2116},{"vlan":2117},{"vlan":2118},{"vlan":2119},{"vlan":2120},{"vlan":2121},{"vlan":2122},{"vlan":2123},{"vlan":2124},{"vlan":2125},{"vlan":2126},{"vlan":2127},{"vlan":2128},{"vlan":2129},{"vlan":2130},{"vlan":2131},{"vlan":2132},{"vlan":2133},{"vlan":2134},{"vlan":2135},{"vlan":2136},{"vlan":2137},{"vlan":2138},{"vlan":2139},{"vlan":2140},{"vlan":2141},{"vlan":2142},{"vlan":2143},{"vlan":2144},{"vlan":2145},{"vlan":2146},{"vlan":2147},{"vlan":2148},{"vlan":2149},{"vlan":2150},{"vlan":2151},{"vlan":2152},{"vlan":2153},{"vlan":2154},{"vlan":2155},{"vlan":2156},{"vlan":2157},{"vlan":2158},{"vlan":2159},{"vlan":2160},{"vlan":2161},{"vlan":2162},{"vlan":2163},{"vlan":2164},{"vlan":2165},{"vlan":2166},{"vlan":2167},{"vlan":2168},{"vlan":2169},{"vlan":2170},{"vlan":2171},{"vlan":2172},{"vlan":2173},{"vlan":2174},{"vlan":2175},{"vlan":2176},{"vlan":2177},{"vlan":2178},{"vlan":2179},{"vlan":2180},{"vlan":2181},{"vlan":2182},{"vlan":2183},{"vlan":2184},{"vlan":2185},{"vlan":2186},{"vlan":2187},{"vlan":2188},{"vlan":2189},{"vlan":2190},{"vlan":2191},{"vlan":2192},{"vlan":2193},{"vlan":2194},{"vlan":2195},{"vlan":2196},{"vlan":2197},{"vlan":2198},{"vlan":2199},{"vlan":2200},{"vlan":2201},{"vlan":2202},{"vlan":2203},{"vlan":2204},{"vlan":2205},{"vlan":2206},{"vlan":2207},{"vlan":2208},{"vlan":2209},{"vlan":2210},{"vlan":2211},{"vlan":2212},{"vlan":2213},{"vlan":2214},{"vlan":2215},{"vlan":2216},{"vlan":2217},{"vlan":2218},{"vlan":2219},{"vlan":2220},{"vlan":2221},{"vlan":2222},{"vlan":2223},{"vlan":2224},{"vlan":2225},{"vlan":2226},{"vlan":2227},{"vlan":2228},{"vlan":2229},{"vlan":2230},{"vlan":2231},{"vlan":2232},{"vlan":2233},{"vlan":2234},{"vlan":2235},{"vlan":2236},{"vlan":2237},{"vlan":2238},{"vlan":2239},{"vlan":2240},{"vlan":2241},{"vlan":2242},{"vlan":2243},{"vlan":2244},{"vlan":2245},{"vlan":2246},{"vlan":2247},{"vlan":2248},{"vlan":2249},{"vlan":2250},{"vlan":2251},{"vlan":2252},{"vlan":2253},{"vlan":2254},{"vlan":2255},{"vlan":2256},{"vlan":2257},{"vlan":2258},{"vlan":2259},{"vlan":2260},{"vlan":2261},{"vlan":2262},{"vlan":2263},{"vlan":2264},{"vlan":2265},{"vlan":2266},{"vlan":2267},{"vlan":2268},{"vlan":2269},{"vlan":2270},{"vlan":2271},{"vlan":2272},{"vlan":2273},{"vlan":2274},{"vlan":2275},{"vlan":2276},{"vlan":2277},{"vlan":2278},{"vlan":2279},{"vlan":2280},{"vlan":2281},{"vlan":2282},{"vlan":2283},{"vlan":2284},{"vlan":2285},{"vlan":2286},{"vlan":2287},{"vlan":2288},{"vlan":2289},{"vlan":2290},{"vlan":2291},{"vlan":2292},{"vlan":2293},{"vlan":2294},{"vlan":2295},{"vlan":2296},{"vlan":2297},{"vlan":2298},{"vlan":2299},{"vlan":2300},{"vlan":2301},{"vlan":2302},{"vlan":2303},{"vlan":2304},{"vlan":2305},{"vlan":2306},{"vlan":2307},{"vlan":2308},{"vlan":2309},{"vlan":2310},{"vlan":2311},{"vlan":2312},{"vlan":2313},{"vlan":2314},{"vlan":2315},{"vlan":2316},{"vlan":2317},{"vlan":2318},{"vlan":2319},{"vlan":2320},{"vlan":2321},{"vlan":2322},{"vlan":2323},{"vlan":2324},{"vlan":2325},{"vlan":2326},{"vlan":2327},{"vlan":2328},{"vlan":2329},{"vlan":2330},{"vlan":2331},{"vlan":2332},{"vlan":2333},{"vlan":2334},{"vlan":2335},{"vlan":2336},{"vlan":2337},{"vlan":2338},{"vlan":2339},{"vlan":2340},{"vlan":2341},{"vlan":2342},{"vlan":2343},{"vlan":2344},{"vlan":2345},{"vlan":2346},{"vlan":2347},{"vlan":2348},{"vlan":2349},{"vlan":2350},{"vlan":2351},{"vlan":2352},{"vlan":2353},{"vlan":2354},{"vlan":2355},{"vlan":2356},{"vlan":2357},{"vlan":2358},{"vlan":2359},{"vlan":2360},{"vlan":2361},{"vlan":2362},{"vlan":2363},{"vlan":2364},{"vlan":2365},{"vlan":2366},{"vlan":2367},{"vlan":2368},{"vlan":2369},{"vlan":2370},{"vlan":2371},{"vlan":2372},{"vlan":2373},{"vlan":2374},{"vlan":2375},{"vlan":2376},{"vlan":2377},{"vlan":2378},{"vlan":2379},{"vlan":2380},{"vlan":2381},{"vlan":2382},{"vlan":2383},{"vlan":2384},{"vlan":2385},{"vlan":2386},{"vlan":2387},{"vlan":2388},{"vlan":2389},{"vlan":2390},{"vlan":2391},{"vlan":2392},{"vlan":2393},{"vlan":2394},{"vlan":2395},{"vlan":2396},{"vlan":2397},{"vlan":2398},{"vlan":2399},{"vlan":2400},{"vlan":2401},{"vlan":2402},{"vlan":2403},{"vlan":2404},{"vlan":2405},{"vlan":2406},{"vlan":2407},{"vlan":2408},{"vlan":2409},{"vlan":2410},{"vlan":2411},{"vlan":2412},{"vlan":2413},{"vlan":2414},{"vlan":2415},{"vlan":2416},{"vlan":2417},{"vlan":2418},{"vlan":2419},{"vlan":2420},{"vlan":2421},{"vlan":2422},{"vlan":2423},{"vlan":2424},{"vlan":2425},{"vlan":2426},{"vlan":2427},{"vlan":2428},{"vlan":2429},{"vlan":2430},{"vlan":2431},{"vlan":2432},{"vlan":2433},{"vlan":2434},{"vlan":2435},{"vlan":2436},{"vlan":2437},{"vlan":2438},{"vlan":2439},{"vlan":2440},{"vlan":2441},{"vlan":2442},{"vlan":2443},{"vlan":2444},{"vlan":2445},{"vlan":2446},{"vlan":2447},{"vlan":2448},{"vlan":2449},{"vlan":2450},{"vlan":2451},{"vlan":2452},{"vlan":2453},{"vlan":2454},{"vlan":2455},{"vlan":2456},{"vlan":2457},{"vlan":2458},{"vlan":2459},{"vlan":2460},{"vlan":2461},{"vlan":2462},{"vlan":2463},{"vlan":2464},{"vlan":2465},{"vlan":2466},{"vlan":2467},{"vlan":2468},{"vlan":2469},{"vlan":2470},{"vlan":2471},{"vlan":2472},{"vlan":2473},{"vlan":2474},{"vlan":2475},{"vlan":2476},{"vlan":2477},{"vlan":2478},{"vlan":2479},{"vlan":2480},{"vlan":2481},{"vlan":2482},{"vlan":2483},{"vlan":2484},{"vlan":2485},{"vlan":2486},{"vlan":2487},{"vlan":2488},{"vlan":2489},{"vlan":2490},{"vlan":2491},{"vlan":2492},{"vlan":2493},{"vlan":2494},{"vlan":2495},{"vlan":2496},{"vlan":2497},{"vlan":2498},{"vlan":2499},{"vlan":2500},{"vlan":2501},{"vlan":2502},{"vlan":2503},{"vlan":2504},{"vlan":2505},{"vlan":2506},{"vlan":2507},{"vlan":2508},{"vlan":2509},{"vlan":2510},{"vlan":2511},{"vlan":2512},{"vlan":2513},{"vlan":2514},{"vlan":2515},{"vlan":2516},{"vlan":2517},{"vlan":2518},{"vlan":2519},{"vlan":2520},{"vlan":2521},{"vlan":2522},{"vlan":2523},{"vlan":2524},{"vlan":2525},{"vlan":2526},{"vlan":2527},{"vlan":2528},{"vlan":2529},{"vlan":2530},{"vlan":2531},{"vlan":2532},{"vlan":2533},{"vlan":2534},{"vlan":2535},{"vlan":2536},{"vlan":2537},{"vlan":2538},{"vlan":2539},{"vlan":2540},{"vlan":2541},{"vlan":2542},{"vlan":2543},{"vlan":2544},{"vlan":2545},{"vlan":2546},{"vlan":2547},{"vlan":2548},{"vlan":2549},{"vlan":2550},{"vlan":2551},{"vlan":2552},{"vlan":2553},{"vlan":2554},{"vlan":2555},{"vlan":2556},{"vlan":2557},{"vlan":2558},{"vlan":2559},{"vlan":2560},{"vlan":2561},{"vlan":2562},{"vlan":2563},{"vlan":2564},{"vlan":2565},{"vlan":2566},{"vlan":2567},{"vlan":2568},{"vlan":2569},{"vlan":2570},{"vlan":2571},{"vlan":2572},{"vlan":2573},{"vlan":2574},{"vlan":2575},{"vlan":2576},{"vlan":2577},{"vlan":2578},{"vlan":2579},{"vlan":2580},{"vlan":2581},{"vlan":2582},{"vlan":2583},{"vlan":2584},{"vlan":2585},{"vlan":2586},{"vlan":2587},{"vlan":2588},{"vlan":2589},{"vlan":2590},{"vlan":2591},{"vlan":2592},{"vlan":2593},{"vlan":2594},{"vlan":2595},{"vlan":2596},{"vlan":2597},{"vlan":2598},{"vlan":2599},{"vlan":2600},{"vlan":2601},{"vlan":2602},{"vlan":2603},{"vlan":2604},{"vlan":2605},{"vlan":2606},{"vlan":2607},{"vlan":2608},{"vlan":2609},{"vlan":2610},{"vlan":2611},{"vlan":2612},{"vlan":2613},{"vlan":2614},{"vlan":2615},{"vlan":2616},{"vlan":2617},{"vlan":2618},{"vlan":2619},{"vlan":2620},{"vlan":2621},{"vlan":2622},{"vlan":2623},{"vlan":2624},{"vlan":2625},{"vlan":2626},{"vlan":2627},{"vlan":2628},{"vlan":2629},{"vlan":2630},{"vlan":2631},{"vlan":2632},{"vlan":2633},{"vlan":2634},{"vlan":2635},{"vlan":2636},{"vlan":2637},{"vlan":2638},{"vlan":2639},{"vlan":2640},{"vlan":2641},{"vlan":2642},{"vlan":2643},{"vlan":2644},{"vlan":2645},{"vlan":2646},{"vlan":2647},{"vlan":2648},{"vlan":2649},{"vlan":2650},{"vlan":2651},{"vlan":2652},{"vlan":2653},{"vlan":2654},{"vlan":2655},{"vlan":2656},{"vlan":2657},{"vlan":2658},{"vlan":2659},{"vlan":2660},{"vlan":2661},{"vlan":2662},{"vlan":2663},{"vlan":2664},{"vlan":2665},{"vlan":2666},{"vlan":2667},{"vlan":2668},{"vlan":2669},{"vlan":2670},{"vlan":2671},{"vlan":2672},{"vlan":2673},{"vlan":2674},{"vlan":2675},{"vlan":2676},{"vlan":2677},{"vlan":2678},{"vlan":2679},{"vlan":2680},{"vlan":2681},{"vlan":2682},{"vlan":2683},{"vlan":2684},{"vlan":2685},{"vlan":2686},{"vlan":2687},{"vlan":2688},{"vlan":2689},{"vlan":2690},{"vlan":2691},{"vlan":2692},{"vlan":2693},{"vlan":2694},{"vlan":2695},{"vlan":2696},{"vlan":2697},{"vlan":2698},{"vlan":2699},{"vlan":2700},{"vlan":2701},{"vlan":2702},{"vlan":2703},{"vlan":2704},{"vlan":2705},{"vlan":2706},{"vlan":2707},{"vlan":2708},{"vlan":2709},{"vlan":2710},{"vlan":2711},{"vlan":2712},{"vlan":2713},{"vlan":2714},{"vlan":2715},{"vlan":2716},{"vlan":2717},{"vlan":2718},{"vlan":2719},{"vlan":2720},{"vlan":2721},{"vlan":2722},{"vlan":2723},{"vlan":2724},{"vlan":2725},{"vlan":2726},{"vlan":2727},{"vlan":2728},{"vlan":2729},{"vlan":2730},{"vlan":2731},{"vlan":2732},{"vlan":2733},{"vlan":2734},{"vlan":2735},{"vlan":2736},{"vlan":2737},{"vlan":2738},{"vlan":2739},{"vlan":2740},{"vlan":2741},{"vlan":2742},{"vlan":2743},{"vlan":2744},{"vlan":2745},{"vlan":2746},{"vlan":2747},{"vlan":2748},{"vlan":2749},{"vlan":2750},{"vlan":2751},{"vlan":2752},{"vlan":2753},{"vlan":2754},{"vlan":2755},{"vlan":2756},{"vlan":2757},{"vlan":2758},{"vlan":2759},{"vlan":2760},{"vlan":2761},{"vlan":2762},{"vlan":2763},{"vlan":2764},{"vlan":2765},{"vlan":2766},{"vlan":2767},{"vlan":2768},{"vlan":2769},{"vlan":2770},{"vlan":2771},{"vlan":2772},{"vlan":2773},{"vlan":2774},{"vlan":2775},{"vlan":2776},{"vlan":2777},{"vlan":2778},{"vlan":2779},{"vlan":2780},{"vlan":2781},{"vlan":2782},{"vlan":2783},{"vlan":2784},{"vlan":2785},{"vlan":2786},{"vlan":2787},{"vlan":2788},{"vlan":2789},{"vlan":2790},{"vlan":2791},{"vlan":2792},{"vlan":2793},{"vlan":2794},{"vlan":2795},{"vlan":2796},{"vlan":2797},{"vlan":2798},{"vlan":2799},{"vlan":2800},{"vlan":2801},{"vlan":2802},{"vlan":2803},{"vlan":2804},{"vlan":2805},{"vlan":2806},{"vlan":2807},{"vlan":2808},{"vlan":2809},{"vlan":2810},{"vlan":2811},{"vlan":2812},{"vlan":2813},{"vlan":2814},{"vlan":2815},{"vlan":2816},{"vlan":2817},{"vlan":2818},{"vlan":2819},{"vlan":2820},{"vlan":2821},{"vlan":2822},{"vlan":2823},{"vlan":2824},{"vlan":2825},{"vlan":2826},{"vlan":2827},{"vlan":2828},{"vlan":2829},{"vlan":2830},{"vlan":2831},{"vlan":2832},{"vlan":2833},{"vlan":2834},{"vlan":2835},{"vlan":2836},{"vlan":2837},{"vlan":2838},{"vlan":2839},{"vlan":2840},{"vlan":2841},{"vlan":2842},{"vlan":2843},{"vlan":2844},{"vlan":2845},{"vlan":2846},{"vlan":2847},{"vlan":2848},{"vlan":2849},{"vlan":2850},{"vlan":2851},{"vlan":2852},{"vlan":2853},{"vlan":2854},{"vlan":2855},{"vlan":2856},{"vlan":2857},{"vlan":2858},{"vlan":2859},{"vlan":2860},{"vlan":2861},{"vlan":2862},{"vlan":2863},{"vlan":2864},{"vlan":2865},{"vlan":2866},{"vlan":2867},{"vlan":2868},{"vlan":2869},{"vlan":2870},{"vlan":2871},{"vlan":2872},{"vlan":2873},{"vlan":2874},{"vlan":2875},{"vlan":2876},{"vlan":2877},{"vlan":2878},{"vlan":2879},{"vlan":2880},{"vlan":2881},{"vlan":2882},{"vlan":2883},{"vlan":2884},{"vlan":2885},{"vlan":2886},{"vlan":2887},{"vlan":2888},{"vlan":2889},{"vlan":2890},{"vlan":2891},{"vlan":2892},{"vlan":2893},{"vlan":2894},{"vlan":2895},{"vlan":2896},{"vlan":2897},{"vlan":2898},{"vlan":2899},{"vlan":2900},{"vlan":2901},{"vlan":2902},{"vlan":2903},{"vlan":2904},{"vlan":2905},{"vlan":2906},{"vlan":2907},{"vlan":2908},{"vlan":2909},{"vlan":2910},{"vlan":2911},{"vlan":2912},{"vlan":2913},{"vlan":2914},{"vlan":2915},{"vlan":2916},{"vlan":2917},{"vlan":2918},{"vlan":2919},{"vlan":2920},{"vlan":2921},{"vlan":2922},{"vlan":2923},{"vlan":2924},{"vlan":2925},{"vlan":2926},{"vlan":2927},{"vlan":2928},{"vlan":2929},{"vlan":2930},{"vlan":2931},{"vlan":2932},{"vlan":2933},{"vlan":2934},{"vlan":2935},{"vlan":2936},{"vlan":2937},{"vlan":2938},{"vlan":2939},{"vlan":2940},{"vlan":2941},{"vlan":2942},{"vlan":2943},{"vlan":2944},{"vlan":2945},{"vlan":2946},{"vlan":2947},{"vlan":2948},{"vlan":2949},{"vlan":2950},{"vlan":2951},{"vlan":2952},{"vlan":2953},{"vlan":2954},{"vlan":2955},{"vlan":2956},{"vlan":2957},{"vlan":2958},{"vlan":2959},{"vlan":2960},{"vlan":2961},{"vlan":2962},{"vlan":2963},{"vlan":2964},{"vlan":2965},{"vlan":2966},{"vlan":2967},{"vlan":2968},{"vlan":2969},{"vlan":2970},{"vlan":2971},{"vlan":2972},{"vlan":2973},{"vlan":2974},{"vlan":2975},{"vlan":2976},{"vlan":2977},{"vlan":2978},{"vlan":2979},{"vlan":2980},{"vlan":2981},{"vlan":2982},{"vlan":2983},{"vlan":2984},{"vlan":2985},{"vlan":2986},{"vlan":2987},{"vlan":2988},{"vlan":2989},{"vlan":2990},{"vlan":2991},{"vlan":2992},{"vlan":2993},{"vlan":2994},{"vlan":2995},{"vlan":2996},{"vlan":2997},{"vlan":2998},{"vlan":2999},{"vlan":3000},{"vlan":3001},{"vlan":3002},{"vlan":3003},{"vlan":3004},{"vlan":3005},{"vlan":3006},{"vlan":3007},{"vlan":3008},{"vlan":3009},{"vlan":3010},{"vlan":3011},{"vlan":3012},{"vlan":3013},{"vlan":3014},{"vlan":3015},{"vlan":3016},{"vlan":3017},{"vlan":3018},{"vlan":3019},{"vlan":3020},{"vlan":3021},{"vlan":3022},{"vlan":3023},{"vlan":3024},{"vlan":3025},{"vlan":3026},{"vlan":3027},{"vlan":3028},{"vlan":3029},{"vlan":3030},{"vlan":3031},{"vlan":3032},{"vlan":3033},{"vlan":3034},{"vlan":3035},{"vlan":3036},{"vlan":3037},{"vlan":3038},{"vlan":3039},{"vlan":3040},{"vlan":3041},{"vlan":3042},{"vlan":3043},{"vlan":3044},{"vlan":3045},{"vlan":3046},{"vlan":3047},{"vlan":3048},{"vlan":3049},{"vlan":3050},{"vlan":3051},{"vlan":3052},{"vlan":3053},{"vlan":3054},{"vlan":3055},{"vlan":3056},{"vlan":3057},{"vlan":3058},{"vlan":3059},{"vlan":3060},{"vlan":3061},{"vlan":3062},{"vlan":3063},{"vlan":3064},{"vlan":3065},{"vlan":3066},{"vlan":3067},{"vlan":3068},{"vlan":3069},{"vlan":3070},{"vlan":3071},{"vlan":3072},{"vlan":3073},{"vlan":3074},{"vlan":3075},{"vlan":3076},{"vlan":3077},{"vlan":3078},{"vlan":3079},{"vlan":3080},{"vlan":3081},{"vlan":3082},{"vlan":3083},{"vlan":3084},{"vlan":3085},{"vlan":3086},{"vlan":3087},{"vlan":3088},{"vlan":3089},{"vlan":3090},{"vlan":3091},{"vlan":3092},{"vlan":3093},{"vlan":3094},{"vlan":3095},{"vlan":3096},{"vlan":3097},{"vlan":3098},{"vlan":3099},{"vlan":3100},{"vlan":3101},{"vlan":3102},{"vlan":3103},{"vlan":3104},{"vlan":3105},{"vlan":3106},{"vlan":3107},{"vlan":3108},{"vlan":3109},{"vlan":3110},{"vlan":3111},{"vlan":3112},{"vlan":3113},{"vlan":3114},{"vlan":3115},{"vlan":3116},{"vlan":3117},{"vlan":3118},{"vlan":3119},{"vlan":3120},{"vlan":3121},{"vlan":3122},{"vlan":3123},{"vlan":3124},{"vlan":3125},{"vlan":3126},{"vlan":3127},{"vlan":3128},{"vlan":3129},{"vlan":3130},{"vlan":3131},{"vlan":3132},{"vlan":3133},{"vlan":3134},{"vlan":3135},{"vlan":3136},{"vlan":3137},{"vlan":3138},{"vlan":3139},{"vlan":3140},{"vlan":3141},{"vlan":3142},{"vlan":3143},{"vlan":3144},{"vlan":3145},{"vlan":3146},{"vlan":3147},{"vlan":3148},{"vlan":3149},{"vlan":3150},{"vlan":3151},{"vlan":3152},{"vlan":3153},{"vlan":3154},{"vlan":3155},{"vlan":3156},{"vlan":3157},{"vlan":3158},{"vlan":3159},{"vlan":3160},{"vlan":3161},{"vlan":3162},{"vlan":3163},{"vlan":3164},{"vlan":3165},{"vlan":3166},{"vlan":3167},{"vlan":3168},{"vlan":3169},{"vlan":3170},{"vlan":3171},{"vlan":3172},{"vlan":3173},{"vlan":3174},{"vlan":3175},{"vlan":3176},{"vlan":3177},{"vlan":3178},{"vlan":3179},{"vlan":3180},{"vlan":3181},{"vlan":3182},{"vlan":3183},{"vlan":3184},{"vlan":3185},{"vlan":3186},{"vlan":3187},{"vlan":3188},{"vlan":3189},{"vlan":3190},{"vlan":3191},{"vlan":3192},{"vlan":3193},{"vlan":3194},{"vlan":3195},{"vlan":3196},{"vlan":3197},{"vlan":3198},{"vlan":3199},{"vlan":3200},{"vlan":3201},{"vlan":3202},{"vlan":3203},{"vlan":3204},{"vlan":3205},{"vlan":3206},{"vlan":3207},{"vlan":3208},{"vlan":3209},{"vlan":3210},{"vlan":3211},{"vlan":3212},{"vlan":3213},{"vlan":3214},{"vlan":3215},{"vlan":3216},{"vlan":3217},{"vlan":3218},{"vlan":3219},{"vlan":3220},{"vlan":3221},{"vlan":3222},{"vlan":3223},{"vlan":3224},{"vlan":3225},{"vlan":3226},{"vlan":3227},{"vlan":3228},{"vlan":3229},{"vlan":3230},{"vlan":3231},{"vlan":3232},{"vlan":3233},{"vlan":3234},{"vlan":3235},{"vlan":3236},{"vlan":3237},{"vlan":3238},{"vlan":3239},{"vlan":3240},{"vlan":3241},{"vlan":3242},{"vlan":3243},{"vlan":3244},{"vlan":3245},{"vlan":3246},{"vlan":3247},{"vlan":3248},{"vlan":3249},{"vlan":3250},{"vlan":3251},{"vlan":3252},{"vlan":3253},{"vlan":3254},{"vlan":3255},{"vlan":3256},{"vlan":3257},{"vlan":3258},{"vlan":3259},{"vlan":3260},{"vlan":3261},{"vlan":3262},{"vlan":3263},{"vlan":3264},{"vlan":3265},{"vlan":3266},{"vlan":3267},{"vlan":3268},{"vlan":3269},{"vlan":3270},{"vlan":3271},{"vlan":3272},{"vlan":3273},{"vlan":3274},{"vlan":3275},{"vlan":3276},{"vlan":3277},{"vlan":3278},{"vlan":3279},{"vlan":3280},{"vlan":3281},{"vlan":3282},{"vlan":3283},{"vlan":3284},{"vlan":3285},{"vlan":3286},{"vlan":3287},{"vlan":3288},{"vlan":3289},{"vlan":3290},{"vlan":3291},{"vlan":3292},{"vlan":3293},{"vlan":3294},{"vlan":3295},{"vlan":3296},{"vlan":3297},{"vlan":3298},{"vlan":3299},{"vlan":3300},{"vlan":3301},{"vlan":3302},{"vlan":3303},{"vlan":3304},{"vlan":3305},{"vlan":3306},{"vlan":3307},{"vlan":3308},{"vlan":3309},{"vlan":3310},{"vlan":3311},{"vlan":3312},{"vlan":3313},{"vlan":3314},{"vlan":3315},{"vlan":3316},{"vlan":3317},{"vlan":3318},{"vlan":3319},{"vlan":3320},{"vlan":3321},{"vlan":3322},{"vlan":3323},{"vlan":3324},{"vlan":3325},{"vlan":3326},{"vlan":3327},{"vlan":3328},{"vlan":3329},{"vlan":3330},{"vlan":3331},{"vlan":3332},{"vlan":3333},{"vlan":3334},{"vlan":3335},{"vlan":3336},{"vlan":3337},{"vlan":3338},{"vlan":3339},{"vlan":3340},{"vlan":3341},{"vlan":3342},{"vlan":3343},{"vlan":3344},{"vlan":3345},{"vlan":3346},{"vlan":3347},{"vlan":3348},{"vlan":3349},{"vlan":3350},{"vlan":3351},{"vlan":3352},{"vlan":3353},{"vlan":3354},{"vlan":3355},{"vlan":3356},{"vlan":3357},{"vlan":3358},{"vlan":3359},{"vlan":3360},{"vlan":3361},{"vlan":3362},{"vlan":3363},{"vlan":3364},{"vlan":3365},{"vlan":3366},{"vlan":3367},{"vlan":3368},{"vlan":3369},{"vlan":3370},{"vlan":3371},{"vlan":3372},{"vlan":3373},{"vlan":3374},{"vlan":3375},{"vlan":3376},{"vlan":3377},{"vlan":3378},{"vlan":3379},{"vlan":3380},{"vlan":3381},{"vlan":3382},{"vlan":3383},{"vlan":3384},{"vlan":3385},{"vlan":3386},{"vlan":3387},{"vlan":3388},{"vlan":3389},{"vlan":3390},{"vlan":3391},{"vlan":3392},{"vlan":3393},{"vlan":3394},{"vlan":3395},{"vlan":3396},{"vlan":3397},{"vlan":3398},{"vlan":3399},{"vlan":3400},{"vlan":3401},{"vlan":3402},{"vlan":3403},{"vlan":3404},{"vlan":3405},{"vlan":3406},{"vlan":3407},{"vlan":3408},{"vlan":3409},{"vlan":3410},{"vlan":3411},{"vlan":3412},{"vlan":3413},{"vlan":3414},{"vlan":3415},{"vlan":3416},{"vlan":3417},{"vlan":3418},{"vlan":3419},{"vlan":3420},{"vlan":3421},{"vlan":3422},{"vlan":3423},{"vlan":3424},{"vlan":3425},{"vlan":3426},{"vlan":3427},{"vlan":3428},{"vlan":3429},{"vlan":3430},{"vlan":3431},{"vlan":3432},{"vlan":3433},{"vlan":3434},{"vlan":3435},{"vlan":3436},{"vlan":3437},{"vlan":3438},{"vlan":3439},{"vlan":3440},{"vlan":3441},{"vlan":3442},{"vlan":3443},{"vlan":3444},{"vlan":3445},{"vlan":3446},{"vlan":3447},{"vlan":3448},{"vlan":3449},{"vlan":3450},{"vlan":3451},{"vlan":3452},{"vlan":3453},{"vlan":3454},{"vlan":3455},{"vlan":3456},{"vlan":3457},{"vlan":3458},{"vlan":3459},{"vlan":3460},{"vlan":3461},{"vlan":3462},{"vlan":3463},{"vlan":3464},{"vlan":3465},{"vlan":3466},{"vlan":3467},{"vlan":3468},{"vlan":3469},{"vlan":3470},{"vlan":3471},{"vlan":3472},{"vlan":3473},{"vlan":3474},{"vlan":3475},{"vlan":3476},{"vlan":3477},{"vlan":3478},{"vlan":3479},{"vlan":3480},{"vlan":3481},{"vlan":3482},{"vlan":3483},{"vlan":3484},{"vlan":3485},{"vlan":3486},{"vlan":3487},{"vlan":3488},{"vlan":3489},{"vlan":3490},{"vlan":3491},{"vlan":3492},{"vlan":3493},{"vlan":3494},{"vlan":3495},{"vlan":3496},{"vlan":3497},{"vlan":3498},{"vlan":3499},{"vlan":3500},{"vlan":3501},{"vlan":3502},{"vlan":3503},{"vlan":3504},{"vlan":3505},{"vlan":3506},{"vlan":3507},{"vlan":3508},{"vlan":3509},{"vlan":3510},{"vlan":3511},{"vlan":3512},{"vlan":3513},{"vlan":3514},{"vlan":3515},{"vlan":3516},{"vlan":3517},{"vlan":3518},{"vlan":3519},{"vlan":3520},{"vlan":3521},{"vlan":3522},{"vlan":3523},{"vlan":3524},{"vlan":3525},{"vlan":3526},{"vlan":3527},{"vlan":3528},{"vlan":3529},{"vlan":3530},{"vlan":3531},{"vlan":3532},{"vlan":3533},{"vlan":3534},{"vlan":3535},{"vlan":3536},{"vlan":3537},{"vlan":3538},{"vlan":3539},{"vlan":3540},{"vlan":3541},{"vlan":3542},{"vlan":3543},{"vlan":3544},{"vlan":3545},{"vlan":3546},{"vlan":3547},{"vlan":3548},{"vlan":3549},{"vlan":3550},{"vlan":3551},{"vlan":3552},{"vlan":3553},{"vlan":3554},{"vlan":3555},{"vlan":3556},{"vlan":3557},{"vlan":3558},{"vlan":3559},{"vlan":3560},{"vlan":3561},{"vlan":3562},{"vlan":3563},{"vlan":3564},{"vlan":3565},{"vlan":3566},{"vlan":3567},{"vlan":3568},{"vlan":3569},{"vlan":3570},{"vlan":3571},{"vlan":3572},{"vlan":3573},{"vlan":3574},{"vlan":3575},{"vlan":3576},{"vlan":3577},{"vlan":3578},{"vlan":3579},{"vlan":3580},{"vlan":3581},{"vlan":3582},{"vlan":3583},{"vlan":3584},{"vlan":3585},{"vlan":3586},{"vlan":3587},{"vlan":3588},{"vlan":3589},{"vlan":3590},{"vlan":3591},{"vlan":3592},{"vlan":3593},{"vlan":3594},{"vlan":3595},{"vlan":3596},{"vlan":3597},{"vlan":3598},{"vlan":3599},{"vlan":3600},{"vlan":3601},{"vlan":3602},{"vlan":3603},{"vlan":3604},{"vlan":3605},{"vlan":3606},{"vlan":3607},{"vlan":3608},{"vlan":3609},{"vlan":3610},{"vlan":3611},{"vlan":3612},{"vlan":3613},{"vlan":3614},{"vlan":3615},{"vlan":3616},{"vlan":3617},{"vlan":3618},{"vlan":3619},{"vlan":3620},{"vlan":3621},{"vlan":3622},{"vlan":3623},{"vlan":3624},{"vlan":3625},{"vlan":3626},{"vlan":3627},{"vlan":3628},{"vlan":3629},{"vlan":3630},{"vlan":3631},{"vlan":3632},{"vlan":3633},{"vlan":3634},{"vlan":3635},{"vlan":3636},{"vlan":3637},{"vlan":3638},{"vlan":3639},{"vlan":3640},{"vlan":3641},{"vlan":3642},{"vlan":3643},{"vlan":3644},{"vlan":3645},{"vlan":3646},{"vlan":3647},{"vlan":3648},{"vlan":3649},{"vlan":3650},{"vlan":3651},{"vlan":3652},{"vlan":3653},{"vlan":3654},{"vlan":3655},{"vlan":3656},{"vlan":3657},{"vlan":3658},{"vlan":3659},{"vlan":3660},{"vlan":3661},{"vlan":3662},{"vlan":3663},{"vlan":3664},{"vlan":3665},{"vlan":3666},{"vlan":3667},{"vlan":3668},{"vlan":3669},{"vlan":3670},{"vlan":3671},{"vlan":3672},{"vlan":3673},{"vlan":3674},{"vlan":3675},{"vlan":3676},{"vlan":3677},{"vlan":3678},{"vlan":3679},{"vlan":3680},{"vlan":3681},{"vlan":3682},{"vlan":3683},{"vlan":3684},{"vlan":3685},{"vlan":3686},{"vlan":3687},{"vlan":3688},{"vlan":3689},{"vlan":3690},{"vlan":3691},{"vlan":3692},{"vlan":3693},{"vlan":3694},{"vlan":3695},{"vlan":3696},{"vlan":3697},{"vlan":3698},{"vlan":3699},{"vlan":3700},{"vlan":3701},{"vlan":3702},{"vlan":3703},{"vlan":3704},{"vlan":3705},{"vlan":3706},{"vlan":3707},{"vlan":3708},{"vlan":3709},{"vlan":3710},{"vlan":3711},{"vlan":3712},{"vlan":3713},{"vlan":3714},{"vlan":3715},{"vlan":3716},{"vlan":3717},{"vlan":3718},{"vlan":3719},{"vlan":3720},{"vlan":3721},{"vlan":3722},{"vlan":3723},{"vlan":3724},{"vlan":3725},{"vlan":3726},{"vlan":3727},{"vlan":3728},{"vlan":3729},{"vlan":3730},{"vlan":3731},{"vlan":3732},{"vlan":3733},{"vlan":3734},{"vlan":3735},{"vlan":3736},{"vlan":3737},{"vlan":3738},{"vlan":3739},{"vlan":3740},{"vlan":3741},{"vlan":3742},{"vlan":3743},{"vlan":3744},{"vlan":3745},{"vlan":3746},{"vlan":3747},{"vlan":3748},{"vlan":3749},{"vlan":3750},{"vlan":3751},{"vlan":3752},{"vlan":3753},{"vlan":3754},{"vlan":3755},{"vlan":3756},{"vlan":3757},{"vlan":3758},{"vlan":3759},{"vlan":3760},{"vlan":3761},{"vlan":3762},{"vlan":3763},{"vlan":3764},{"vlan":3765},{"vlan":3766},{"vlan":3767},{"vlan":3768},{"vlan":3769},{"vlan":3770},{"vlan":3771},{"vlan":3772},{"vlan":3773},{"vlan":3774},{"vlan":3775},{"vlan":3776},{"vlan":3777},{"vlan":3778},{"vlan":3779},{"vlan":3780},{"vlan":3781},{"vlan":3782},{"vlan":3783},{"vlan":3784},{"vlan":3785},{"vlan":3786},{"vlan":3787},{"vlan":3788},{"vlan":3789},{"vlan":3790},{"vlan":3791},{"vlan":3792},{"vlan":3793},{"vlan":3794},{"vlan":3795},{"vlan":3796},{"vlan":3797},{"vlan":3798},{"vlan":3799},{"vlan":3800},{"vlan":3801},{"vlan":3802},{"vlan":3803},{"vlan":3804},{"vlan":3805},{"vlan":3806},{"vlan":3807},{"vlan":3808},{"vlan":3809},{"vlan":3810},{"vlan":3811},{"vlan":3812},{"vlan":3813},{"vlan":3814},{"vlan":3815},{"vlan":3816},{"vlan":3817},{"vlan":3818},{"vlan":3819},{"vlan":3820},{"vlan":3821},{"vlan":3822},{"vlan":3823},{"vlan":3824},{"vlan":3825},{"vlan":3826},{"vlan":3827},{"vlan":3828},{"vlan":3829},{"vlan":3830},{"vlan":3831},{"vlan":3832},{"vlan":3833},{"vlan":3834},{"vlan":3835},{"vlan":3836},{"vlan":3837},{"vlan":3838},{"vlan":3839},{"vlan":3840},{"vlan":3841},{"vlan":3842},{"vlan":3843},{"vlan":3844},{"vlan":3845},{"vlan":3846},{"vlan":3847},{"vlan":3848},{"vlan":3849},{"vlan":3850},{"vlan":3851},{"vlan":3852},{"vlan":3853},{"vlan":3854},{"vlan":3855},{"vlan":3856},{"vlan":3857},{"vlan":3858},{"vlan":3859},{"vlan":3860},{"vlan":3861},{"vlan":3862},{"vlan":3863},{"vlan":3864},{"vlan":3865},{"vlan":3866},{"vlan":3867},{"vlan":3868},{"vlan":3869},{"vlan":3870},{"vlan":3871},{"vlan":3872},{"vlan":3873},{"vlan":3874},{"vlan":3875},{"vlan":3876},{"vlan":3877},{"vlan":3878},{"vlan":3879},{"vlan":3880},{"vlan":3881},{"vlan":3882},{"vlan":3883},{"vlan":3884},{"vlan":3885},{"vlan":3886},{"vlan":3887},{"vlan":3888},{"vlan":3889},{"vlan":3890},{"vlan":3891},{"vlan":3892},{"vlan":3893},{"vlan":3894},{"vlan":3895},{"vlan":3896},{"vlan":3897},{"vlan":3898},{"vlan":3899},{"vlan":3900},{"vlan":3901},{"vlan":3902},{"vlan":3903},{"vlan":3904},{"vlan":3905},{"vlan":3906},{"vlan":3907},{"vlan":3908},{"vlan":3909},{"vlan":3910},{"vlan":3911},{"vlan":3912},{"vlan":3913},{"vlan":3914},{"vlan":3915},{"vlan":3916},{"vlan":3917},{"vlan":3918},{"vlan":3919},{"vlan":3920},{"vlan":3921},{"vlan":3922},{"vlan":3923},{"vlan":3924},{"vlan":3925},{"vlan":3926},{"vlan":3927},{"vlan":3928},{"vlan":3929},{"vlan":3930},{"vlan":3931},{"vlan":3932},{"vlan":3933},{"vlan":3934},{"vlan":3935},{"vlan":3936},{"vlan":3937},{"vlan":3938},{"vlan":3939},{"vlan":3940},{"vlan":3941},{"vlan":3942},{"vlan":3943},{"vlan":3944},{"vlan":3945},{"vlan":3946},{"vlan":3947},{"vlan":3948},{"vlan":3949},{"vlan":3950},{"vlan":3951},{"vlan":3952},{"vlan":3953},{"vlan":3954},{"vlan":3955},{"vlan":3956},{"vlan":3957},{"vlan":3958},{"vlan":3959},{"vlan":3960},{"vlan":3961},{"vlan":3962},{"vlan":3963},{"vlan":3964},{"vlan":3965},{"vlan":3966},{"vlan":3967},{"vlan":3968},{"vlan":3969},{"vlan":3970},{"vlan":3971},{"vlan":3972},{"vlan":3973},{"vlan":3974},{"vlan":3975},{"vlan":3976},{"vlan":3977},{"vlan":3978},{"vlan":3979},{"vlan":3980},{"vlan":3981},{"vlan":3982},{"vlan":3983},{"vlan":3984},{"vlan":3985},{"vlan":3986},{"vlan":3987},{"vlan":3988},{"vlan":3989},{"vlan":3990},{"vlan":3991},{"vlan":3992},{"vlan":3993},{"vlan":3994},{"vlan":3995},{"vlan":3996},{"vlan":3997},{"vlan":3998},{"vlan":3999},{"vlan":4000},{"vlan":4001},{"vlan":4002},{"vlan":4003},{"vlan":4004},{"vlan":4005},{"vlan":4006},{"vlan":4007},{"vlan":4008},{"vlan":4009},{"vlan":4010},{"vlan":4011},{"vlan":4012},{"vlan":4013},{"vlan":4014},{"vlan":4015},{"vlan":4016},{"vlan":4017},{"vlan":4018},{"vlan":4019},{"vlan":4020},{"vlan":4021},{"vlan":4022},{"vlan":4023},{"vlan":4024},{"vlan":4025},{"vlan":4026},{"vlan":4027},{"vlan":4028},{"vlan":4029},{"vlan":4030},{"vlan":4031},{"vlan":4032},{"vlan":4033},{"vlan":4034},{"vlan":4035},{"vlan":4036},{"vlan":4037},{"vlan":4038},{"vlan":4039},{"vlan":4040},{"vlan":4041},{"vlan":4042},{"vlan":4043},{"vlan":4044},{"vlan":4045},{"vlan":4046},{"vlan":4047},{"vlan":4048},{"vlan":4049},{"vlan":4050},{"vlan":4051},{"vlan":4052},{"vlan":4053},{"vlan":4054},{"vlan":4055},{"vlan":4056},{"vlan":4057},{"vlan":4058},{"vlan":4059},{"vlan":4060},{"vlan":4061},{"vlan":4062},{"vlan":4063},{"vlan":4064},{"vlan":4065},{"vlan":4066},{"vlan":4067},{"vlan":4068},{"vlan":4069},{"vlan":4070},{"vlan":4071},{"vlan":4072},{"vlan":4073},{"vlan":4074},{"vlan":4075},{"vlan":4076},{"vlan":4077},{"vlan":4078},{"vlan":4079},{"vlan":4080},{"vlan":4081},{"vlan":4082},{"vlan":4083},{"vlan":4084},{"vlan":4085},{"vlan":4086},{"vlan":4087},{"vlan":4088},{"vlan":4089},{"vlan":4090},{"vlan":4091},{"vlan":4092},{"vlan":4093},{"vlan":4094}]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_can_set_max_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=281, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=281, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=12] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:19:33 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=281, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=281, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:19:33 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=281, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=281, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=281, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":183,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=281, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=281, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=281, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_configuration_checks.py::test_vlan_can_not_add_interface_to_vlan_wo_bridge | 0.70 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_can_not_add_interface_to_vlan_wo_bridge">Starting testcase:test_vlan_can_not_add_interface_to_vlan_wo_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-15778' coro=<test_vlan_can_not_add_interface_to_vlan_wo_bridge() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py:70> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=281, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=282] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=282] Local address: 172.17.0.4, port 48992 INFO asyncssh:logging.py:92 [conn=282] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=282] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=282] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=282, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:20:33 UTC 2087 INFO asyncssh:logging.py:92 [conn=282, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=1] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=282, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=2] Command: bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=282, chan=2] Received exit status 255 INFO asyncssh:logging.py:92 [conn=282, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=2] Channel closed DEBUG infra1:Logger.py:156 RTNETLINK answers: Operation not supported INFO asyncssh:logging.py:92 [conn=282, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=282, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=4] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=282, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=282, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=282, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=282, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=282, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=282, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=8] Command: bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=282, chan=8] Received exit status 255 INFO asyncssh:logging.py:92 [conn=282, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=8] Channel closed DEBUG infra1:Logger.py:156 RTNETLINK answers: Operation not supported -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_can_not_add_interface_to_vlan_wo_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=282, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=282, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=10] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:20:33 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=282, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=282, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=12] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:20:33 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=282, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=282, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=282, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":184,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"36:97:f3:f7:75:15","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=282, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=282, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=282, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=16] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[broadcast] | 205.47 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[broadcast]">Starting testcase:test_vlan_default_configuration_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-15804' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=282, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=283] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=283] Local address: 172.17.0.4, port 49008 INFO asyncssh:logging.py:92 [conn=283] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=283] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=283] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=283, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:20:34 UTC 2087 INFO asyncssh:logging.py:92 [conn=283, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=283, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=283, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=283, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=283, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=283, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=283, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=283, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=283, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca1ec20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 236 Rx 236 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 236 Rx 236 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 236 Rx 236 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 236 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 236 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 236 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 236 Rx 236 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 236 Rx 236 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 236 Rx 236 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=283, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=283, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:23:58 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=283, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=283, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=10] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:23:59 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=283, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=283, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=283, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":185,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=283, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=283, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=283, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=14] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[multicast] | 206.73 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[multicast]">Starting testcase:test_vlan_default_configuration_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-15828' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=283, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=284] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=284] Local address: 172.17.0.4, port 34342 INFO asyncssh:logging.py:92 [conn=284] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=284] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=284] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=284, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:23:59 UTC 2087 INFO asyncssh:logging.py:92 [conn=284, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=284, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=284, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=284, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=284, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=284, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=284, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca3c430>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 119 Rx 119 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 118 Rx 118 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 118 Rx 118 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 119 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 118 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 118 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 119 Rx 119 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 118 Rx 118 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 118 Rx 118 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=284, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=284, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:27:25 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=284, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=284, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=10] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:27:25 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=284, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=284, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=284, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":186,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=284, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=284, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=284, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=14] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[unicast] | 197.37 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[unicast]">Starting testcase:test_vlan_default_configuration_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-15852' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=284, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=285] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=285] Local address: 172.17.0.4, port 40660 INFO asyncssh:logging.py:92 [conn=285] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=285] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=285] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=285, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:27:26 UTC 2087 INFO asyncssh:logging.py:92 [conn=285, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=285, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=285, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=285, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=285, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=285, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=285, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> X INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca3e890>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 1 SIP-DIP N/A Tx 258 Rx 258 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 2 SIP-DIP N/A Tx 258 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> X SIP-DIP N/A Tx 258 Rx 258 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 -> 10.36.118.199:2:1 SIP-DIP N/A Tx 258 Rx 258 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=285, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=285, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:30:39 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=285, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=285, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=10] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:30:43 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=285, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=285, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=285, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":187,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=285, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=285, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=285, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=14] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[unknown_unicast] | 207.59 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[unknown_unicast]">Starting testcase:test_vlan_default_configuration_with_[unknown_unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-15876' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=285, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=286] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=286] Local address: 172.17.0.4, port 36962 INFO asyncssh:logging.py:92 [conn=286] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=286] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=286] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=286, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:30:43 UTC 2087 INFO asyncssh:logging.py:92 [conn=286, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=286, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=286, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=286, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=286, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=286, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=286, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=286, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=286, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca1d5d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 218 Rx 218 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 218 Rx 218 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 217 Rx 217 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 218 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 218 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 217 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 218 Rx 218 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 218 Rx 218 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 217 Rx 217 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[unknown_unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=286, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=286, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=8] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:34:10 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=286, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=286, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=10] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:34:10 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=286, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=286, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=286, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":188,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=286, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=286, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=286, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=14] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_basic_functionality | 190.76 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_basic_functionality">Starting testcase:test_vlan_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-15900' coro=<test_vlan_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:192> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=286, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=287] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=287] Local address: 172.17.0.4, port 34680 INFO asyncssh:logging.py:92 [conn=287] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=287] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=287] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=287, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:34:11 UTC 2087 INFO asyncssh:logging.py:92 [conn=287, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=287, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=287, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=287, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=287, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=287, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=287, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=287, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=8] Command: bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=287, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=287, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=10] Command: bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=287, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=287, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=12] Command: bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=287, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 2 untagged INFO asyncssh:logging.py:92 [conn=287, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=14] Command: bridge vlan add dev swp36 vid 2 untagged INFO asyncssh:logging.py:92 [conn=287, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca1c5b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 213 Rx 213 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 213 Rx 213 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 213 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=287, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=287, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=16] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:37:21 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=287, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=287, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=18] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:37:21 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=287, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=287, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=287, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":189,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=287, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=287, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=287, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_changing_default_pvid | 209.50 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_changing_default_pvid">Starting testcase:test_vlan_changing_default_pvid from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-15932' coro=<test_vlan_changing_default_pvid() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:269> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=287, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=288] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=288] Local address: 172.17.0.4, port 38762 INFO asyncssh:logging.py:92 [conn=288] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=288] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=288] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=288, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:37:22 UTC 2087 INFO asyncssh:logging.py:92 [conn=288, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 2 INFO asyncssh:logging.py:92 [conn=288, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 2 INFO asyncssh:logging.py:92 [conn=288, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=288, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=288, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=288, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=288, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=288, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=288, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=288, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=288, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=8] Command: bridge vlan add dev swp33 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=288, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=288, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=288, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=10] Command: bridge vlan add dev swp34 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=288, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=288, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=288, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=12] Command: bridge vlan add dev swp35 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=288, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=288, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=288, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=14] Command: bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=288, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb0abc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 165 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 165 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 164 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 165 Rx 165 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 165 Rx 165 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 165 Rx 165 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 165 Rx 165 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 164 Rx 164 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_changing_default_pvid from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=288, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=288, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=16] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:40:50 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=288, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=288, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=18] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:40:51 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=288, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=288, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=288, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":190,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=288, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=288, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=288, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_increment_mac.py::test_vlan_with_increment_macs | 428.34 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_with_increment_macs">Starting testcase:test_vlan_with_increment_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-15964' coro=<test_vlan_with_increment_macs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=288, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=289] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=289] Local address: 172.17.0.4, port 52312 INFO asyncssh:logging.py:92 [conn=289] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=289] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=289] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=289, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:40:51 UTC 2087 INFO asyncssh:logging.py:92 [conn=289, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=289, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=289, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=2] Channel closed DEBUG infra1:Logger.py:156 arm64-accton-as4224-52p-r0 INFO asyncssh:logging.py:92 [conn=289, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=289, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=289, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=289, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=289, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=289, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=289, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=289, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=289, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=289, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge ageing_time 3000 INFO asyncssh:logging.py:92 [conn=289, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=10] Command: ip link set dev br0 type bridge ageing_time 3000 INFO asyncssh:logging.py:92 [conn=289, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=289, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 5 pvid && bridge vlan add dev swp33 vid 33 && bridge vlan add dev swp33 vid 20 INFO asyncssh:logging.py:92 [conn=289, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=12] Command: bridge vlan add dev swp33 vid 5 pvid && bridge vlan add dev swp33 vid 33 && bridge vlan add dev swp33 vid 20 INFO asyncssh:logging.py:92 [conn=289, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=289, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 5 pvid && bridge vlan add dev swp34 vid 33 && bridge vlan add dev swp34 vid 20 INFO asyncssh:logging.py:92 [conn=289, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=14] Command: bridge vlan add dev swp34 vid 5 pvid && bridge vlan add dev swp34 vid 33 && bridge vlan add dev swp34 vid 20 INFO asyncssh:logging.py:92 [conn=289, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=289, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 5 pvid && bridge vlan add dev swp35 vid 33 && bridge vlan add dev swp35 vid 20 INFO asyncssh:logging.py:92 [conn=289, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=16] Command: bridge vlan add dev swp35 vid 5 pvid && bridge vlan add dev swp35 vid 33 && bridge vlan add dev swp35 vid 20 INFO asyncssh:logging.py:92 [conn=289, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=289, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 5 pvid && bridge vlan add dev swp36 vid 33 && bridge vlan add dev swp36 vid 20 INFO asyncssh:logging.py:92 [conn=289, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=18] Command: bridge vlan add dev swp36 vid 5 pvid && bridge vlan add dev swp36 vid 33 && bridge vlan add dev swp36 vid 20 INFO asyncssh:logging.py:92 [conn=289, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb08dc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 5 SIP-DIP N/A Tx 166686 Rx 166686 Loss 0.000 INFO asyncssh:logging.py:92 [conn=289, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show dev swp33 | grep 'vlan 5' | wc -l INFO asyncssh:logging.py:92 [conn=289, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=20] Command: bridge fdb show dev swp33 | grep 'vlan 5' | wc -l INFO asyncssh:logging.py:92 [conn=289, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=20] Channel closed DEBUG infra1:Logger.py:156 31449 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb09690>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 33 SIP-DIP N/A Tx 165886 Rx 165886 Loss 0.000 INFO asyncssh:logging.py:92 [conn=289, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show dev swp33 | grep 'vlan 33' | wc -l INFO asyncssh:logging.py:92 [conn=289, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=22] Command: bridge fdb show dev swp33 | grep 'vlan 33' | wc -l INFO asyncssh:logging.py:92 [conn=289, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=22] Channel closed DEBUG infra1:Logger.py:156 31363 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca3d3f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 20 SIP-DIP N/A Tx 167053 Rx 167053 Loss 0.000 INFO asyncssh:logging.py:92 [conn=289, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show dev swp33 | grep 'vlan 20' | wc -l INFO asyncssh:logging.py:92 [conn=289, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=24] Command: bridge fdb show dev swp33 | grep 'vlan 20' | wc -l INFO asyncssh:logging.py:92 [conn=289, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=24] Channel closed DEBUG infra1:Logger.py:156 31462 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_with_increment_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py INFO asyncssh:logging.py:92 [conn=289, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=289, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=26] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:47:58 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=289, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=289, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=289, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":191,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=289, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=289, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=289, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=289, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=289, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=32] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:47:59 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/vlan/test_vlan_priority.py::test_vlan_priority_tag | 172.06 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_priority_tag">Starting testcase:test_vlan_priority_tag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16006' coro=<test_vlan_priority_tag() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=289, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=290] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=290] Local address: 172.17.0.4, port 51814 INFO asyncssh:logging.py:92 [conn=290] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=290] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=290] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=290, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:48:00 UTC 2087 INFO asyncssh:logging.py:92 [conn=290, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=290, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=290, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=290, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=290, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=290, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=290, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=290, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=290, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=290, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 5 pvid INFO asyncssh:logging.py:92 [conn=290, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=8] Command: bridge vlan add dev swp33 vid 5 pvid INFO asyncssh:logging.py:92 [conn=290, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=290, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 5 pvid INFO asyncssh:logging.py:92 [conn=290, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=10] Command: bridge vlan add dev swp34 vid 5 pvid INFO asyncssh:logging.py:92 [conn=290, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN priority INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb0a170>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN priority SIP-DIP N/A Tx 2470173 Rx 2470173 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item Traffic with VLAN priority Tx 2470173 Rx 2470173 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking 1: Ethernet:Outer VLAN ID (4 bits) at offset 124 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking 2: Ethernet:Outer VLAN Priority (3 bits) at offset 112 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Vlan Id: 5, Vlan Priority: 6 | Rx 2470173 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_priority_tag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=290, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=290, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=12] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:50:51 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=290, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=290, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=14] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:50:51 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=290, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=290, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=290, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":192,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=290, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=290, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=290, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=18] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_switching_modes.py::test_vlan_switching_vlan_modes_via_cli | 405.19 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_switching_vlan_modes_via_cli">Starting testcase:test_vlan_switching_vlan_modes_via_cli from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16034' coro=<test_vlan_switching_vlan_modes_via_cli() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py:56> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=290, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=291] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=291] Local address: 172.17.0.4, port 35214 INFO asyncssh:logging.py:92 [conn=291] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=291] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=291] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=291, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:50:52 UTC 2087 INFO asyncssh:logging.py:92 [conn=291, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=291, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=291, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=291, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=291, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=291, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=291, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=291, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=291, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=291, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=291, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=291, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=291, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=291, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=291, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb92ce0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 213 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 213 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 213 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 213 Rx 213 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 213 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 213 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 213 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 213 Rx 213 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 213 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 213 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 213 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 213 Rx 213 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 213 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 213 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 213 Rx 213 Loss 0.000 INFO asyncssh:logging.py:92 [conn=291, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 4 INFO asyncssh:logging.py:92 [conn=291, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=16] Command: bridge vlan delete dev swp33 vid 4 INFO asyncssh:logging.py:92 [conn=291, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=291, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=18] Command: bridge vlan delete dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=291, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=291, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=20] Command: bridge vlan delete dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=291, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp36 vid 4 INFO asyncssh:logging.py:92 [conn=291, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=22] Command: bridge vlan delete dev swp36 vid 4 INFO asyncssh:logging.py:92 [conn=291, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 5 pvid untagged && bridge vlan add dev swp33 vid 101 && bridge vlan add dev swp33 vid 4094 untagged INFO asyncssh:logging.py:92 [conn=291, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=24] Command: bridge vlan add dev swp33 vid 5 pvid untagged && bridge vlan add dev swp33 vid 101 && bridge vlan add dev swp33 vid 4094 untagged INFO asyncssh:logging.py:92 [conn=291, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=25] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 5 pvid untagged INFO asyncssh:logging.py:92 [conn=291, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=26] Command: bridge vlan add dev swp34 vid 5 pvid untagged INFO asyncssh:logging.py:92 [conn=291, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=27] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 101 pvid untagged INFO asyncssh:logging.py:92 [conn=291, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=28] Command: bridge vlan add dev swp35 vid 101 pvid untagged INFO asyncssh:logging.py:92 [conn=291, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=29] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=291, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=30] Command: bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=291, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 101 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 500 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 4094 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca3f3d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 223 Rx 223 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 223 Rx 223 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 223 Rx 223 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 223 Rx 223 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 223 Rx 223 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration untagged traffic SIP-DIP N/A Tx 223 Rx 223 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration untagged traffic SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration untagged traffic SIP-DIP N/A Tx 223 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_switching_vlan_modes_via_cli from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=291, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=291, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=32] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:57:36 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=291, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=291, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=34] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:57:36 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=291, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=291, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=291, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":193,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=291, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=291, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=38] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=291, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=38] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[broadcast] | 235.16 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[broadcast]">Starting testcase:test_vlan_tagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16082' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=291, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=292] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=292] Local address: 172.17.0.4, port 43276 INFO asyncssh:logging.py:92 [conn=292] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=292] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=292] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=292, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 03:57:37 UTC 2087 INFO asyncssh:logging.py:92 [conn=292, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=292, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=292, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=292, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=292, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=292, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=292, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=292, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=292, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=292, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=292, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=8] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=292, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=292, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=292, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=10] Command: bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=292, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=292, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=292, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=12] Command: bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=292, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=292, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=292, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=14] Command: bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=292, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb90130>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=292, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=292, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=16] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:01:31 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=292, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=292, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=18] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:01:31 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=292, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=292, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=292, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":194,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=292, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=292, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=292, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[multicast] | 236.52 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[multicast]">Starting testcase:test_vlan_tagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16114' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=292, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=293] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=293] Local address: 172.17.0.4, port 39398 INFO asyncssh:logging.py:92 [conn=293] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=293] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=293] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=293, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:01:32 UTC 2087 INFO asyncssh:logging.py:92 [conn=293, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=293, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=293, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=293, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=293, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=293, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=293, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=293, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=293, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=293, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=293, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=8] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=293, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=293, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=293, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=10] Command: bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=293, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=293, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=293, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=12] Command: bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=293, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=293, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=293, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=14] Command: bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=293, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca3ffd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=293, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=293, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=16] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:05:27 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=293, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=293, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=18] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:05:28 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=293, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=293, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=293, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":195,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=293, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=293, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=293, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[unicast] | 302.37 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[unicast]">Starting testcase:test_vlan_tagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16146' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=293, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=294] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=294] Local address: 172.17.0.4, port 48534 INFO asyncssh:logging.py:92 [conn=294] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=294] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=294] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=294, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:05:28 UTC 2087 INFO asyncssh:logging.py:92 [conn=294, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=294, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=294, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=294, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=294, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=294, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=294, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=294, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=294, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=294, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=294, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=8] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=294, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=294, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=294, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=10] Command: bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=294, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=294, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=294, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=12] Command: bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=294, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=294, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=294, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=14] Command: bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=294, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb093c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 1 learning SIP-DIP N/A Tx 311 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 1 learning SIP-DIP N/A Tx 311 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 1 learning SIP-DIP N/A Tx 311 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 22 learning SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 22 learning SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 22 learning SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 23 learning SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 23 learning SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 23 learning SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 24 learning SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 24 learning SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 24 learning SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=294, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=294, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=16] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:10:28 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=294, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=294, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=18] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:10:30 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=294, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=294, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=294, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":196,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=294, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=294, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=294, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_size.py::test_vlan_tagged_packet_size | 190.38 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_packet_size">Starting testcase:test_vlan_tagged_packet_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16178' coro=<test_vlan_tagged_packet_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py:42> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=294, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=295] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=295] Local address: 172.17.0.4, port 43352 INFO asyncssh:logging.py:92 [conn=295] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=295] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=295] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=295, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:10:31 UTC 2087 INFO asyncssh:logging.py:92 [conn=295, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 1 INFO asyncssh:logging.py:92 [conn=295, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 1 INFO asyncssh:logging.py:92 [conn=295, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=295, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=295, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=295, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=295, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=295, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=8] Command: bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=295, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=295, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=10] Command: bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=295, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=295, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=12] Command: bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=295, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 1 pvid INFO asyncssh:logging.py:92 [conn=295, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=14] Command: bridge vlan add dev swp36 vid 1 pvid INFO asyncssh:logging.py:92 [conn=295, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb0b370>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 168 Rx 168 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 168 Rx 168 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 168 Rx 168 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_packet_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=295, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=295, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=16] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:13:40 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=295, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=295, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=18] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:13:41 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=295, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=295, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=295, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":197,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=295, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=295, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=295, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[broadcast] | 188.36 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[broadcast]">Starting testcase:test_vlan_untagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16210' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=295, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=296] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=296] Local address: 172.17.0.4, port 36574 INFO asyncssh:logging.py:92 [conn=296] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=296] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=296] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=296, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:13:41 UTC 2087 INFO asyncssh:logging.py:92 [conn=296, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=296, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=296, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=296, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=296, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=296, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=296, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=296, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=296, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=296, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=296, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=8] Command: bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=296, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=296, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=296, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=10] Command: bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=296, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=296, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=296, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=12] Command: bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=296, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=296, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=296, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=14] Command: bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=296, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged broadcast traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb92a10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged broadcast traffic SIP-DIP N/A Tx 240 Rx 240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged broadcast traffic SIP-DIP N/A Tx 240 Rx 240 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged broadcast traffic SIP-DIP N/A Tx 240 Rx 240 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=296, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=296, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=16] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:16:49 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=296, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=296, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=18] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:16:49 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=296, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=296, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=296, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":198,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=296, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=296, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=296, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[multicast] | 191.06 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[multicast]">Starting testcase:test_vlan_untagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16242' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=296, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=297] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=297] Local address: 172.17.0.4, port 59874 INFO asyncssh:logging.py:92 [conn=297] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=297] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=297] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=297, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:16:50 UTC 2087 INFO asyncssh:logging.py:92 [conn=297, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=297, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=297, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=297, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=297, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=297, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=297, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=297, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=297, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=297, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=297, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=8] Command: bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=297, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=297, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=297, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=10] Command: bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=297, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=297, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=297, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=12] Command: bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=297, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=297, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=297, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=14] Command: bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=297, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged multicast traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49aca1d870>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged multicast traffic SIP-DIP N/A Tx 119 Rx 119 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged multicast traffic SIP-DIP N/A Tx 119 Rx 119 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged multicast traffic SIP-DIP N/A Tx 119 Rx 119 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=297, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=297, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=16] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:20:00 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=297, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=297, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=18] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:20:00 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=297, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=297, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=297, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":199,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=297, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=297, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=297, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[unicast] | 204.61 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[unicast]">Starting testcase:test_vlan_untagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16274' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=297, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=298] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=298] Local address: 172.17.0.4, port 46952 INFO asyncssh:logging.py:92 [conn=298] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=298] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=298] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=298, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=0] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:20:01 UTC 2087 INFO asyncssh:logging.py:92 [conn=298, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=298, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=298, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=298, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=298, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=298, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=298, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=298, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=298, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=298, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=298, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=8] Command: bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=298, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=298, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=298, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=10] Command: bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=298, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=298, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=298, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=12] Command: bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=298, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=298, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=298, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=14] Command: bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=298, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 65 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged unicast stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Learning stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f49acb93670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged unicast stream SIP-DIP N/A Tx 289 Rx 289 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI Learning stream SIP-DIP N/A Tx 289 Rx 289 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=298, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=298, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=16] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:21 UTC 2087 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=298, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=298, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=18] Channel closed DEBUG infra1:Logger.py:156 Fri Jan 17 04:23:25 UTC 2087 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=298, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=298, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=298, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":200,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=298, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=298, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=298, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=22] Channel closed DEBUG infra1:Logger.py:156 | |||